* Add -dict option to PC-Pico, which allows users to choose a dictionary
[alpine.git] / pith / pine.hlp
blob977428134abc9affbc194cfe56ae42cb65c841ae
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-2017 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 223 2017-09-30 11:55:59
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-2017 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> NTLM authentication support with the ntlm library, in Unix systems.
184 Based on code provided by Maciej W. Rozycki.
186 <LI> Add -dict option to PC-Pico, which allows users to choose a dictionary
187 when spelling. Sample usage: -dict "en_US, de_DE, fr_FR".
188 </UL>
191 Bugs that have been addressed include:
192 <UL>
193    <LI> Crash when attempting to bounce a message due to lack of space in
194         allocated space for key menu array. Reported by David Sewell.
196    <LI> Crash when a CA certificate failed to load, and user attempted to
197         view certificate information of other certificate authorities.
199    <LI> Deactivate some color code from Pico (as standalone editor in the
200         windows version) until I find a way to activate it again. This is 
201         not critical and it is not something that PC-Pico must have (some 
202         of it already exists in other ways, like color support, what does 
203         not exist is the more complex code that Unix-Pico has with color 
204         codes for specific colors.)
206    <LI> Update build.bat file to add /DWINVER=0x0501 so that Alpine can 
207         build when using Visual Studio 2017. Fix contributed by 
208         Ulf-Dietrich Braunmann.
209 </UL>
212 Version 2.21 addresses bugs found in previous releases and has several 
213 additions as well.
216 Additions include:
217 <UL>
218   <LI> PC-Alpine: New configuration option "Aspell Dictionaries" allows a
219        user to choose the dictionary used to spell check, in case the user 
220        communicates in more than one language. Examples of values for the 
221        variable are "en_US" or "de_DE", etc. Only the first 10 
222        dictionaries are offered.
224   <LI> Unix-Alpine: Connect securely to a LDAP server on a secure port. 
225        Based on a contribution by Wang Kang.
227   <LI> Colors configured in Alpine are inherited in the composer.
229   <LI> When Alpine is compiled with password file and SMIME support 
230        the password file is encrypted using a private key/public 
231        certificate pair. If one such pair cannot be found, one will be 
232        created. <A HREF="h_password_file_support">Learn more</A>.
234   <LI> Alpine builds with any version of OpenSSL greater than or equal
235        to 1.0.0c. This includes version 1.1.0. Alpine also builds with
236        LibreSSL.
238   <LI> New SHORTSUBJECT, SHORTSUBJKEY and SHORTSUBJKEYINIT token for index 
239        format, which removes text in the SUBJECT between &quot;[&quot; and 
240        &quot;]&quot;.
242   <LI> New SMARTTIME24 token for index screen. It is close to SMARTDATETIME
243        but it differns in that it gives the time in which the message was
244        sent for messages that are less than a week old. it uses a 24 hour
245        format.
247   <LI> Alpine will include attachments when forwarding some 
248        multipart/alternative messages for which it did not use to include 
249        attachments.
251   <LI> New configuration option 
252        <a href="h_config_alt_reply_menu"><!--#echo var="FEAT_alternate-reply-menu"--></a>
253        which adds more ways to control features and variables when you
254        start to reply to a message.
256   <LI> Added support for RFC 2971 - IMAP ID extension.
258   <LI> Add configuration <A href="h_config_ignore_size"><!--#echo var="FEAT_ignore-size-changes"--></A>
259        that allows users to ignore errors in the computation of the size
260        of a message from defective servers.
262   <LI> SMIME: Upgrade the default signature digest from sha1 to sha-256, since 
263        clients such as Thunderbird do not validate signatures that use sha1 digest.
265   <LI> Add the configuration variable "default-directories", which is called
266        <A href="h_config_history"><!--#echo var="VAR_default-directories"--></A>
267        variable saves a list of directories that are readily accessible 
268        for save or export of attachments. This makes it easier to save 
269        attachments in directories that are hard to navigate to, or that 
270        are accessed frequently.
272   <LI> When a filename is attached and its name is encoded, the save 
273        attachment command will offer to save the file in the encoded form. 
274        This might work for some users, but the save command will have a 
275        subcommand ^N to decode the file name and save the file with the 
276        decoded name.
278   <LI> The TAB key allows autocomplete in the Fcc field in the composer headers,
279        as well as autocompletes automatically when only one possibility exists 
280        for the ^J attach command.
282   <LI> Add support for the &quot;TYPE&quot; and &quot;VALUE&quot; attributes of
283        the html OL tag.
285   <LI> Ignore message from smtp server after a successful authentication
286        challenge.
288   <LI> When a message is saved in the Form Letter folder, add the ability
289        to save the role being used to compose such message so that settings
290        such as the SMTP server set in the role can be used when sending
291        such form message. Suggested and patched by Frank Doepper.
293   <LI> If SSLDIR is defined somehow, do not disable S/MIME if the
294        SSLCERTSDIR is not found.
296   <LI> When Alpine sends an attachment, it will set the boundary attribute
297        in lower case, as some SMTP servers, such as those of libero.it 
298        reject messages if the boundary attribute is in uppercase.
300   <LI> Add the ability to change the private key and certificates used
301        to encrypt a password file in the SMIME setup configuration screen.
302        <A HREF="h_config_smime_password_file_certificates">Learn more</A>
304   <LI> SMIME: The ctrl-E command that gives information on the certificate
305        is only available for messages that have a signed or encrypted 
306        part.
308   <LI> SMIME: If a message contains a RFC822 attachment that is
309        signed/decrypted add the ability to view its SMIME information.
311   <LI> SMIME: Certificate information in the S/MIME screen is available 
312        for certificates stored in a container.
314   <LI> SMIME: Offer the common name of the person, instead of the name of
315        file containing the certificate, as the name to be displayed in the 
316        certificate management screen for certificate authorities. 
317        Suggested by Matthias Rieber.
319   <LI> SMIME: Management of several alternate name (SAN) certificates is 
320        improved. When importing a SAN certificate, also import a certificate
321        for the filename, besides for the e-mail addresses in the
322        certificate. Suggested by Matthias Rieber.
324   <LI> SMIME: add full year when displaying information about a certificate
325        in the certificate management screen. Suggested by Matthias Rieber.
327   <LI> SMIME: sort certificates by some type of alphabetical order in the
328        displayed name.
330   <LI> SMIME: Alpine will ask users if they wish to save S/MIME 
331        certificates included in signatures, when the option "Validate 
332        Using Certificate Store Only" is enabled. If the user does not wish 
333        to save it, validation will fail.
335   <LI> HTML: Add support for decoding entities in hexadecimal notation.
336        Suggested by Tulip&aacute;nt Gergely.
338   <LI> The &quot;#&quot; command, when used as part of an aggregate
339        operation will allow users to select the role used in either 
340        replying, forwarding or replying to the group of selected messages, 
341        Suggested by Hisashi T Fujinaka.
343   <LI> If the charset of a message can not be determined, use the value set
344        in the <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A> for its value.
346   <LI> Resizing setup screen will redraw screen.
348   <LI> Unix Alpine only. Experimental: If Alpine/Pico finds a UCS4 code
349        in the width ambiguous zone, it will use other means to determine
350        the width, such as call wcwidth.
352   <LI> Pico: Code reorganization in the search command to make it easier to
353        add subcommands of the search command.
355   <LI> Pico: Search command can do a case sensitive match. Use the Ctrl-^
356        subcommand of the search command to bring this choice into view.
358   <LI> Pico: Add the ability to search for strings in the beginning or end
359        of a line. Use the Ctrl-^ subcommand of the search command to bring 
360        this choice into view.
362   <LI> For a multipart/alternative message, the Take Address command will 
363        work on the part that is being read.
365   <LI> When sending a message, allow for 512 characters of consecutive 
366        non-white space before folding the subject line.
368   <LI> Make sure titlebar (the line at the top of the screen) always 
369        contains the name of the folder/newsgroup that is open, if this 
370        fits in the title.
372   <LI> The feature <a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
373        will also scramble the name, version and operating system in the 
374        message-id header. Based on a contribution by Dennis Davis, which 
375        is itself based on a contribution by Mark Hills.
377   <LI> Change in logic in imap_set_password function to make Alpine ask if
378        a user wants to save a password before reading the password file.
380   <LI> When exporting all parts of a message, if two attachments have the same
381        name, do not overwrite a file more than once, but instead add a counter
382        number to the filename to make a new file that does not exist in the file
383        system.
385   <LI> Add the Control-R subcommand to the save command for attachments. 
386        This subcommand toggles if the saving will be done in binary mode 
387        for text attachments. When a user saves an attachment using binary
388        mode it will be saved as it was sent, otherwise the attachment will
389        be transformed to UTF-8 for further transformation through internal
390        and user defined filters for saving.
392   <LI> Add command line argument -smimedir, which allows to specify
393        the default path for a directory that contains the public, private, 
394        and ca directories. This is useful in case a user has a backup of 
395        old certificates that cannot be installed in the ~/.alpine-smime 
396        dir.
398   <LI> Reimplementation of the code that allows the .pinerc file to be a
399        symbolic link by Kyle George from tcpsoft.com to use realpath.
401   <LI> When saving an attachment, the "^T" command leads to a screen where the
402        "A" command can be used to add a file. A directory can be added by
403        pressing "^X" after the "A" command. Added after a suggestion by
404        Stefan Goessling.
406   <LI> When saving an attachment, the ^Y and ^V commands allow a user to 
407        scroll through the history of directories used to save attachments, 
408        while preserving the given name of the file. Suggested by Peter 
409        Koellner.
411   <LI> SMIME: Turn off automatic signing and encrypting of a message when
412        bouncing. Suggested after a discussion with Matthias Rieber.
414   <LI> When messages are selected, warn the user if a message that is not
415        selected will be bounced, or if not all selected messages will be 
416        bounced. Suggested by Ulf-Dietrich Braumann.
418   <LI> The bounce command adds a subcommand to choose a role.
420   <LI> When selecting messages by number, the &quot;.&quot; character can 
421        be used to specify the message on which the cursor is on.
423   <LI> When Alpine opens an attachment, it sometimes changes the extension 
424        of the file that is being opened and replaces it by another for the 
425        same mime type. If Alpine finds that the extension of the file 
426        corresponds with the mime type, according to the mime-types file, 
427        then it will keep it, and no substitution will be made.
429   <LI> Set no restrictions on the length of encoded subjects, but encode
430        words in length of no more than 75 characters.
431 </UL>
435 Bugs that have been addressed include:
436 <UL>
437   <LI> SMIME: Crash when a certificate has an invalid date of validity. Also
438        Alpine will use the function ASN1_TIME_print to determine the date 
439        of validity. Reported by Ben Stienstra.
441   <LI> SMIME: Crash when attempting to unlock the password file and an
442        incorrect password is entered.
444   <LI> SMIME: Crash when checking the signature of a message that contains
445        a RFC822 attached message. Reported by Holger Trapp and Bj&ouml;rn 
446        Krellner.
448   <LI> SMIME: Cancelling entering password to unlock key will not reprompt.
450   <LI> SMIME: fix a bug that did not allow users to transfer certificates to
451        remote containers. Reported by Matthias Rieber.
453   <LI> SMIME: certificates included in messages were not being transferred
454        to a remote container.
456   <LI> SMIME: Crash if public certificates are located in an inaccessible
457        remote server and the private key is not available.
459   <LI> SMIME: Alpine does not remove temporary files created when adding a 
460        CA certificate to a container. Reported by Holger Trapp.
462   <LI> SMIME: When reading a local certificate, Alpine converts the name 
463        of the certificate to lowercase, which may make Alpine not be able 
464        to read such certificate. Reported by Dennis Davis.
466   <LI> SMIME: If the option "Remember S/MIME Passphrase" is disabled, then
467        entering a password to read an encrypted message will make Alpine 
468        forget the key and not ask the password to unlock it again in case 
469        it is necessary to unlock it again. Reported by Ulf-Dietrich 
470        Braumann.
472   <LI> Alpine would use freed memory while trying to compute the color
473        of the titlebar. This happened when trying to continue a postponed 
474        message.
476   <LI> Alpine failed to read an encrypted password file if too many
477        passwords were saved in the password file.
479   <LI> When selecting messages while in Threaded Index Screen, some 
480        messages other than top of threads could appear in the index, making
481        Alpine display messages &quot;out of the screen.&quot;
483   <LI> The index format would be chopped at the position of an unrecognized 
484        token, instead of skipping the token as intended.
486   <LI> Work in progress: Avoid calling non-safe functions when Alpine
487        receives a signal. See bug report 
488        <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825772">here.</A>
490   <LI> Crash when attempting to read a message after a bounce command. 
491        In order to produce a crash one needed to use the ^T subcommand and 
492        do a search in a LDAP directory. The crash is produced by changes 
493        to the text in the title bar. Reported by Heinrich Mislik in the 
494        Alpine-info list.
496   <LI> HTML messages that contain UTF-8 may wrap at the wrong position,
497        making Alpine not display the correct character at the position 
498        that wrapping is done. Reported by Wang Kang.
500   <LI> Pico: Searching for a string that is too long causes Pico to crash
501        in the next search.
503   <LI> Fix vulnerability in regex library. This only affects those who use
504        this library, such as the windows version of Alpine. See 
505        <A HREF="http://www.kb.cert.org/vuls/id/695940">http://www.kb.cert.org/vuls/id/695940</A>
506        for more details.
508   <LI> Alpine would not set include and lib paths for OpenSSL if this was
509        installed in /usr/local/ssl.
511   <LI> If the .pinerc file is a symbolic link, Alpine might not write its
512        contents when saving its configuration.
514   <LI> The _INIT_ token does not skip over non-alphanumeric characters in
515        the name. Reported by Andreas Fehr.
517   <LI> When opening an INBOX folder in a context different from the 
518        incoming folders collection, from the command line, Alpine would 
519        open the INBOX folder from the incoming folders collection.
521   <LI> Mismatch in size of UCS and CELL caused a corruption in the
522        content of a pointer, which made the speller in PC-Alpine get the 
523        content of a word incorrectly.
525   <LI> Skip testing openssl compatibility version when cross-compilation
526        is detected. Fix contributed by Antti Sepp&auml;l&auml;
528   <LI> Alpine fails to remove temporary files used during a display or sending
529        filter. Fix contributed by Phil Brooke.
531   <LI> When the index is in zoomed state, adding new messages to the 
532        selection would not show those messages if those messages are on 
533        top of the current message in the top of the screen. Reported by
534        Ulf-Dietrich Braumann. In addition, when the user scrolls through
535        the index, this scroll smoothly, without jumping pages. Reported
536        by Holger Trapp.
538   <LI> Crash when reviewing history of saving attachments.
540   <LI> Crash when canceling a goto command on a local collection that has
541        not been expanded and attempting to expand such collection.
543   <LI> Crash in Pico when forwarding messages that contain a direction mark
544        at the end of a line. Reported by James Mingo.
546   <LI> Solve compilation errors when Alpine is built with Visual Studio 2015.
547 </UL>
551 Version 2.20 addresses bugs found in previous releases and has several 
552 additions as well.
555 Additions include:
558 <UL>
559   <LI> Upgrade UW-IMAP to Panda IMAP from 
560        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
561   <LI> S/MIME: Add screen to manage certificates.
562   <LI> S/MIME: Signatures are validated using the user's certificates instead
563        of the ones included in the message. Behavior can be disabled by
564        disabling the option <A href="h_config_smime_use_cert_store">
565         <!--#echo var="FEAT_smime-use-storey-only"--></A>, which is enabled
566        by default.
567   <LI> S/MIME: sign messages using intermediate certificates when needed 
568        and possible.
569   <LI> S/MIME: validation of certificates for servers that modify signed 
570        content.
571   <LI> S/MIME: signed and encrypted messages will be signed first and 
572        encrypted second, so that they can be decoded by other clients.
573   <LI> S/MIME: add the sender certificate to the list of certificates in
574        encrypted messages to make it possible for the sender to decrypt
575        the message they sent.
576   <LI> S/MIME: When transferring certificates to a local container, create 
577        container with default names PublicContainer, PrivateContainer and 
578        CAContainer, as appropriate for these files, unless the user has 
579        provided some other names.
580   <LI> S/MIME: Forwarding a message will include the signed part as part
581        of the text and not as a multipart message, just as the reply
582        command does.
583   <LI> HTML: Style tag in body of html message causes Alpine to not write
584        its content until a new &lt;/style&gt;
585   <LI> HTML: &lt;BR&gt;, &lt;BR /&gt;, and &lt;BR/&gt; are considered
586        the same inline tag; the same is valid for the &lt;HR&gt; tag.
587   <LI> Add support to selective expunge through a subcommand of the 
588        select-apply commands. Read more in the <A 
589        HREF="h_index_cmd_expunge">help</A> for the expunge command.
590   <LI> Pico: New subcommand of the search command, allows to reverse the
591        direction of search.
592   <LI> Unix Alpine: If a password file is defined, and S/MIME is enabled, 
593        the key and certificate used to encrypt the password file are saved 
594        in the ~/.alpine-smime/.pwd directory, or in the directory specified
595        by the -pwdcertdir command line option. 
596        <A HREF="h_password_file_support">Learn more</A>.
597   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
598        server to use different ways to connect using ssl, for 
599        example {server.com/tls1} will attempt to connect to 
600        server.com at the ssl imap port (port 993) and establish a 
601        connection using TLSv1. These flags can be used in 
602        conjunction with the /ssl flag, the ssl flag is redundant. 
603        Conversely, however, the /ssl flag does not imply any of 
604        these flags; the /ssl flag means SSLv3 or, if not available, 
605        SSLv2 in the SSL port.
606   <LI> Alpine does not attempt to automatically reopen a collection 
607        that was not opened due to cancellation by the user. 
608        Instead, the user must try to open it explicitly.
609   <LI> Alpine searches for a certificate that matches an email address in
610        all addresses in a certificate (instead of just the first 
611        one) but when it tries to unlock the certificate, it asks 
612        for the password for the first email address in that 
613        certificate.
614   <LI> Style tag in body of html message causes Alpine to not write its content
615        until a new &lt;/style&gt;
616   <LI> Experimental: Write the content-type of a message in 
617        lowercase, as some non-compliant servers do not understand 
618        uppercase content-type, such as those of GMX.de.
619   <LI> Experimental: Do not send the RSET command before attempting
620        to send a message, as this causes a delay in some evily managed
621        servers.
622   <LI> Opening a folder updates recent count in maildrops (this 
623        already works for other types of folders)
624   <LI> Automatically redraw screen after opening an attachment 
625        instead of simply clearing it.
626   <LI> Pico: Justification works without need of a predefined quote 
627        string. This allows justification of blocks of text that are 
628        indented with spaces.
629   <LI> Decode the name of attachment names, so they can be written as part   
630        of the description of the part. 
631   <LI> Check bounds and tie strings off to improve security. Contributed 
632        by James Jerkins.
633   <LI> Replace tabs by spaces in From and Subject fields to control for
634        size in screen of these fields. Change only in index screen display.
635   <LI> Aggregate operations allows bouncing a list of messages using a role.
636        Suggested by Ulf-Dietrich Braumann.
637   <LI> Disable saving new passwords to the password file. Implemented
638        by Louis Raphael from dpslabs.com. <A HREF="h_config_disable_password_file_saving">Learn more.</A>
639   <LI> Makefile: Add $(LIBINTL) to the flags to link rpdump, rpload, 
640      alpined and alpineldap because MAC OSX 10.8 x86_64 needs it. Reported by
641      Charles M. Register.
642 </UL>
646 Bugs that have been addressed include:
647 <UL>
648   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
649        in personal names. Reported by Lev Gorenstein.
650   <LI> When writing the .pinerc file, lines were truncated if they were longer
651        than 10,000 characters. This could cause data corruption, so now lines
652        are allowed to be of any length.
653   <LI> In Unix Alpine (but not in MAC OSX) fix a problem that made Alpine 
654        remove attachments before they were open by a mailcap viewer. It 
655        requires that the user has an equivalent to a command such as "ps 
656        auxww" to list the list of processes, and check if there is any 
657        program using the attachment. The default is "/bin/ps auxww", but 
658        it can be changed at compile time with the option --with-ps-cmd. 
659        See the help of the variable 
660        <a href="h_config_psleep"><!--#echo var="VAR_mailcap-check-interval"--></a> 
661        for more information.
662   <LI> S/MIME: signed messages that contained an attachment would not validate.
663   <LI> S/MIME: signed and encrypted messages from Thunderbird would not 
664        validate. Thanks to Andreas Schamanek for testing, debugging and 
665        advising during the process of fixing this problem.
666   <LI> S/MIME: Forwarding messages with multipart content-type failed to be signed
667        with &quot;Error writing pipe&quot; message. Reported by Andreas Schamanek
668        and Stefan Mueller.
669   <LI> S/MIME: Certificates are lost when using a pinerc file outside of the 
670        home directory.
671   <LI> S/MIME: Accessing the S/MIME configuration screen would deinitialize
672        SMIME making it not possible to sign or encrypt messages.
673   <LI> S/MIME: Forwarding a signed message might make the body contain mime 
674        information that is not part of the body, and hence making the body
675        of the message seem wrong.
676   <LI> S/MIME Alpine would compute incorrectly the signature of a message 
677        that contains 8bit if the option "Enable 8bit ESMTP Negotiation" is 
678        enabled, the message contains 8bit characters and the smtp server 
679        supports 8bit sending.
680   <LI> When replying to several messages, subject will be decoded first,
681        and then stripped from re/fwd before they are compared to determine
682        the subject of the replied message.
683   <LI> Crash when tcp connection to NNTP server was lost after connection
684        had been established, but lost immediately afterwards.
685   <LI> Crash with message &quot;lock when already locked&quot;, when painting
686        an index was based on scores that needed information from a remote
687        addressbook in the same server as the folder opened. Reported by
688        Peter Koellner.
689   <LI> Crash in message/rfc822 attachments encoded in base64.
690   <LI> Postponed messages whose content-type is text/html, text/enriched and
691        text/richtext are sent with that content-type, even though, after
692        resuming composition, Alpine had changed its type to text/plain.
693   <LI> Alpine cannot handle correctly some characters in the Windows-1256 
694        character set, which might lead to a crash or a corruption in the 
695        screen. Work was done to contain the bug. A more complete fix will 
696        be done in a future release. Reported by Professor Robert Funnell.
697   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
698   <LI> WebAlpine: fail to build with debug disabled. Fix from Sam Hathaway.
699   <LI> Save command did not warn of existence of a message with a deleted 
700        attachment in an aggregate save, unless cursor was positioned on a message 
701        with a deleted attachment. Reported by Florian Herzig.
702   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
703        in an IMAP server.
704   <LI> DATE tokens were not internally transformed to UTF-8, which made their
705        values not appear complete in the screen. Reported by Werner Scheinast.
706   <LI> Fixes to configure script so that it will not require PAM for every system.
707   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
708        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
709        during the build. Fix by Ulf-Dietrich Braumann.
710   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
711        needs to use tcl_getstringresult() instead. Reported by 
712        Ulf-Dietrich Braumann.
713   <LI> Quoted string in URL Viewers configuration variable were not 
714        unquoted before passing to viewer.
715   <LI> Fix in configure script to detect location of tcl library; add
716        /usr/local in FreeBSD and fix a bug in configure script that used 
717        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
718        by Werner Scheinast.
719   <LI> Move SSL configurations from UW-IMAP to configure script, and
720        update OpenSSL configuration for Mac OS X.
721   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
722   <LI> When the download of an attachment is interrumpted, Alpine stills
723      caches what was downloaded, making the download incomplete for 
724      subsequent calls of Alpine attempting to open the attachment. In the 
725      future, Alpine will not cache any downloaded part of the attachment 
726      when it is interrupted.
727 </UL>
732 Version 2.11 addresses bugs found in previous releases and has a few 
733 additions as well.
736 Additions include:
739 <UL>
740    <LI> Alpine requires version 1.0.0c of Openssl to build.
741    <LI> Increase encryption of S/MIME encrypted messages.
742    <LI> Pico: Improvements in justification of paragraphs: lines that begin
743 with a quote string, followed by a space were considered individual paragraphs,
744 now they are considered part of a paragraph. Based on earlier joint work
745 with Jeff Franklin.
746    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
747    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
748 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
749    <LI> Added recognition of ws and wss URIs.
750    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
751  <A HREF="h_config_directory_color">directory names</A>,
752  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
753    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
754 used in the display of the INDEX SCREEN.
755    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
756 that adds the ability to preserve To: and Cc: fields when replying to a 
757 message, as specified by original sender.
758    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
759  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
760    <LI> Quota command includes subcommands for printing, forwarding, etc.
761 </UL>
764 Bugs that have been addressed include:
766 <UL>
767   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
768   <LI> Crash when resizing the screen in a configuration screen.
769   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
770   <LI> Do not use a shell to open a browser.
771   <LI> Configure script did not test for crypto or pam libraries.
772   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
773   <LI> Change Cygwin directory separator to &quot;/&quot;.
774   <LI> Alpine could set List- headers, contrary to RFC 2369.
775 </UL>
778 Version 2.10 addresses bugs found in previous releases and has a few 
779 additions as well.
782 Additions include:
785 <UL>
786    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
787    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
788    <LI> Foreign characters are decoded correctly in IMAP folder names.
789    <LI> Question about breaking connection to slow servers includes their name.
790    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
791    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
792    <LI> Cygwin: Alpine builds without need of patch.
793    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
794    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
795    <LI> Add support for strong encryption of password file when S/MIME is built in.
796 </UL>
799 Bugs that have been addressed include:
802 <UL>
803    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
804    <LI> Double allocation of memory in Pico.
805    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
806    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
807    <LI> Not recognition of environment variables in some options.
808    <LI> Not display of login prompt during initial keystrokes.
809    <LI> justification of long urls breaks them.
810    <LI> Incorrect New Mail message when envelope is not available.
811    <LI> Incorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
812    <LI> Crash when resizing the screen after display of LDAP search.
813    <LI> Crash when redrawing screen while opening a remote folder collection.
814    <LI> Infinite loop in scrolltool function during notification of new mail.
815    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
816    <LI> No display of signed and encrypted S/MIME messages.
817    <LI> Alpine will not build with OpenSSL.
818    <LI> Crash for double locking in calls to c-client.
819    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
820    <LI> Ignore the references header when threading messages
821    <LI> No update of colors in index screen after update to addressbook.
822 </UL>
825 Version 2.01 addresses bugs found in previous releases and has a few 
826 additions as well.
829 Additions include:
832 <UL>
833    <LI> Fixed non-ASCII web alpine handling
834    <LI> Added web alpine help.
835    <LI> Allow web alpine inbox on second IMAP server.
836    <LI> Allow web alpine config reset after bad inbox-path gets set.
837    <LI> Added web alpine ability to create group contact from contact list members.
838    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
839    <LI> Tidied up web alpine script layout.
840    <LI> Fixed web alpine status message ordering
841    <LI> Added web alpine Fcc setting via Contacts in Compose
842    <LI> Fixed web alpine autodraft attachment issues
843    <LI> Fixed web alpine problems with recent count maintenance
844    <LI> Fixed web alpine newmail arrival display in message list
845    <LI> Added web alpine confirmation to folder create for Move/Copy
846    <LI> Added web alpine user-domain support
847    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
848 </UL>
851 Bugs that have been addressed include:
854 <UL>
855    <LI> In web alpine fixed delete all selected within a search result to reorient
856         correctly to whole-mailbox message list.
857    <LI> Fixed web alpine delete in view page to be sensitive to sort
858    <LI> Fixed web alpine open of folder within directory from folder manager page.
859    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
860    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
861    <LI> Fixed web alpine adding contacts from message list and view
862    <LI> Fixed web alpine create of non-existent fcc
863    <LI> Remove mistakenly left debugger statement in web alpine javascript.
864    <LI> Some UNIX alpine build problems fixed
865    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
866         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
867         by locale charmap call on some Solaris 8 systems.
868    <LI> MacOS Keychain logins were not working correctly with generic host names, like
869         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
870         new password requests when not needed
871    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
872         last folder in the list
873    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
874         looked for along with the email address
875    <LI> Changes to configure to get spellcheck options with work with arguments.
876    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
877         returned by gethostname (iPhone can do this)
878    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
879         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
880    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
881         Jake Scott of marganstanley.com.
882    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
883         is not used in alpine.
884    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
885         Apparently this causes RIM Blackberry BIS service problems. This is not
886         used in alpine.
887    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
888    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
889         Fix from Ludwig Nussel of SUSE and from Crispin.
890    <LI> Include whole filename in export filename history
891    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
892 </UL>
895 Version 2.00
896 addressed bugs found in previous releases and had a few additions as well.
898 Additions included:
901 <UL>
902    <LI> Redesigned Web Alpine interface
903    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
904         in UNIX versions of Alpine
905    <LI> Attempt to include the attachment filename as part of the name of the
906         temporary file used when viewing an attachment with an external program.
907         Add some randomness to that filename to make it hard to predict the filename.
908         Add a filename extension, usually derived from the type/subtype, to the
909         temporary filename. This was previously done only on Windows and MacOS X.
910    <LI> Enhance address completion in the composer (TAB command) so that it looks
911         through nicknames, fullnames, and addresses from the address book; addresses
912         from the message being viewed, if any; and the results from
913         <A HREF="h_direct_config">LDAP Directory Server</A>
914         lookups for all of the defined directory servers that have the
915         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
916         feature set.
917    <LI> Make the default character set setting more liberal in what it will accept
918         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
919    <LI> Remove the Alpine revision number from the titlebar in released versions
920         while leaving it there in snapshot versions
921    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
922         display of asterisks when you type a password for Alpine
923    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
924    <LI> When the
925         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
926         feature is turned on convert not only the dates in the index screen but also
927         the dates in the MESSAGE VIEW
928 </UL>
931 Bugs addressed in the 2.00 release included:
934 <UL>
935    <LI> Crash when using tab-completion for selecting a Save filename
936    <LI> Make Web Alpine help text images relative for more portability
937    <LI> Fixed attach save of html parts in Web Alpine
938    <LI> Viewing, printing, exporting, replying, and bouncing of message
939         digests was broken. Replying and bouncing should not have been
940         allowed at all for digests. It would be nice to have a more standard
941         index-like view of a message digest but that has not been addressed
942         with this minor bug fix.
943    <LI> Adjust wrapping of HTML messages so that the margins specified by
944         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
945         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
946         are observed correctly
947    <LI> Interrupt of WhereIs command in index was broken
948    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
949         option did not work correctly interpreting unknown characters in message headers
950    <LI> Long address lines could cause blank continuation lines
951    <LI> Save to a local default INBOX failed if the primary collection was also local,
952         which it is by default. The save went to  ~/mail/inbox instead.
953    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
954         inbox, not the inbox in the primary collection
955    <LI> Address book entries with lots of addresses would be truncated when
956         entered in the composer with a screen size wider than 270 or so charcters
957    <LI> Some fields in the index screen were truncated when the screen width was
958         wider than 256 characters
959    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
960         folder, and there is a more than 10 minute pause between typing the TAB
961         and typing the Yes
962 </UL>
965 Version 1.10(962)
966 addressed bugs found in previous releases and had a few additions as well.
968 Additions included:
971 <UL>
972    <LI> Add the possibility of setting a default role
973         (see <A HREF="h_role_select">Roles Screen</A>)
974         which may be convenient if your work flow involves acting in one
975         role for a while then switching to another role and staying in the
976         new role for another period of time
977    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
978         is encountered, ask the user if he or she wants to continue with the
979         risky Save anyway instead of aborting. This may be helpful if your
980         IMAP server is broken in this way but be aware that it is possible there
981         was a real error instead of just a broken server implementation.
982    <LI> Some configure adjustments for Kerberos detection and
983         for SCO OpenServer 5 support
984    <LI> Hide INBOX in a collection if it also appears as an
985         <A HREF="h_config_enable_incoming">Incoming Folder</A>
986    <LI> Show asterisks for feedback when the user is typing a password
987    <LI> Performance improvement for threading of large folders
988    <LI> Previously, the search used to find
989         Pattern matches containing To patterns searched for both To
990         and Resent-To headers. The relatively complicated search this
991         produces causes problems when using some deficient IMAP servers.
992         Now the default is to look only for To headers and ignore the
993         presence of Resent-To. The previous behavior may be restored
994         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
995    <LI> Add an
996         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
997         to help with reading malformed unlabeled messages
998    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
999    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
1000    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
1001 </UL>
1004 Bugs addressed in the 1.10(962) release included:
1007 <UL>
1008    <LI> Crash when encountering certain errors from an SMTP server
1009    <LI> Crash in composer caused by overflow in replace_pat()
1010    <LI> Hang when authenticating to an SMTP server that fails with a
1011         &quot;connection disconnected&quot; error
1012    <LI> Bug in handling of trailing tab character in flowed text
1013    <LI> Security enhancement for mailcap parameter substitution
1014    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
1015         did not work if the message being replied to was not flowed text
1016         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
1017         was not turned on
1018    <LI> Don't allow printer to be changed through hidden config screen
1019         if system administrator didn't want it to be allowed
1020    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
1021         should know that it won't work, causing error messages to appear
1022    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
1023         of double-quote double-quote didn't work right
1024    <LI> Quoting wasn't being done to protect special characters from the
1025         MacOS X shell when
1026         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
1027         was not defined
1028    <LI> On MacOS X message attachments should be shown internally instead of
1029         being shown using the Mail application
1030    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
1031         sometimes set the outgoing charset to X-UNKNOWN, making the result
1032         unreadable
1033    <LI> When the sending of a message failed lines with leading spaces had one
1034         additional space inserted in each of those lines when the user
1035         was returned to the composer
1036    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
1037         that contained non-ascii characters because it was truncating the
1038         line being searched so that it was shorter than what was visible on
1039         the screen
1040    <LI> When composing, an attachment with a long name that causes wrapping in
1041         just the wrong place would generate an error and cause the send
1042         of the attachment to fail
1043    <LI> After calling the file browser to attach a file in the composer, a resize
1044         of the window when back in the composer would redraw the last screen that
1045         had been shown in the browser instead of the current composer screen
1046    <LI> Possible crash in index screen when encountering unparseable addresses
1047         or when using one of the PRIORITY tokens or the HEADER token in the
1048         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
1049    <LI> Problems with Header Color editing if the configuration option
1050         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
1051         was inadvertently changed to the Empty Value in the hidden config screen
1052    <LI> When resuming the final postponed message from an Exchange server the user
1053         could get a certificate validation failure because alpine was trying
1054         to validate the canonical name of the folder instead of the name the
1055         user used
1056    <LI> Windows line endings in a mimetypes file on a Unix system cause a
1057         failure to find a match
1058    <LI> Make matching of extension names case independent in mimetypes files
1059    <LI> Windows dialog boxes for entering text were not working correctly
1060    <LI> Replying to or Forwarding multipart/alternative messages which had a
1061         single text/html part did not work well
1062    <LI> Printing the print confirmation page caused a crash
1063    <LI> A To line with a long, quoted personal name could display incorrectly
1064         if it was close to the same width as the screen
1065    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
1066         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
1067         are turned on hide (0/0) when the folder is empty
1068    <LI> Folder completion while Saving didn't work if the collection being
1069         saved to was the local home directory
1070 </UL>
1073 Version 1.00
1074 was an evolutionary release based on
1075 <A HREF="http://www.washington.edu/pine/">Pine</A>, which was also
1076 developed at the University of Washington.
1077 It is upwards-compatible for existing Pine users.
1080 Changes included:
1082 <UL>
1083    <LI> Ground-up reorganization of source code around addition
1084         of "pith/" core routine library.
1085    <LI> Fundamental improvement in Alpine's internal text handling, which
1086         is now based exclusively on Unicode. This allows displaying incoming
1087         messages and producing outgoing messages in many different languages.
1088    <LI> Ground-up reorganization of build and install procedures
1089         based on GNU Build System's autotools. NOTE, the included IMAP library
1090         build is not based on autotools, so some features will not work. However,
1091         it should get built automatically during the Alpine build process.
1092    <LI> Web-based version included built on TCL designed to run under
1093         a suitable CGI-supporting web server such as Apache.
1094 </UL>
1098 Details on changes in previous (prerelease) versions of Alpine
1099 may be found at the following URL:
1101 <CENTER><SAMP><A HREF="http://alpine.freeiz.com/alpine/release/">http://alpine.freeiz.com/alpine/release/</A></SAMP></CENTER>
1104 <HR WIDTH="75%"><P>
1106 <H2>Getting Help</H2>
1107 <DL>
1108 <DT>Online Help</DT>
1109 <DD>
1110 Every Alpine screen and command has associated help text
1111 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
1112 </DD>
1114 <DT>Web Help</DT>
1115 <DD>
1116 The most current source of information about Alpine,
1117 including new version availability, is the web page at
1119 <CENTER><SAMP><A HREF="http://alpine.freeiz.com/alpine/">http://alpine.freeiz.com/alpine/</A></SAMP></CENTER>
1120 </DD>
1121 </DL>
1123 Frequently Asked Questions (and answers) may be found at the following
1124 URL:
1126 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/faq/">http://www.washington.edu/alpine/faq/</A></SAMP></CENTER>
1129 <HR WIDTH="75%"><P>
1131 <H2>Additional Information</H2>
1133 General Alpine configuration information can be found
1134 <A HREF="h_news_config">here</A>.
1136 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
1137 Alpine mailbox and <A HREF="https://github.com/jonabbey/panda-imap/">IMAP</A> server
1138 access is provided by the IMAP Toolkit Environment (c-client library)
1139 version <!--#echo var="C_CLIENT_VERSION"-->.
1140 <P> 
1141 Alpine was developed until 2009 by the Office of Computing 
1142 &amp; Communications at the University of Washington in Seattle.  
1143 Since then, the effort of developing Alpine has been continued by
1144 a community of volunteers who make good software even better!
1147 Alpine Copyright 2013-2017 Eduardo Chappa, 
1148 <BR> Copyright 2006-2008 University of Washington.
1151 Additional legal notices can be found <A HREF="h_news_legal">here</A>,
1152 or instead you can find the Apache License, version 2.0 at the web URL:
1155 <CENTER><A HREF="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</A></CENTER>
1158 &lt;End of Release Notes&gt;
1159 </BODY>
1160 </HTML>
1161 ====== h_password_file_support ======
1162 <HTML>
1163 <HEAD>
1164 <TITLE>Encryption for Password File Support Explained</TITLE>
1165 </HEAD>
1166 <BODY>
1167 <H1>Encryption for Password File Support Explained</H1>
1169 Index<BR>
1170 <OL>
1171 <LI><A HREF="#content">Explanation</A>
1172 <LI><A HREF="#example_existing_key">Example of Use of Existing Key and Certificate</A>
1173 <LI><A HREF="#example_self_signed">Example of Creating Master Password</A>
1174 </OL>
1176 <P><A NAME="content">Unix Alpine Only.</A>
1178 <P> If your version of Alpine has been built with password file support
1179 then you can use a special file to save your passwords, and avoid typing
1180 them every time you open a connection to a remote server.
1182 <P> If, in addition, your version of Alpine was built with SMIME support, then your 
1183 password file will be encrypted with a strong key. There are two ways in 
1184 which this can happen: Alpine will either use a matching private key and 
1185 public certificate pair that you already own, or it will create one for 
1186 you, just for purposes of encrypting this file. We describe both processes 
1187 below.
1189 <P> Initially, Alpine will scan your public and private directories for a 
1190 certificate/private key pair that works. Alpine will pick the first pair 
1191 that it finds that matches. 
1193 <P> Once a pair has been chosen, it will be copied to the directory 
1194 ~/.alpine-smime/.pwd, and from then on, Alpine will use the pair found in 
1195 that directory. The first time this process is done, this directory will 
1196 be created, a key/certificate pair will be copied to it, from then on 
1197 this pair will be used to encrypt and decrypt your password file. 
1199 <P> If you want to use a specific key and certificate pair to encrypt
1200 your password file, you can create the directory ~/.alpine-smime/.pwd 
1201 manually, and then create your preferred key/certificate pair there.
1202 Alpine will use this key regardless of if it has expired, or if it is
1203 self-signed. These issues do not affect the encryption or decryption
1204 of the password file.
1206 <P> If you prefer not to use the directory ~/.alpine-smime/.pwd to save 
1207 your key/certificate pair, you can specify a different one with the 
1208 -pwdcertdir command line option in Alpine. If the directory specified by 
1209 this option is not found Alpine will fail to encrypt and decrypt your 
1210 password file. However if it exists, Alpine will search for a 
1211 key/certificate pair in that
1212 directory, and if it does not find one, it will create one and save it
1213 in that directory.
1215 <P> Alpine does not care about the names of the key and certificates in 
1216 this directory, but the private key must have &quot;.key&quot; extension 
1217 and your public certificate must have the &quot;.crt&quot; extension. The
1218 name of the private key will be used in the prompt when you are asked
1219 to unlock your key to decrypt your password.
1221 <P> If Alpine cannot find a suitable private key and public certificate 
1222 pair to encrypt your password, it will create one. You will be asked to 
1223 create a &quot;Master Password&quot; to protect such key. At this moment 
1224 there are no restrictions on passwords, other than they have to be at 
1225 least 8 characters long, but future versions of Alpine will include 
1226 functionality to restrict master passwords, as set up by the administrator 
1227 of the system in the pine.conf.fixed file.
1229 <P><A NAME="example_existing_key"><B>Example of Use of Existing Key and Certificate</B></A>
1231 <P>Assume you have a private key called peter@address.com.key in your, 
1232 ~/.alpine-smime/private directory, and a public certificate called 
1233 peter@address.com.crt in your ~/.alpine-smime/public directory, and these 
1234 are your only key/certificate pair.
1236 <P> When Alpine starts for the first time, without command line options, 
1237 it will check if the directory ~/.alpine-smime/.pwd exists, and if not, 
1238 it will create it. Then it will go through your keys and certificates and 
1239 find a pair that it can use, and copy the files peter@address.com.key,
1240 and peter@address.com.crt to the ~/.alpine-smime/.pwd directory. Alternatively
1241 you can do the same by copying these files by yourself. This can be done
1242 with the sequence of commands
1244 <PRE>
1245 mkdir ~/.alpine-smime/.pwd
1246 cp ~/.alpine-smime/private/peter@address.com.key ~/.alpine-smime/.pwd
1247 cp ~/.alpine-smime/public/peter@address.com.crt ~/.alpine-smime/.pwd
1248 </PRE>
1250 <P> When Alpine starts, you will be asked the password to unlock your
1251 private key with the prompt.
1253 <PRE>
1254 Enter password of key &lt;peter@address.com&gt; to unlock password file:
1255 </PRE>
1257 <P> If you prefer to use different names for your private and public keys 
1258 in the ~/.alpine-smime/.pwd directory, you can do so, but you must 
1259 preserve the extension of the files. For example, you can use the names 
1260 private_key.key and public_cert.crt instead. In this case, the prompt you 
1261 will see when you are asked to unlock your private key will read
1263 <PRE>
1264 Enter password of key &lt;private_key&gt; to unlock password file:
1265 </PRE>
1267 <P>Observe that you do not need to use an existing key/certificate pair, 
1268 and that you can create a new private key/public certificate pair to 
1269 encrypt and decrypt your password file. Alpine provides a mechanism to
1270 change the encryption key for this file in the S/MIME configuration
1271 screen.
1273 <P><A NAME="example_self_signed"><B>Example of Creating Master Password</B></A>
1275 <P> If Alpine cannot find a suitable private key and public certificate pair
1276 to encrypt your password file, it will create one. When doing so, it will
1277 start the process with the following warning:
1279 <PRE>
1280 Creating a Master Password for your Password file.
1281 </PRE>
1283 <P> Then Alpine will ask you to enter your Master Password:
1285 <PRE>
1286 Create master password (attempt 1 of 3):
1287 </PRE>
1289 <P> Once you enter this password, and it validates according to system policy,
1290 you will be asked to confirm this password. 
1292 <PRE>
1293 Confirm master password (attempt 1 of 3):
1294 </PRE>
1296 <P> If you input the same password, then Alpine will set that as your 
1297 Master Password, and you will use this password to unlock your key in the 
1298 future.
1300 <P> If you would like to switch your Master Password in the future, you can 
1301 do so by creating a new public key and public certificate pair. You can do 
1302 so in the S/MIME configuration screen, in the &quot;Manage Key and 
1303 Certificate for Password File&quot; section, simply enter your current 
1304 password to unlock your current key and then press &quot;C&quot; to create 
1305 a new key.
1308 &lt;End of help&gt;
1309 </BODY>
1310 </HTML>
1311 ====== h_tls_failure_details ======
1312 <HTML>
1313 <HEAD>
1314 <TITLE>Certificate Validation Details</TITLE>
1315 </HEAD>
1316 <BODY>
1317 <H1>Certificate Validation Details</H1>
1319 This screen gives details as to why the certificate validation failed: the
1320 name of the desired server system; the reason for failure; and the name on
1321 the certificate.  This is primarily of interest to experts.
1324 &lt;End of help&gt;
1325 </BODY>
1326 </HTML>
1327 ====== h_tls_failure ======
1328 <HTML>
1329 <HEAD>
1330 <TITLE>TLS or SSL Failure</TITLE>
1331 </HEAD>
1332 <BODY>
1333 <H1>TLS or SSL Failure</H1>
1335 An attempt was made to establish a secure, encrypted connection to the
1336 server system using either Transport Layer Security (TLS) or the older
1337 Secure Sockets Layer (SSL).  This attempt failed.
1340 You should contact your server system management for more assistance.
1341 The problem is probably at the server system and not in Alpine or your local
1342 system.  The text in this screen may be helpful for the server system
1343 management in debugging the problem,
1346 &lt;End of help&gt;
1347 </BODY>
1348 </HTML>
1349 ====== h_tls_validation_failure ======
1350 <HTML>
1351 <HEAD>
1352 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
1353 </HEAD>
1354 <BODY>
1355 <H1>TLS and SSL Certificate Validation Failures</H1>
1357 An attempt was made to establish a secure, encrypted connection to the
1358 server system using either Transport Layer Security (TLS) or the older
1359 Secure Sockets Layer (SSL).
1362 An important part of this procedure is server certificate validation.  A
1363 server certificate is an &quot;electronic identification card&quot; for the server
1364 system that is signed by a well-known certificate authority (CA).  Alpine
1365 compares the server system identity in the server certificate with the
1366 name of the server system to which it is trying to connect.  Alpine also
1367 verifies that the CA signature is authentic.
1370 Some common failure conditions are:
1373 <UL>
1374   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
1375 signed its own certificate.  This does not necessarily indicate anything
1376 bad; the server operators may simply have elected to not purchase a
1377 signed certificate from a certificate authority.
1379   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
1380 the signature on the server system is from an unknown certificate authority.
1381 It can also mean that no certificate authority certificates have been
1382 installed on the local UNIX system.
1384   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
1385 the same as either of the above two conditions in UNIX Alpine.  Note that
1386 Windows systems typically have a full set of certificate authority
1387 certificates installed, so it is more likely to be a self-signed
1388 certificate than an unknown certificate authority.
1390   <LI> Server name does not match certificate.  This means that the server
1391 presented a proper signed certificate for a name other than the desired
1392 name.
1393 </UL>
1396 Any of these conditions can indicate that you are being attacked and have
1397 been directed to an imposter server that will record your password and
1398 your private mail messages.  It can also mean something innocuous.
1401 If you are certain that the problem is innocuous, you can append the
1402 option
1405 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
1408 to the server system name where it appears in your configuration (e.g. the
1409 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
1410 a folder-collection, or a news or SMTP server).  This will
1411 disable certificate validation.  On the other hand, if you are attacked,
1412 you will get no warning if you do this.
1415 &lt;End of Cert Validation Failures help&gt;
1416 </BODY>
1417 </HTML>
1418 ====== h_release_tlscerts ======
1419 <HTML>
1420 <HEAD>
1421 <TITLE>TLS and SSL usage note</TITLE>
1422 </HEAD>
1423 <BODY>
1424 <H1>TLS and SSL usage note</H1>
1427 When using Alpine from Unix or Windows 2000,
1428 server certificates must be signed by a trusted certificate authority.
1429 You may relax this requirement (at the cost of some security) by using
1431 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
1432 modifier in the mailbox name.
1435 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
1438 The fully-qualified host name of the server should be used
1439 so that it matches the host name in the server certificate.
1441 Here is an example of a host specification that directs Alpine to use
1442 the SSL port (993) and an encrypted data stream.
1444 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
1446 &lt;End of TLS usage help&gt;
1447 </BODY>
1448 </HTML>
1449 ====== h_news_config ======
1450 <HTML>
1451 <HEAD>
1452 <TITLE>Alpine Configuration</TITLE>
1453 </HEAD>
1454 <BODY>
1455 <H1>Alpine Configuration</H1>
1457 <H2>Using Environment Variables</H2>
1459 The values of Alpine configuration options may include environment variables
1460 that are replaced by the value of the variable at the time Alpine is run
1461 (and also at the time the config option is changed).
1462 The syntax to use environment variables is a subset of the common Unix
1463 shell dollar-syntax.
1464 For example, if
1466 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
1468 appears in the value of an Alpine configuration option it is looked up in the
1469 environent (using getenv(&quot;VAR&quot;)) and its
1470 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
1471 To include a literal dollar sign you may precede the dollar sign with another
1472 dollar sign.
1473 In other words, if the text
1475 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
1477 is the value of a configuration option, it will be expanded to
1479 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
1481 and no environment lookup will be done.
1482 For Unix Alpine it will also work to use a backslash character to
1483 escape the special meaning of the dollar sign, but $$ is preferable since
1484 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
1485 to be in a shared configuration file.
1488 This all sounds more complicated than it actually is.
1489 An example may make it clearer.
1490 Unfortunately, the way in which environment variables are set is OS-dependent 
1491 and command shell-dependent.
1492 In some Unix command shells you may use
1494 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
1495    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
1497 Now, if you use Alpine's Setup/Config screen to set
1499 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
1501 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
1502 so that this would be equivalent to
1504 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
1506 Note, environment variable substitution happens after configuration
1507 options that are lists are split into the separate elements of the list,
1508 so a single environment variable can't contain a list of values.
1511 The environment variable doesn't have to be the only thing
1512 after the equal sign.
1513 However, if the name of the variable is not at the end of the line or
1514 followed by a space (so that you can tell where the variable name ends),
1515 it must be enclosed in curly braces like
1517 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
1519 It is always ok to use the braces even if you don't need to.
1521 It is also possible to set a default value for an environment variable.
1522 This default value will be used if the environment variable is not
1523 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
1524 The syntax used to set a default value is
1526 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
1528 If the config file contains
1530 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
1532 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
1533 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
1534 the value that <SAMP>VAR</SAMP> was set to, otherwise,
1535 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
1536 the default value.
1537 (Note that the variable is called &quot;personal-name&quot; in the config
1538 file but is displayed in the config screen as
1539 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
1540 In general, the value that goes into a config file is never exactly the
1541 same as the value you see on the screen.)
1544 An example where an environment variable might be useful is the
1545 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
1546 Suppose most users used the server
1548 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
1550 but that there were some exceptions who used
1552 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
1554 In this case, the system manager might include the following line in
1555 the systemwide default Alpine configuration file
1557 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
1559 For the exceptional users adding
1561 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
1563 to their environment should work.
1565 Another example might be the case where a user has to use a different
1566 SMTP server from work and from home.
1567 The setup might be something as simple as
1569 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
1571 or perhaps a default value could be given.
1572 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
1573 a list of SMTP servers.
1576 <H2>Configuration precedence</H2>
1578 There are several levels of Alpine configuration.  Configuration values at
1579 a given level override corresponding values at lower levels.  In order of
1580 increasing precedence:
1582 <UL>
1583  <LI> built-in defaults
1584  <LI> system-wide
1585 <!--chtml if pinemode="os_windows"-->
1586       config file from command line or provided
1587       by "PINECONF" environment variable
1588 <!--chtml else-->
1589       pine.conf file
1590 <!--chtml endif-->
1591  <LI> personal configuration file
1592  <LI> personal exceptions configuration file
1593  <LI> command-line options
1594  <!--chtml if pinemode="os_windows"--><!--chtml else-->
1595  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
1596 </UL>
1598 The values in both the personal configuration file and the
1599 <A HREF="h_config_exceptions">exceptions</A>
1600 configuration file may be set using the Setup command.
1601 Setup/Config is the command to change most of the personal configuration
1602 options.
1603 The other Setup subcommands are also used to change the configuration,
1604 for example, Setup/AddressBook, Setup/Rules, and so on.
1605 Changing the personal exceptions configuration is very similar.
1606 To change a value in the Config screen you would use the command
1607 Setup/eXceptions/Config.
1608 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
1610 There are a couple exceptions to the rule that configuration values are replaced
1611 by the value of the same option in a higher-precedence file.
1612 The Feature-List variable has values that are additive, but can be
1613 negated by prepending &quot;no-&quot; in front of an individual feature name.
1614 So for features, each individual feature's value is replaced by the value
1615 of the same feature in a higher-precedence file.
1616 Note that this is done automatically for you when you change these values via
1617 the Setup/Config command.
1618 The other exception to the <EM>replace</EM> semantics happens when you
1619 use <A HREF="h_config_inheritance">configuration inheritance</A>
1620 for option lists.
1623 <H2>File name defaults</H2>
1625 Notes:<P>
1627 <BR> &lt;exe dir&gt; = directory where pine.exe found.
1628 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
1629 <BR> # = default file name is overridable in pinerc.
1630 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
1631 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
1632 <BR> + between the mailcap paths implies that the two files are combined.
1633 <BR> ; between other default paths implies that the first one found is used.
1634 </P>
1635 Alpine looks for most support files in the same directory it finds its
1636 personal configuration file (pinerc).  The -p command-line flag may be
1637 used to specify a particular path name for the pinerc file.  If a
1638 pinerc file does not exist, it will be created (if directory permissions
1639 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
1640 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
1641 file does not exist in either one, it will create one in the first of those
1642 two directories that is writable.  In detail:
1643 <PRE>
1645 PC-Alpine:
1647  executable     &lt;DOS search path&gt;&#92;pine.exe
1648  help index     &lt;exe dir&gt;&#92;pine.ndx
1649  help text      &lt;exe dir&gt;&#92;pine.hlp
1651  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
1652  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
1653  global cfg     $PINECONF
1655  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
1656  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
1657  signature#     &lt;pinerc dir&gt;&#92;pine.sig
1658  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
1659  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
1660  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
1661  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
1662  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
1663  postponed#     $HOME&#92;mail&#92;postpond.mtx
1664  interrupted    $HOME&#92;mail&#92;intruptd
1666 Unix Alpine:
1668  executable     &lt;Unix search path&gt;/pine
1669  persnl cfg     ~/.pinerc
1670  except cfg     ~/.pinercex
1671  global cfg     <!--#echo var="PINE_CONF_PATH"-->
1672  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
1673  local help     <!--#echo var="PINE_INFO_PATH"-->
1675  interrupted    ~/.pine-interrupted-mail
1676  debug          ~/.pine-debugN
1677  crash          ~/.pine-crash
1678  newsrc#        ~/.newsrc
1679  signature#     &lt;pinerc dir&gt;/.signature
1680  addressbook#   &lt;pinerc dir&gt;/.addressbook
1681  postponed#     ~/mail/postponed-msgs
1682  sentmail#      ~/mail/sent-mail
1683  mailcap#       ~/.mailcap + /etc/mailcap
1684                            + /usr/etc/mailcap + /usr/local/etc/mailcap
1685  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
1687  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
1688  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
1689  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
1690  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
1691  password       /etc/passwd
1693 Unix Alpine and PC-Alpine:
1695  .ab*           remote addressbook support files
1696  a[1-9]*        temporary (while Alpine is running) addressbook files
1698 </PRE>
1701 <H2>Mailcap files</H2>
1703 Alpine honors the mailcap configuration system for specifying external
1704 programs for handling attachments.  The mailcap file maps MIME attachment
1705 types to the external programs loaded on your system that can display
1706 and/or print the file.  A sample mailcap file comes bundled with the Alpine
1707 distribution.  It includes comments that explain the syntax you need to
1708 use for mailcap.  With the mailcap file, any program (mail readers,
1709 newsreaders, WWW clients) can use the same configuration for handling
1710 MIME-encoded data.
1713 <H2>MIME-Types files</H2>
1715 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
1716 what Content-Type to use for labeling an attached file, based on
1717 the file extension.  That is, this file provides a mapping between
1718 filename extensions and MIME content-types.
1721 <H2>Environment variables</H2>
1723 PC-Alpine uses the following environment variables:
1724 <DL>
1725 <DT>PINERC</DT>
1726 <DD>Optional path to pinerc file.</DD>
1727 <DT>PINERCEX</DT>
1728 <DD>Optional path to personal exceptions configuration file.</DD>
1729 <DT>PINECONF</DT>
1730 <DD>Optional path to global pine config file.</DD>
1731 <DT>HOME</DT>
1732 <DT>TMPDIR, TMP, or TEMP</DT>
1733 <DT>COMSPEC</DT>
1734 <DT>MAILCAPS</DT>
1735 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
1736 <DT>USER_DICTIONARY</DT>
1737 <DD>Used to specify the file to contain the user's spell check
1738 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
1739 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
1740 </DL>
1742 Unix Alpine uses the following environment variables:
1743 <DL>
1744 <DT>TERM</DT>
1745 <DD>Tells Alpine what kind of terminal is being used.</DD>
1746 <DT>DISPLAY</DT>
1747 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
1748 <DT>SHELL</DT>
1749 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
1750 <DT>TMPDIR, TMP, or TEMP</DT>
1751 <DT>MAILCAPS</DT>
1752 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
1753 </DL>
1754 <!--chtml if pinemode="os_windows"-->
1756 <H2>Common PC-Alpine Configuration Problems</H2>
1758 <H3>Configuration settings aren't being saved</H3>
1760 <P>This problem can happen if you run pine from one directory and
1761 then decide to move your pine directory to another location.  PC-Alpine
1762 stores certain variables, including the configuration location, in the
1763 Windows Registry (which you shouldn't ever need to manually edit).  There
1764 are a couple of ways to go about removing or resetting the values in the
1765 registry.
1768 1) Run PC-Alpine's registry value deletion command.  This can be done by
1769 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
1770 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
1771 value to the above command.
1774 2) Tell PC-Alpine where to look for the configuration file.  Configuration
1775 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
1776 option, you can tell PC-Alpine the location of your pinerc.  An example of
1777 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;.
1778 Again, you can use the DOS prompt or the shortcut method explained in (1).
1781 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
1782 set registry values to the current setting, and is therefore useful with
1783 the &quot;-p&nbsp;PINERC&quot; option.
1785 <!--chtml endif-->
1787 &lt;End of Configuration Notes&gt;
1788 </BODY>
1789 </HTML>
1790 ====== h_news_legal ======
1791 <html>
1792 <head>
1793 <TITLE>Alpine Legal Notices</TITLE>
1794 </head>
1795 <body>
1797 <H1>Alpine Legal Notices</H1>
1799 Alpine and its constituent programs are covered by the Apache License Version 2.0.
1803 &lt;End of Alpine Legal Notices&gt;
1804 </BODY>
1805 </HTML>
1806 ===== h_info_on_mbox =====
1807 <HTML>
1808 <HEAD>
1809 <TITLE>Information on mbox driver</TITLE>
1810 </HEAD>
1811 <BODY>
1812 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
1814 Beginning with Pine 4.00 (Pine came before Alpine)
1815 a new INBOX access method is
1816 available as part of the standard configuration.  It is called the
1817 &quot;mbox&quot; driver and it works like this:<P>
1820 <BLOCKQUOTE>
1821 If the file &quot;mbox&quot; exists in the user's home directory, and
1822 is in Unix mailbox format, then when INBOX is opened this file will be
1823 selected as INBOX instead of the mail spool file.  Messages will be
1824 automatically transferred from the mail spool file into the mbox
1825 file.
1826 </BLOCKQUOTE>
1829 The advantage of this method is that, after new mail has been copied
1830 from the system mail spool, all subsequent access is confined to the
1831 user's home directory, which is desirable on some systems.  However, a
1832 possible disadvantage is that mail tools other than those from the
1833 University of Washington will not know to look for mail in the user's
1834 mbox file.  For example, POP or IMAP servers other than those from the
1835 University of Washington, and many &quot;new mail notification&quot;
1836 programs may not work as expected with this driver enabled.<P>
1838 To disable this behavior, either remove/rename the &quot;mbox&quot;
1839 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
1840 option in Setup/Config
1841 and add &quot;mbox&quot; to it:
1843 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
1845 &lt;End of help on this topic&gt;
1846 </BODY>
1847 </HTML>
1848 ===== h_info_on_locking =====
1849 <HTML>
1850 <HEAD>
1851 <TITLE>FAQs on Alpine Locking</TITLE>
1852 </HEAD>
1853 <BODY>
1854 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
1856 There is an extensive section on locking in the Alpine technical notes;
1857 this information is intended to provide answers to some common questions:<P>
1858 <OL>
1859 <LI> Why did locking change in Pine 4.00?<BR>
1860 The actual locking mechanisms did not change in 4.00.
1861 What changed is that when one particular locking mechanism used by Alpine 
1862 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
1863 failure would occur, but no warning was issued.<P>
1865 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
1866 Yes.  It means that Alpine was unable to create a lockfile in the
1867 spool directory, generally because of overly restrictive protections on the
1868 spool directory.  The correct permissions on the spool directory for
1869 running Alpine are 1777, i.e. read-write-execute permission for everyone,
1870 with the sticky-bit set, so only owners of a file can delete them.<P>
1872 <LI> Why does Alpine require that the mail spool directory have 1777
1873    protections?<BR>
1874 Alpine was designed to run without special privileges.  This means that in
1875 order to create a lockfile in the spool directory, it is necessary to have
1876 the spool directory permissions be world-writable.<P>
1878 <LI> Can't you create the lockfile somewhere else?<BR>
1879 No.  The lockfile in question must be in the mail spool directory, because
1880 that's where the mail delivery program expects to find it, and the purpose
1881 of the file is to coordinate access between the mail client (Alpine) and the
1882 mail delivery program.<P>
1884 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
1885 No.  Remember that the individual mail files in the spool directory are
1886 NOT world-writable, only the containing directory.  Setting the &quot;sticky
1887 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
1888 -- means that only the owner of the file (or root) can delete files in the 
1889 directory.  So the only bad behavior that is invited by the 1777 mode is that 
1890 anyone could
1891 create a random file in the spool directory.  If the spool directory is
1892 under quota control along with home directories, there is little incentive
1893 for anyone to do this, and even without quotas a periodic scan for
1894 non-mail files usually takes care of the problem.  <P>
1896 <LI> Why not run Alpine as setgid mail?<BR>
1897 Alpine was never designed to run with privileges, and to do so introduces a
1898 significant security vulnerability.  For example, if a user suspends Alpine,
1899 the resulting shell will have group privileges.  This is one example of
1900 why we strongly recommend against running Alpine as a privileged program.
1901 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
1902 users
1903 could not test Alpine versions or other mailers that had not been installed
1904 by the system administrators.<P>
1907 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
1908 There are, but they all have different sets of tradeoffs, and not all will
1909 work on all systems.  Some examples:<UL>
1910  <LI> Use lock system calls.  Works fine on a few systems, provided mail
1911    spool is local.   Doesn't work reliably if NFS is used.
1912    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
1913    use the same calls.
1914  <LI> Deliver mail to user's home directory.  An excellent solution, highly
1915    recommended -- but one which is incompatible with some &quot;legacy&quot; 
1916 mail tools that always look in the spool directory for the mail.
1917 </UL><P>
1919 <LI> Are these spool directory lock files the only kinds of locks used by
1920    Alpine?<BR>
1921 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
1922 mailbox format folders, these are used to coordinate access between
1923 multiple Alpine sessions.  <P>
1925 <LI> What about the 
1926 <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>
1927 This is for people who are content to live dangerously, or who have
1928 specific knowledge that the spool directory lockfiles are superfluous on
1929 their system (because both Alpine and the mail delivery program are using 
1930 system call file locking in a context that works reliably, e.g. not NFS.)<P>
1932 <LI> Where can I find more details on how Alpine locking works?<BR>
1933 See the Alpine Technical Notes.<P>
1935 </OL>
1937 &lt;End of help on this topic&gt;
1938 </BODY>
1939 </HTML>
1940 ===== h_finding_help ====
1941 <HTML>
1942 <HEAD>
1943 <TITLE>Finding more information and requesting help</TITLE>
1944 </HEAD>
1945 <BODY>
1946 <H1>Places to Look for More Answers</H1>
1947 If you have questions about or problems with Alpine that you cannot resolve 
1948 after consulting the program's internal, context-sensitive help screens, here 
1949 are additional information resources that you may find helpful:
1951 <UL>
1952   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
1954   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
1956   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
1957 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
1958   since the last version, which may be useful for you to be aware of, 
1959 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
1960 a change in the way an aspect of Alpine works.  There, you will also find notes 
1961 on Alpine configuration.<P>
1963   <LI> The main site for Alpine contains information on configuring and solving problems
1964        with Alpine, it can be found at
1966 <CENTER><A HREF="http://alpine.freeiz.com/alpine/">http://alpine.freeiz.com/alpine/</A></CENTER>  
1968   <LI> The Alpine Information Center (maintained by the University of
1969            Washington) World Wide Web site contains, among other things
1970            <UL>
1971            <LI>a collection of Frequently Asked Questions (and answers!) about Alpine
1972            <LI>an overview of the basics for beginning Alpine users
1973            <LI>Technical Notes for systems administrators
1974            <LI>archives (including a searchable index) of the alpine-info 
1975 mailing list, on which matters of interest to systems/email administrators,
1976 developers, trainers, user support personnel, and others involved with Alpine 
1977 messaging on a &quot;technical&quot; level are discussed.
1978 </UL>
1979         The Alpine Information Center can be accessed with a WWW browser at:<P>
1980             <CENTER><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></CENTER>  
1981 </UL>
1982 <P><HR WIDTH="75%">
1983 <H1>Requesting help</H1>
1984 If the internal help, the Release Notes, the Alpine Information Center, and your 
1985 local online and print resources do not help you resolve a problem, please
1986 start by contacting your local computer support staff and asking for help.
1988 This is especially true if:
1989 <ul>
1990   <li>You suddenly have trouble sending or receiving mail.
1991   <li>You receive a "disk quota exceeded" message.
1992   <li>You have forgotten your password.
1993   <li>You think your account may have been compromised.
1994   <li>You need help viewing an attachment.
1995   <li>You need to know how to configure your:
1996       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
1997       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
1998       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
1999       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
2000   <li>You want to know what alternative editors or spellcheckers you may be able to use.
2001   <li>You want to block email from a particular person.
2002   <li>You're going on vacation and need to autorespond to incoming mail.
2003   <li>You want to automatically file or filter incoming messages.
2004 </ul>
2006 In all of these cases,
2007 you should contact <B>your</B> support staff, because <B>only they</B> 
2008 will be able to assist you effectively. Your support staff may be, depending on who 
2009 provides you with the email account you use Alpine with, for example:<UL>
2010 <LI> the computing help desk of (a department of) your university, school, 
2011 employer, ... ; or
2012 <LI> the customer service center of your Internet Service Provider; or
2013 <LI> the friendly volunteer helpers of your Freenet; or
2014 <LI> the person who setup your computer and internet connection.
2015 </UL>
2017 Due to the large number of Alpine installations worldwide, and because we
2018 receive no funding for it, the University of Washington <B>cannot provide 
2019 individual support services outside the University of Washington</B>.
2021 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
2022 newsgroup can be a valuable source of information and assistance for Alpine 
2023 user issues.
2025 For systems/email administrators, developers, trainers, user support
2026 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
2027 level, the mailing list alpine-info is available; for information on
2028 subscribing and posting to it, see
2030 <CENTER><A HREF="http://www.washington.edu/alpine/alpine-info/subscribing.html">http://www.washington.edu/alpine/alpine-info/subscribing.html</A></CENTER>
2033 Regardless of whom you are asking for help with Alpine, remember 
2034 to provide as much detail as you can about the
2035 nature of any problem you are encountering, such as
2036 <UL>
2037 <LI>when it first occurred;
2038 <LI>what, if anything, happened that might have brought it about;
2039 <LI>whether it still persists;
2040 <LI>whether it is reproducible, and if so, how;
2041 <LI>what, if anything, you already tried to solve it.
2042 </UL> 
2043 It may also be helpful if you specify what version of Alpine you are using 
2044 <!--chtml if pinemode="running"-->
2045 -- this is <!--#echo var="ALPINE_VERSION"--> --
2046 <!--chtml endif-->
2047 and on what system, and when the copy of Alpine you are using was created
2048 <!--chtml if pinemode="running"-->
2049 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
2050 <!--chtml endif-->
2052 <!--chtml if pinemode="running"-->
2053 <P>   
2054 When the Alpine program you are currently using was installed, a support
2055 contact email address may have been set up; in that case, you can simply select
2056 this link now to send a message to it:<BR>
2057 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
2058 <!--chtml endif-->
2059 <!--chtml if [ -r PINE_INFO_PATH ]-->
2060 <HR WIDTH="75%">Local Support Contacts:<P>
2061 <!--#include file="PINE_INFO_PATH"-->
2062 <HR WIDTH="75%">
2063 <!--chtml endif-->
2064 <P> 
2065 &lt;End of help on this topic&gt;
2066 </BODY>
2067 </HTML>
2068 ===== new_user_greeting ======
2069 <HTML>
2070 <HEAD>
2071 <TITLE>NEW USER GREETING</TITLE>
2072 </HEAD>
2073 <BODY>
2074 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2075 <BR>
2076 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2077 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
2078 select Setup/Config to see many of the options available to you. Also note
2079 that all screens have context-sensitive help text available.<P>
2080 <!--chtml if pinemode="phone_home"-->
2081 SPECIAL REQUEST:
2082 This software was originally created and maintained as a public
2083 service by the University of Washington until 2009; updates are made 
2084 available as a public service of the Alpine community. It is always 
2085 helpful to have an idea of how many users are using Alpine. Are you 
2086 willing to be counted as an Alpine user? Pressing 
2087 <A HREF="X-Alpine-Phone-Home:">Return</A>
2088 will send an anonymous (meaning, your real email address will not be revealed) 
2089 message to the Alpine developers for purposes of tallying.
2091 <!--To Exit this screen and continue your Alpine session press "E".-->
2092 <!--chtml else-->
2093 To Exit this screen and continue your Alpine session press "Return".
2094 <!--chtml endif-->
2095 </BODY>
2096 </HTML>
2097 ===== new_alpine_user_greeting ======
2098 <HTML>
2099 <HEAD>
2100 <TITLE>NEW ALPINE USER GREETING</TITLE>
2101 </HEAD>
2102 <BODY>
2103 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2104 <BR>
2105 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2106 Your Alpine configuration file indicates that you may have used Pine before
2107 but not Alpine.
2108 If you are familiar with the way Pine works, you should be comfortable
2109 using Alpine.
2110 Your Pine configuration file is automatically used for Alpine.
2111 The Release Notes may be viewed by pressing 
2112 &quot;R&quot; now or while in the MAIN MENU.
2114 <!--chtml if pinemode="phone_home"-->
2115 SPECIAL REQUEST:
2116 This software was originally created and maintained as a public
2117 service by the University of Washington until 2009; updates are made 
2118 available as a public service of the Alpine community. It is always 
2119 helpful to have an idea of how many users are using Alpine. Are you 
2120 willing to be counted as an Alpine user? Pressing 
2121 <A HREF="X-Alpine-Phone-Home:">Return</A>
2122 will send an anonymous (meaning, your real email address will not be revealed) 
2123 message to the Alpine developers for purposes of tallying.
2125 <!--To Exit this screen and continue your Alpine session press "E".-->
2126 <!--chtml else-->
2127 To Exit this screen and continue your Alpine session press "Return".
2128 <!--chtml endif-->
2129 </BODY>
2130 </HTML>
2131 ===== new_version_greeting ======
2132 <HTML>
2133 <HEAD>
2134 <TITLE>NEW VERSION GREETING</TITLE>
2135 </HEAD>
2136 <BODY>
2137 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2138 <BR>
2139 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
2140 Your Alpine configuration file indicates that you may not have used 
2141 this version of Alpine before.  This version's significant changes are
2142 documented in the Release Notes, which may be viewed by pressing 
2143 &quot;R&quot; now or while in the MAIN MENU.
2145 <!--chtml if pinemode="phone_home"-->
2146 SPECIAL REQUEST:
2147 This software was originally created and maintained as a public
2148 service by the University of Washington until 2009; updates are made 
2149 available as a public service of the Alpine community. It is always 
2150 helpful to have an idea of how many users are using Alpine. Are you 
2151 willing to be counted as an Alpine user? Pressing 
2152 <A HREF="X-Alpine-Phone-Home:">Return</A>
2153 will send an anonymous (meaning, your real email address will not be revealed) 
2154 message to the Alpine developers for purposes of tallying.
2156 <!--To Exit this screen and continue your Alpine session press "E".-->
2157 <!--chtml else-->
2158 To Exit this screen and continue your Alpine session press "Return".
2159 <!--chtml endif-->
2160 </BODY>
2161 </HTML>
2163 ===== main_menu_tx ======
2164 <HTML>
2165 <HEAD>
2166 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
2167 </HEAD>
2168 <BODY>
2169 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
2170 <DIV ALIGN=CENTER>
2171 Version <!--#echo var="ALPINE_VERSION"-->
2172 <!--chtml if pinemode="running"-->
2173 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
2174 <!--chtml endif-->
2175 </DIV>
2176 <CENTER>Copyright 2013-2017 Eduardo Chappa,
2177 <BR>Copyright 2006-2008 University of Washington.
2178 </CENTER>
2181 When you are viewing a help screen, there may be links to
2182 other topics highlighted (in Reverse video) in the text.
2183 Here is an example.
2184 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
2185 highlighted.
2186 If you type carriage return (or V for View Link, see the commands at the
2187 bottom of the screen) you will be taken to a new help screen to view the
2188 Introduction.
2189 The commands at the bottom of the screen should then include
2190 &quot;P Prev Help&quot;.
2191 If you type &quot;P&quot; you will end up back here.
2192 If you type &quot;E&quot; for Exit, you will be back out of help and returned
2193 to the place you were in Alpine when you entered Help.
2194 In this case, you would go back to the MAIN MENU.
2195 There are also other links that are highlighted in bold (or the color used
2196 by your terminal to display bold).
2197 The items after the Introduction in the TABLE OF CONTENTS are all examples
2198 of such links.
2199 In order to view those links, you first have to make the link you want
2200 to view the current link.
2201 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
2202 (see bottom of screen) can do that for you.
2205 <H2>TABLE OF CONTENTS</H2>
2206 <OL>
2207   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
2208   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
2209 <!--chtml if [ -r PINE_INFO_PATH ]-->
2210   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
2211 <!--chtml endif-->
2212   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
2213   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
2214   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
2215   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
2216   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
2217   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
2218   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
2219   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
2220   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
2221   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
2222   <LI> <A HREF="h_mainhelp_folders">Folders</A>
2223   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
2224   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
2225   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
2226   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
2227   <LI> <A HREF="h_mainhelp_roles">Roles</A>
2228   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
2229   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
2230   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
2231   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
2232   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
2233   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
2234   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
2235   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
2236   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
2237 </OL>
2240 &lt;End of help on this topic&gt;
2241 </BODY>
2242 </HTML>
2243 ===== h_mainhelp_intro ======
2244 <HTML>
2245 <HEAD>
2246 <TITLE>Introduction</TITLE>
2247 </HEAD>
2248 <BODY>
2249 <H1>Introduction</H1>
2251 Alpine is an &quot;Alternatively Licensed Program for Internet
2252 News and Email&quot; produced until 2009 by the University of Washington.
2253 It is intended to be an easy-to-use program for
2254 sending, receiving, and filing Internet electronic mail messages and
2255 bulletin board (Netnews/Usenet) messages. Alpine supports the following
2256 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
2257 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
2258 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
2259 Directory Access Protocol).<p>
2261 Although originally designed for inexperienced email users, Alpine has
2262 evolved to support many advanced features.  There are an ever-growing
2263 number of configuration and personal-preference options, though which of
2264 them are available to you is determined by your local system managers. 
2266 <H2>WHAT ALPINE DOES...</H2>
2268 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
2269 allows you to
2270 compose and read messages using Internet mail standards.  (Whether you
2271 can correspond with others on the Internet depends on whether or not your
2272 computer is connected to the Internet.)  Alpine also allows reading and
2273 posting messages on the Internet &quot;net news&quot; system, provided
2274 that your site operates a suitable news server.
2276 <H2>WHAT ALPINE DOES NOT DO...</H2>
2278 A &quot;mail user agent&quot; such as Alpine is just one part of a
2279 messaging system. Here are some things that are <B>not</B> done by Alpine,
2280 but require other programs:<P>
2281 <UL>
2282  <LI> Actual relaying of email... which is done by &quot;message transfer 
2283 agents&quot;.
2284  <LI> Vacation messages... automatically responding to incoming messages
2285  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
2286 email.
2287  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
2288  <LI> List processing... resending one message to a list of recipients.
2289 </UL>
2292 &lt;End of help on this topic&gt;
2293 </BODY>
2294 </HTML>
2296 ===== h_mainhelp_pinehelp ======
2297 <HTML>
2298 <HEAD>
2299 <TITLE>Alpine Help</TITLE>
2300 </HEAD>
2301 <BODY>
2302 <H1>Alpine Help</H1>
2304 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
2305 use will have its own help text, explaining the choices available for that
2306 screen. This general help section, on the other hand, attempts to give an 
2307 overall picture of what Alpine is capable of doing, as well as pointers to 
2308 additional help sections about specific topics.<p>
2310 Much of the help text contains links to further help topics, similar to
2311 how the World Wide Web works.
2312 You may choose a link to view using the &quot;NextLink&quot; and
2313 &quot;PrevLink&quot; commands to change the link that is highlighted.
2314 The &quot;View Link&quot; command will then show you the highlighted link.
2315 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
2316 will return you to where you were before viewing the link, and &quot;Exit Help&quot
2317 will return you to the location in Alpine before you asked for help.
2318 For example, if you are reading this text in Alpine you may return to the
2319 help table of contents with the &quot;Prev Help&quot; command or you may view the
2320 Release notes link in the next paragraph and then return here with
2321 &quot;Prev Help&quot;.
2324 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
2325 on the current Alpine version are also available from the MAIN MENU: Press
2326 <!--chtml if pinemode="function_key"-->
2327 &quot;F9&quot;
2328 <!--chtml else-->
2329 &quot;R&quot;
2330 <!--chtml endif-->
2331 to browse the release notes.  These include changes since the last release,
2332 configuration information, the history of the Alpine
2333 project, credits, and legal notices.
2335 Alpine releases are available via the world wide web at
2337 <CENTER><SAMP><A 
2338 HREF="http://alpine.freeiz.com/alpine/release/">http://alpine.freeiz.com/alpine/release/</A></SAMP
2339 ></CENTER>
2342 If you would like to print <EM>all</EM> of Alpine's internal help text
2343 (not recommended) for a little light bedtime reading, then press
2344 <!--chtml if pinemode="function_key"-->
2345 &quot;F12&quot;
2346 <!--chtml else-->
2347 &quot;Z&quot;
2348 <!--chtml endif-->
2349 now.  (This assumes that the
2350 copy of Alpine you are using has been properly configured for printing
2351 at your site.)
2353 &lt;End of help on this topic&gt;
2354 </BODY>
2355 </HTML>
2356 ===== h_mainhelp_localsupport ======
2357 <HTML>
2358 <HEAD>
2359 <TITLE>Local Support Contacts</TITLE>
2360 </HEAD>
2361 <BODY>
2362 <H1>Local Support Contacts</H1>
2364 <!--chtml if [ -r PINE_INFO_PATH ]-->
2365 <!--#include file="PINE_INFO_PATH"-->
2366 <!--chtml else-->
2367 No Local Support Contacts configured.
2368 <!--chtml endif-->
2371 &lt;End of help on this topic&gt;
2372 </BODY>
2373 </HTML>
2375 ===== h_mainhelp_cmds ======
2376 <HTML>
2377 <HEAD>
2378 <TITLE>Giving Commands in Alpine</TITLE>
2379 </HEAD>
2380 <BODY>
2381 <H1>Giving Commands in Alpine</H1>
2383 Unless configured otherwise
2384 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
2385 the bottom two lines of the screen are always used to list the
2386 commands you can give.  You press the keys that are highlighted to give
2387 the command.  The commands for getting help and going back to the main
2388 menu are always present (except when viewing help as you are now).
2389 <!--chtml if pinemode="function_key"-->
2390 <!--chtml else-->
2392 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
2393 you see at the bottom of any screen. In some cases there are 3 or
2394 even 4 different
2395 sets of keys that can be seen by using the O key. <EM>All commands are 
2396 active</EM>, even if they are not currently showing at the bottom of your 
2397 screen. In other words, you <EM>never</EM> need to press the O key, except to 
2398 remind yourself of the proper key to press to perform an operation.
2400 <H2>Control Key Commands</H2>
2401 When composing mail, and in a few other places, in Alpine you
2402 have to use Control keys. This means pressing the Control key (usually labeled 
2403 &quot;Ctrl&quot;) and the
2404 letter indicated at the same time.  Usually, this is shown with a
2405 &quot;^&quot; in front of the letter.  On some systems, certain control
2406 characters are intercepted before they get to Alpine.  As a work-around,
2407 you can press the ESCAPE key twice followed by the desired key.  For
2408 example, if Ctrl-O (^O) does not work on your system, try typing
2409 &quot;ESC ESC O&quot;.
2410 <!--chtml endif-->
2411 <H2>Paging Up and Down</H2>
2412 The &quot;+&quot; and &quot;-&quot; keys are used for
2413 moving to the next or previous page.  The space bar is a synonym for
2414 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
2415 up as you do in the message composer.  On screens with a WhereIs (search)
2416 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
2417 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
2418 of the message or list.
2420 <H2>Return Key</H2>
2421 The return key is usually a synonym for a frequently used
2422 command.  When viewing a message, there is currently not a default
2423 command, so RETURN does nothing; when in the index, it is synonymous with
2424 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
2425 enclosed in square brackets [] is the same as the return key.
2427 <H2>Control Keys Not Used By Alpine</H2>
2428 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
2429 value, but in places where Alpine is expecting text input, e.g. in the composer or 
2430 at prompts for file/folder names, control keys must be used for editing and 
2431 navigation functions.
2434 Alpine has used nearly all the control keys available.  There are, however,
2435 certain control keys that are reserved by other programs or for technical
2436 reasons.  Alpine does not use any of these keys:
2437 <DL>
2438  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
2439  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
2440  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
2441 </DL>
2443 Note: Ctrl-S and Ctrl-Q can be subject to 
2444 <A HREF="h_special_xon_xoff">special handling</A>.
2446 In addition, while the ESC key alone is not used for command input,
2447 Alpine will recognize two consecutive ESC key presses followed by a letter 
2448 key as a substitute for control key input.  For example, the control key
2449 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
2450 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
2451 This is useful if the communication program you are using
2452 (e.g. Telnet) has its own, conflicting, idea of what certain control
2453 characters mean.
2456 <H2>Repainting the Screen</H2>
2457 Sometimes what is displayed on the screen will be
2458 incorrect due to noise on the phone line or other causes and you will want
2459 to repaint the whole screen to make it correct.  You can use the Ctrl-L
2460 command to do this.  It never hurts to do it when in doubt.
2463 &lt;End of help on this topic&gt;
2464 </BODY>
2465 </HTML>
2466 ===== h_mainhelp_status ======
2467 <HTML>
2468 <HEAD>
2469 <TITLE>Titlebar Line</TITLE>
2470 </HEAD>
2471 <BODY>
2472 <H1>Titlebar Line</H1>
2474 The top line of the screen is Alpine's titlebar line.  It will always display
2475 the current version of Alpine and will also convey information about the
2476 status of the program.  This is where you look to find out what
2477 collection, folder and message number is active and where you are in Alpine.
2480 If the titlebar line says &quot;READONLY&quot; it means that the open folder
2481 (typically your INBOX) is &quot;locked&quot; by another mail session --
2482 most likely a more recent session of Alpine has taken the INBOX lock.
2485 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
2486 access a
2487 folder on a remote mail server, and for some reason, communication with
2488 the mail server has either been lost, or never successfully established.
2489 This can be a result of trying to open a non-existent folder, or one
2490 stored on an invalid or non-operational server, or it can mean that Alpine
2491 has been suspended for more that 30 minutes while accessing a remote mail
2492 server.
2495 &lt;End of help on this topic&gt;
2496 </BODY>
2497 </HTML>
2498 ===== h_mainhelp_mainmenu ======
2499 <HTML>
2500 <HEAD>
2501 <TITLE>Main Menu</TITLE>
2502 </HEAD>
2503 <BODY>
2504 <H1>Main Menu</H1>
2506 The Main Menu lists Alpine's main options.
2507 The key or keys you must type to enter your
2508 choice are to the left of each option or command name.
2509 You can type either uppercase or lowercase letters,
2510 and you should not press &lt;Return&gt; after typing the
2511 letter (unless you are specifically asking for the default,
2512 highlighted command).
2515 From the Main Menu you can choose to read online help, write (compose) and 
2516 send a message, look at an index of your mail messages, open or maintain
2517 your mail folders, update your address book, configure Alpine, and quit Alpine.
2518 There are additional options listed at
2519 the bottom of the screen as well.
2522 The Help command usually returns context-sensitive help information.
2523 However, in the Main Menu you get the most general help, which includes
2524 a Table of Contents.
2525 The last entry in the Table of Contents is an Index of help topics,
2526 so this is a good place to go if you are having trouble finding how
2527 to do something.
2529 <H2>Main Menu Commands</H2>
2530 The Alpine main menu lists the most common Alpine functions. A <a
2531 href="h_main_menu_commands">full list of these
2532 commands</a> and what they do is available.
2534 &lt;End of help on this topic&gt;
2535 </BODY>
2536 </HTML>
2537 ===== h_mainhelp_abooks ======
2538 <HTML>
2539 <HEAD>
2540 <TITLE>Address Books</TITLE>
2541 </HEAD>
2542 <BODY>
2543 <H1>Address Books</H1>
2546 As you use email, you can build a list of your regular email correspondents 
2547 in your Alpine
2548 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
2549 screen. Your
2550 personal address book will be highlighted. Press &lt;Return&gt; to view it.
2551 You can use the address book to store email addresses for individuals or
2552 groups, to create easily
2553 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
2554 address when you are composing a message.
2556 There are two ways to add addresses to your address book: you can add them 
2557 manually or take them from messages (by pressing T to access the Take command). 
2558 With either method, you specify nicknames for your correspondents. A single 
2559 address book entry (or nickname) can point to just one email address, or, it can
2560 point to more than one. When it points to more than one, it is called a 
2561 distribution list. Each distribution list has a nickname, a full name, and a 
2562 list of addresses. These
2563 addresses may be actual addresses, other nicknames in your address book, or 
2564 other
2565 distribution lists.
2568 Additional information is available in Alpine's online help:
2569 <ul>
2570   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
2571 </ul>
2573 &lt;End of help on this topic&gt;
2574 </BODY>
2575 </HTML>
2576 ===== h_mainhelp_ldap ======
2577 <HTML>
2578 <HEAD>
2579 <TITLE>LDAP</TITLE>
2580 </HEAD>
2581 <BODY>
2582 <H1>LDAP</H1>
2584 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
2585 an organization's shared
2586 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
2587 large address
2588 books, rather like the White Pages provided by the phone company. As an Alpine 
2589 user, it is not
2590 necessary to know much about how this works, only how to use it and how to 
2591 configure
2594 More information on configuring LDAP is available in Alpine's online help:
2595 <ul>
2596   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
2597 </ul>
2599 Additional help on using LDAP in Alpine is also available:
2600 <ul>
2601   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
2602 </ul>
2604 &lt;End of help on this topic&gt;
2605 </BODY>
2606 </HTML>
2607 ===== h_mainhelp_index ======
2608 <HTML>
2609 <HEAD>
2610 <TITLE>Index of Messages</TITLE>
2611 </HEAD>
2612 <BODY>
2613 <H1>Index of Messages</H1>
2615 In Alpine's message index, the selected message is highlighted. The first 
2616 column on the left is blank, shows a &quot;+&quot; if the message was
2617 sent directly to you (i.e., it is not a
2618 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
2620 The second column may be blank, or it may contain:
2621 <ul>
2622   <li>"N" if the message is new (unread), </li>
2623   <li>"A" if you have answered the message (using the Reply command), </li>
2624   <li>"D" if you have marked the message for deletion.</li>
2625 </ul>
2628 Note: If you answer a message as well as mark it deleted (in either order), 
2629 you will only see the &quot;D&quot;.
2632 The rest of the columns in the message line show you the message
2633 number, date sent, sender, size, and subject. For details, press ? (Help).  
2634 The behavior and appearance of the Index screen is highly configurable.
2635 In the Setup/Config screen search (with the WhereIs command) for options
2636 that contain the words &quot;index&quot; or &quot;thread&quot; to see
2637 many of the configuration possibilities.
2638 In particular, the
2639 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
2640 option may be used to configure the look of the standard MESSAGE INDEX lines
2641 in many different ways.
2642 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
2643 read the help text there for more information.
2645 Most of the commands you need to handle your messages are visible at the
2646 bottom of the screen, and you can press O (OTHER CMDS) to see additional
2647 commands that are available.
2648 You do not need to see these &quot;other commands&quot;
2649 on the screen to use them. That is, you never need to press O as a prefix
2650 for any other command.
2653 Additional information is available in Alpine's online help:
2654 <ul>
2655   <li><a href="h_mail_index">Message Index Commands</a></li>
2656 </ul>
2658 &lt;End of help on this topic&gt;
2659 </BODY>
2660 </HTML>
2661 ===== h_mainhelp_reading ======
2662 <HTML>
2663 <HEAD>
2664 <TITLE>Reading Messages</TITLE>
2665 </HEAD>
2666 <BODY>
2667 <H1>Reading Messages</H1>
2669 The message text screen shows you the text of the message along with
2670 its header. If a message has attachments, those will be listed (but not
2671 displayed) also.  The titlebar line displays information about the currently
2672 open message, folder and collection.  You see the name of the collection
2673 (if there is one) in angle brackets, then the name of the folder, then the
2674 message number and finally the position within the current message (in
2675 percent). If the message is marked for deletion
2676 &quot;DEL&quot; will appear in the
2677 upper right as well.
2680 As with every Alpine screen, the bottom two lines show you the commands 
2681 available.
2683 <P>Additional information is available in Alpine's online help:
2684 <ul>
2685   <li><a href="h_mail_view">Message Text Screen</a></li>
2686   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
2687   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
2688 </ul>
2690 &lt;End of help on this topic&gt;
2691 </BODY>
2692 </HTML>
2693 ===== h_mainhelp_composing ======
2694 <HTML>
2695 <HEAD>
2696 <TITLE>Composing Messages</TITLE>
2697 </HEAD>
2698 <BODY>
2699 <H1>Composing Messages</H1>
2701 To write a message, press C (Compose). You see the Compose Message
2702 screen, which is divided into two parts: the header area and the message
2703 text area. The header area is where information on the recipient (the To:
2704 field) and the subject line go, while the message text area contains the
2705 actual text of the email message. Different commands are available to you
2706 when your cursor is in different areas on this screen. To see additional
2707 help on commands in either the message text or header area, type
2708 <Control>G (Get help).
2711 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
2712 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
2714 <P>The following information from Alpine's online help may prove useful:
2715 <ul>
2716   <li><a href="h_composer_to">Message Header Commands</a></li>
2717   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
2718   <li><a href="h_composer">Composer Commands</a></li>
2719   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
2720   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
2721   <li><a href="h_compose_send">Send Command</a></li>
2722   <li><a href="h_compose_spell">Spell Check Command</a></li>
2723 </ul>
2725 &lt;End of help on this topic&gt;
2726 </BODY>
2727 </HTML>
2728 ===== h_mainhelp_collections ======
2729 <HTML>
2730 <HEAD>
2731 <TITLE>Collection Lists</TITLE>
2732 </HEAD>
2733 <BODY>
2734 <H1>Collection Lists</H1>
2736 Collection lists are Alpine's way of organizing groups of folders. Each
2737 "collection" can reside on a different server, for example, and contain a
2738 different group of mail folders.
2741 For more information on this, see:
2742 <ul>
2743   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
2744 </ul>
2746 Additional information relating to collection lists is also available in 
2747 Alpine's online
2748 help:
2749 <ul>
2750   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
2751   <li><a href="h_collection_screen">Collection List Screen</a></li>
2752 </ul>
2754 &lt;End of help on this topic&gt;
2755 </BODY>
2756 </HTML>
2757 ===== h_mainhelp_folders ======
2758 <HTML>
2759 <HEAD>
2760 <TITLE>Folders</TITLE>
2761 </HEAD>
2762 <BODY>
2763 <H1>Folders</H1>
2765 Messages can quickly accumulate in your INBOX folder. If you use email
2766 often, you soon could have hundreds. You need to delete messages you do
2767 not want, and you can use folders to organize messages you wish to save. A
2768 folder is a collection of one or more messages that are stored (just like
2769 the messages in your INBOX) so you can access and manage them.
2772 You can organize your email messages into different folders by topic,
2773 correspondent, date, or any other category that is meaningful to you. You
2774 can create your own folders, and Alpine automatically provides three:
2775 <ul>
2776   <li>The INBOX folder: messages sent to you are listed in this folder.
2777       When you first start Alpine and go to the Message Index screen, you are
2778 looking at the list of messages in your INBOX folder. Every incoming
2779 message remains in your INBOX until you delete it or save it in another
2780 folder. </li>
2781   <li>The sent-mail folder: copies of messages you send are stored in this 
2782 folder. This is
2783 convenient if you cannot remember whether you actually sent a message and want 
2784 to check, or
2785 if you want to send a message again.</li>
2786   <li>The saved-messages folder: copies of messages you save are stored in this 
2787 folder
2788 unless you choose to save them to other folders you create yourself.</li>
2789 </ul>
2792 More information about folders is available in Alpine's online help:
2793 <ul>
2794   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
2795   <li><a href="h_folder_maint">Help for Folder List</a></li>
2796   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
2797   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
2798 Explained</a></li>
2799   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
2800 </ul>
2802 &lt;End of help on this topic&gt;
2803 </BODY>
2804 </HTML>
2805 ===== h_mainhelp_color ======
2806 <HTML>
2807 <HEAD>
2808 <TITLE>Color</TITLE>
2809 </HEAD>
2810 <BODY>
2811 <H1>Color</H1>
2813 If the terminal emulator you are using is capable of displaying color or if
2814 you are using PC-Alpine, then it is possible to set up Alpine so that various
2815 parts of the display will be shown in colors you configure. This is done
2816 using the Setup Color screen, available from the MAIN MENU by selecting
2817 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
2818 stands for Config in this context).
2821 For example, you may color things like the titlebar, the current item,
2822 the keymenu, and the status messages.
2823 You may also color lines in the index, and headers and quoted text in the
2824 MESSAGE TEXT screen.
2825 You use the Color Setup screen for configuring most of this, but you must
2826 use the IndexColor setup for coloring whole index lines.
2827 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
2830 The following entries in Alpine's online help provide additional information 
2831 about how to use color:
2832 <UL>
2833   <LI> <A HREF="h_color_setup">Color Setup screen</A>
2834   <LI> <A HREF="h_rules_incols">Index Line Color</A>
2835   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
2836   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
2837 </UL>
2839 &lt;End of help on this topic&gt;
2840 </BODY>
2841 </HTML>
2842 ===== h_mainhelp_mouse ======
2843 <HTML>
2844 <HEAD>
2845 <TITLE>Using a Mouse</TITLE>
2846 </HEAD>
2847 <BODY>
2848 <H1>Using a Mouse</H1>
2850 If you are using PC-Alpine mouse support is turned on automatically.
2851 If you are using UNIX Alpine within an X terminal window or within
2852 a terminal emulator that supports an xterm-style mouse, then you may
2853 turn on support for the mouse with the feature
2854 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
2855 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
2857 PC-Alpine offers considerable mouse support.  You can view what is
2858 &quot;clickable&quot; by dragging your mouse over any screen; when the
2859 arrow cursor changes into a hand, you found something. Mouse-click
2860 possibilities include navigating between screens and folders and
2861 double-clicking on hyperlinks to open your Web browser.
2862 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
2863 screen.  Examples of right-click options include &quot;copy&quot; after
2864 selecting text to copy and &quot;View in New Window&quot; when you click
2865 on a particular message in the Message Index. The menu choices available
2866 to you will vary based upon what screen is open, where on the screen your
2867 cursor is located, and even what action you have already taken.
2868 Within a folder, you may set the &quot;Important&quot; flag on any
2869 message.
2871 X terminal mouse support is more limited but still quite powerful.
2872 As with PC-Alpine, clicking on any of the commands in the keymenu at
2873 the bottom of the screen will execute that command as if you typed it.
2874 Double-clicking on a link, for example the link to the
2875 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
2876 will take you to that link.
2877 Double-clicking on an index line will view the message, and so on.
2879 &lt;End of help on this topic&gt;
2880 </BODY>
2881 </HTML>
2882 ===== h_mainhelp_keywords ======
2883 <HTML>
2884 <HEAD>
2885 <TITLE>Keywords</TITLE>
2886 </HEAD>
2887 <BODY>
2888 <H1>Keywords</H1>
2890 Within a folder, you may set the &quot;Important&quot; flag on any
2891 message.
2892 This doesn't have any system-defined meaning and is only called
2893 the Important flag because many users use it to signify that a message
2894 is important to them in some way.
2896 You may also define your own set of keywords.
2897 You might know these as user defined flags or as labels.
2898 These are similar to the Important flag but you choose the names for yourself.
2900 Alpine will only display keywords that
2901 have been added by you in the Flag Details screen or
2902 that have been configured by you using the Setup/Config option
2903 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
2904 Keywords set by other means (for example, by another email client) will not
2905 show up in Alpine unless you configure Alpine to know about them.
2906 They will show up in the Flag Details screen, but will not show up, for example,
2907 in the index line.
2910 The following entries in Alpine's online help provide additional information 
2911 about how to use keywords:
2912 <ul>
2913   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
2914   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
2915 </ul>
2917 &lt;End of help on this topic&gt;
2918 </BODY>
2919 </HTML>
2920 ===== h_mainhelp_roles ======
2921 <HTML>
2922 <HEAD>
2923 <TITLE>Roles</TITLE>
2924 </HEAD>
2925 <BODY>
2926 <H1>Roles</H1>
2928 You may play different roles depending on who you are replying to. For
2929 example, if you are replying to a message addressed to help-desk you may
2930 be acting as a Help Desk Worker. That role may require that you use a
2931 different return address and/or a different signature.
2934 To configure roles, go to the MAIN MENU and use the Setup command
2935 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
2936 The following entries in Alpine's online help provide additional information 
2937 about how to
2938 use roles:
2939 <ul>
2940   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
2941   <li><a href="h_role_select">Roles Screen</a></li>
2942 </ul>
2944 &lt;End of help on this topic&gt;
2945 </BODY>
2946 </HTML>
2947 ===== h_mainhelp_filtering ======
2948 <HTML>
2949 <HEAD>
2950 <TITLE>Filtering</TITLE>
2951 </HEAD>
2952 <BODY>
2953 <H1>Filtering</H1>
2955 The software that actually delivers mail (the stuff that happens
2956 before Alpine is involved) for you is in a better position to do mail filtering
2957 than Alpine itself.
2958 If possible, you may want to look into using that sort of mail filtering to
2959 deliver mail to different folders, delete it, or forward it.
2960 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
2963 Filtering is a way to automatically move certain messages from one folder
2964 to another or to automatically delete messages.
2965 You may also automatically set the state (Important, New, Deleted, Answered) of messages
2966 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
2967 Alpine doesn't have the ability to forward mail to another address or
2968 to deliver vacation messages.
2971 To configure filtering, go to the MAIN MENU and use the Setup command
2972 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
2973 The following entries in Alpine's online help provide additional information 
2974 about how to use filtering:
2975 <UL>
2976   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
2977 </UL>
2979 &lt;End of help on this topic&gt;
2980 </BODY>
2981 </HTML>
2982 ===== h_mainhelp_patterns ======
2983 <HTML>
2984 <HEAD>
2985 <TITLE>Patterns</TITLE>
2986 </HEAD>
2987 <BODY>
2988 <H1>Patterns</H1>
2990 Patterns are used with Roles, Filtering, Index Coloring,
2991 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
2992 The following entries in Alpine's online help provide information 
2993 about using Patterns:
2994 <UL>
2995   <LI> <A HREF="h_rule_patterns">Patterns</A>
2996 </UL>
2998 &lt;End of help on this topic&gt;
2999 </BODY>
3000 </HTML>
3001 ===== h_mainhelp_cmdlineopts ======
3002 <HTML>
3003 <HEAD>
3004 <TITLE>Command Line Options</TITLE>
3005 </HEAD>
3006 <BODY>
3007 <H1>Command Line Options</H1>
3009 Alpine accepts a number of command line arguments, allowing you, for
3010 example, to start Alpine and immediately access a particular folder.
3011 Many of these arguments overlap with options in the Alpine configuration file.
3012 If there is a difference, then an option set on the command line takes
3013 precedence.
3014 Alpine expects command line arguments (other than addresses) to be
3015 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
3016 A <a href="h_command_line_options">full list</a> of command line
3017 possibilities is available.
3019 &lt;End of help on this topic&gt;
3020 </BODY>
3021 </HTML>
3022 ===== h_mainhelp_config ======
3023 <HTML>
3024 <HEAD>
3025 <TITLE>Alpine Configuration</TITLE>
3026 </HEAD>
3027 <BODY>
3028 <H1>Alpine Configuration</H1>
3030 Unless it has been administratively disabled, the Setup command on the
3031 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
3032 The possible subcommands are for general Configuration settings,
3033 Printer settings, Changing your Password, Signature setup,
3034 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
3035 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
3036 and Color configuration.
3037 In particular, the &quot;Config&quot; subcommand has many features you may
3038 set or unset and many other configuration variables that may be set to change
3039 the way Alpine works.
3040 Every one of the hundreds of options available in that configuration settings
3041 screen has help text associated with it.
3042 You may read that text by moving the cursor to highlight the option and then
3043 typing the Help command.
3045 These settings are stored in your personal
3046 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
3047 <A HREF="h_config_remote_config">remotely</A>),
3048 but on shared systems these settings
3049 may be over-ridden by a system-wide control file (due to local site
3050 security or support policies).  A global pine configuration file can also
3051 be used to set default values for all Alpine users on a particular system.
3052 Power users may be interested in splitting their personal configuration
3053 data into two pieces, a generic piece and
3054 <A HREF="h_config_exceptions">exceptions</A> which apply to
3055 a particular platform.
3056 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
3057 General Alpine configuration information can be found
3058 <A HREF="h_news_config">here</A>.
3060 &lt;End of help on this topic&gt;
3061 </BODY>
3062 </HTML>
3063 ===== h_mainhelp_aggops ======
3064 <HTML>
3065 <HEAD>
3066 <TITLE>Aggregate Operations</TITLE>
3067 </HEAD>
3068 <BODY>
3069 <H1>Aggregate Operations</H1>
3071 When you are in the MESSAGE INDEX, the available commands
3072 (for example, Delete, Undelete, Save, Reply, and so on)
3073 normally act on a single message.
3074 So, for example, if you press the Delete command, the currently highlighted
3075 message is marked Deleted.
3076 These commands that normally act on a single message may be applied to
3077 several messages at once instead.
3079 By default this feature is turned on, but it could be administratively turned
3080 off to reduce complexity.
3081 The feature
3082 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
3083 in the Setup/Config screen is used to turn it off or on.
3084 When this feature is turned on, the four commands &quot;Select&quot;,
3085 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
3086 are available.
3087 The two selection commands allow you to mark a set of
3088 messages as being &quot;selected&quot;.
3089 The &quot;ZoomMode&quot; command will toggle between
3090 displaying only the selected messages and displaying all the messages.
3091 The &quot;Apply&quot; command allows you to
3092 apply one of the regular MESSAGE INDEX commands to all of the selected
3093 messages instead of to only the highlighted message.
3095 An example aggregate operation would be to catch up when reading
3096 a news group.
3097 That is, get rid of all the messages in the news group so that you can
3098 start fresh.
3099 The easiest way to do this in Alpine is to use aggregate operations.
3100 You want to Delete all of the messages in the group.
3101 You could start at the top and type &quot;D&quot; once for every message.
3102 A much faster method is to first Select all of the messages in the group,
3103 and then Delete all of them.
3104 This would take four keystrokes:
3106 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
3107 <BR>
3108 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
3110 Another use of Select is to use it for searching for a particular message
3111 or set of messages in a large folder.
3112 You may know that the message was From a certain user.
3113 You could select all messages from that user to start, and use Zoom to
3114 look at only those messages.
3115 If there were still too many messages to look at you could Narrow the
3116 set of messages further by selecting from all of those messages only
3117 the ones that were after a certain date, or contained a particular phrase
3118 in the Subject, or were too a particular address, and so on.
3119 That may be the end of what you are doing, or you may want to use Apply to
3120 Save or Forward or Print all of the selected messages.
3122 Some related help topics are
3123 <UL>
3124 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
3125 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
3126 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
3127 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
3128 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
3129 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
3130 </UL>
3132 &lt;End of help on this topic&gt;
3133 </BODY>
3134 </HTML>
3135 ===== h_mainhelp_readingnews ======
3136 <HTML>
3137 <HEAD>
3138 <TITLE>Reading News</TITLE>
3139 </HEAD>
3140 <BODY>
3141 <H1>Reading News</H1>
3143 <H2>Background</H2>
3144 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
3145 commands as for mail. Similar to mailing lists but existing on a larger scale, 
3146 Usenet newsgroups allow groups of people with common interests to discuss 
3147 particular topics. You might find newsgroups related to your career, or you 
3148 might wish to check out the online discussion among the fans of your favorite 
3149 television show. 
3151 <H2>Configuring Alpine for Reading News</H2>
3152 Alpine often arrives
3153 pre-configured by your system administrator to automatically access the
3154 newsgroups offered by your organization, Internet Service Provider, or
3155 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
3156 need additional details on <a href="h_configuring_news">how to
3157 configure Alpine to read news</a>.
3159 <H2>Accessing Newsgroups</H2>
3160 The first step in reading news is to access the newsgroups collections
3161 screen from Alpine. If everything is configured properly, you should be able
3162 to do this by first typing L (folder List), then selecting the folder
3163 collection listed as "News." The actual name of this collection may differ
3164 from system to system.
3166 <H2>Subscribing to Newsgroups</H2>
3168 Once you have accessed the news collection, you need to subscribe to a
3169 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
3170 will keep a record of the newsgroups in which you are interested and which
3171 articles in those newsgroups have been read.
3173 <H2>Using Newsgroups</H2> 
3174 Alpine uses the similar commands to read news as to read mail. For example,
3175 the D command marks messages as Deleted (or "Dismissed," if you prefer),
3176 and the R command Replies to a news posting. Basically, Alpine allows you to
3177 read news as if it were mail, so you don't need to change the way you
3178 interact with Alpine.
3180 There is also additional Alpine help available on 
3181 <A HREF="h_reading_news">how to use Alpine to read news</A>.
3183 &lt;End of help on this topic&gt;
3184 </BODY>
3185 </HTML>
3186 ===== h_mainhelp_securing ======
3187 <HTML>
3188 <HEAD>
3189 <TITLE>Securing your Alpine Session</TITLE>
3190 </HEAD>
3191 <BODY>
3192 <H1>Securing your Alpine Session</H1>
3194 By default, Alpine will attempt to connect to an IMAP server on the normal
3195 IMAP service port (143).
3196 If the Alpine you are using has been built to
3197 support &quot;Transport Layer Security&quot; (TLS)
3198 and &quot;Secure Sockets Layer&quot; (SSL) 
3199 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
3200 and the server offers the STARTTLS capability, then a secure (encrypted)
3201 session will be established.
3203 When you are connected to a remote folder the titlebar will contain a plus sign
3204 in the far right column if the connection is encrypted using TLS or SSL.
3205 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
3206 if the connection is encrypted.
3208 <H2>More Information on Alpine with SSL and TLS</H2>
3209 <UL>
3210 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
3211 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
3212 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
3213 <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>
3214 </UL>
3215 <H2>Here are some other security-related features and options</H2>
3217 <UL>
3218 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
3219 <LI> <A HREF="h_config_disable_password_file_saving"><!--#echo var="FEAT_disable-password-file-saving"--></A> Disable password file saving</LI>
3220 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
3221 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
3222 </UL>
3224 &lt;End of help on this topic&gt;
3225 </BODY>
3226 </HTML>
3227 ===== h_mainhelp_problems ======
3228 <HTML>
3229 <HEAD>
3230 <TITLE>Reporting Problems</TITLE>
3231 </HEAD>
3232 <BODY>
3233 <H1>Reporting Problems</H1>
3235 We ask that you first read the relevant help screens and then seek
3236 assistance from your own local support staff.  Once you are sure that your
3237 difficulty is not a local configuration problem, you might look at the
3238 help section explaining where to look for
3239 <A HREF="h_finding_help">more information</A> and where to 
3240 get assistance.
3243 <ADDRESS>
3244    Eduardo Chappa &lt;chappa@gmx.com&gt;
3245 </ADDRESS>
3248 &lt;End of help on this topic&gt;
3249 </BODY>
3250 </HTML>
3251 ===== h_main_menu_commands ======
3252 <HTML>
3253 <HEAD>
3254 <TITLE>MAIN MENU COMMANDS</TITLE>
3255 </HEAD>
3256 <BODY>
3257 <H1>MAIN MENU COMMANDS</H1>
3259 <!--chtml if pinemode="function_key"-->
3260 &nbsp;Available&nbsp;Commands&nbsp;--
3261 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
3262 &nbsp;------------------------------
3263 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
3264 ----------<BR>
3265 &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>
3266 &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>
3267 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
3268 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
3269 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
3270 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
3271 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
3272 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
3273 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3274 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3275 &nbsp;F7&nbsp;&nbsp;<A 
3276 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
3277 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3278 &nbsp;F8&nbsp;&nbsp;<A 
3279 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3280 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
3281 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 
3282 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
3283 &nbsp;F10&nbsp;<A 
3284 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 
3285 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
3286 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3287 &nbsp;F11&nbsp;<A 
3288 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3289 <!--chtml else-->
3290 &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>
3291 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
3292 &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>
3293 &nbsp;C&nbsp;&nbsp;<A 
3294 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>
3295 &nbsp;I&nbsp;&nbsp;<A 
3296 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>
3297 &nbsp;L&nbsp;&nbsp;<A 
3298 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>
3299 &nbsp;A&nbsp;&nbsp;<A 
3300 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
3301 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
3302 &nbsp;S&nbsp;&nbsp;<A 
3303 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 
3304 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3305 &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>
3306 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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 
3307 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3308 <!--chtml endif-->
3311 NOTE:
3312 <OL>
3313  <LI>For help on a particular command, highlight the bold text associated
3314 with it above and hit Return.
3315  <LI> The availability of certain commands (e.g. some of the options under
3316 SETUP) is determined by Alpine configuration files and system capabilities.
3317 At some sites, certain commands may not be available due to security or
3318 support concerns.
3319 </OL>
3321 &lt;End of help on this topic&gt;
3322 </BODY>
3323 </HTML>
3325 ===== h_command_line_options ======
3326 <HTML>
3327 <HEAD>
3328 <TITLE>COMMAND LINE OPTIONS</TITLE>
3329 </HEAD>
3330 <BODY>
3331 <H1>COMMAND LINE OPTIONS</H1>
3332 Possible starting arguments for Alpine:
3334 <DL COMPACT>
3336 <DT> <EM>[addresses]</EM>
3338 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
3339 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
3340 <EM>Alpine</EM> will startup in
3341 the composer with a message started to the addresses specified.
3342 Once the message is sent, the <EM>Alpine</EM> session closes.
3343 Standard input redirection is allowed.
3344 Separate multiple addresses with a space between them.
3345 Addresses are placed in the &quot;To&quot; field only.
3348 <DT> &lt; <EM>file</EM>
3350 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
3351 into the body of the message.
3352 Once the message is sent, the <EM>Alpine</EM> session closes. 
3355 <DT> -attach <EM>file</EM>
3357 <DD> Go directly into composer with given file attached.
3360 <DT> -attachlist <EM>file-list</EM>
3362 <DD> Go directly into composer with given files attached.
3363 This must be the last option on the command line.
3366 <DT> -attach_and_delete <EM>file</EM>
3368 <DD> Go directly into composer with given file attached, delete when finished.
3371 <DT> -aux <EM>local_directory</EM>
3373 <DD> <EM>PC-Alpine</EM> only.
3374 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
3375 files, like debug files, address books, and signature files.  The pinerc may 
3376 be local or remote.
3379 <DT> -bail
3381 <DD> If the personal configuration file doesn't already exist, exit.
3382 This might be useful if the configuration file is accessed using some
3383 remote filesystem protocol. If the remote mount is missing this will cause
3384 <EM>Alpine</EM> to quit instead of creating a new pinerc.
3387 <DT> -c <EM>n</EM>
3389 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
3390 This is used when there are multiple folder collections (contexts) and you 
3391 want to open a folder not in the primary collection.
3394 <DT> -conf
3396 <DD> Configuration: Prints a sample system configuration file to the
3397 screen or standard output. To generate an initial system configuration 
3398 file, execute
3400 <PRE><CODE>
3401                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
3402 </CODE></PRE>
3405 To generate a system configuration file using settings from an old
3406 system configuration file, execute
3408 <PRE><CODE>
3409                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
3410 </CODE></PRE>
3412 A system configuration file is not required.
3415 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
3417 <DD> Copy an address book file to a remote address book folder.
3418 If the remote folder doesn't exist, it will be created.
3419 If it exists but the first message in the folder isn't a remote address
3420 book header message, the copy will be aborted.
3421 This flag will not usually be used by a user.
3422 Instead, the user will create a remote address book from within <EM>Alpine</EM>
3423 and copy entries from the local address book by using aggregate Save in
3424 the address book screen.
3427 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
3429 <DD> Copy a pinerc configuration file to a remote pinerc folder.
3430 If the remote folder doesn't exist, it will be created.
3431 If it exists but the first message in the folder isn't a remote pinerc
3432 header message, the copy will be aborted.
3433 This flag may be useful to users who already have a local pinerc file and
3434 would like to convert it to a remote pinerc folder and use that instead.
3435 This gives a way to bootstrap that conversion without having to manually
3436 reset all of the variables in the remote pinerc folder.
3439 <DT> -d <EM>debug-level</EM>
3441 <DD> Debug Level:  Sets the level of debugging information written by
3442 <EM>Alpine</EM>.
3443 <EM>debug-level</EM> can be set to any integer 0-9.
3444 A debug level of 0 turns off debugging for the session.
3445 (Actually there are some levels higher than 9, but you probably don't
3446 want to see them.)
3449 <DT> -d <EM>keywords</EM>
3451 <DD> You may use a more detailed version of the debugging flag to set
3452 the debug level in separate parts of <EM>Alpine</EM>.
3453 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
3454 verbose=0..9.
3455 <EM>Flush</EM> causes debugging information to be flushed immediately to
3456 the debug file as it is written.
3457 <EM>Verbose</EM> is the general debugging verbosity level.
3458 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
3459 is useful when you are trying to figure out what is responsible for delays.
3460 <EM>Numfiles</EM> sets the number of debug files saved.
3461 <EM>Imap</EM> sets the debug level for the debugging statements related
3462 to the conversation with the IMAP server, and more generally, for the
3463 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
3464 <EM>Tcp</EM> turns on some TCP/IP debugging.
3467 <DT> -f <EM>folder</EM>
3469 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
3470 of the standard INBOX.
3473 <DT> -F <EM>file</EM>
3475 <DD> Open named text file for viewing and forwarding.
3478 <DT> -h
3480 <DD> Help:  Prints the list of available command-line arguments to the
3481 screen.
3484 <DT> -i
3486 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
3487 screen instead of the MAIN MENU.
3490 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
3493 <DT> -I <EM>a,b,c,...</EM>
3495 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
3496 sequence of commands upon startup.
3497 This allows users to get <EM>Alpine</EM> to start in any
3498 of its menus/screens.
3499 You cannot include any input to the composer in the initial keystrokes.
3500 The key &lt;Return&gt; is represented by a ``CR'' in
3501 the keystroke list; the spacebar is designated by the letters ``SPACE''.
3502 Control keys are two character sequences beginning with ``^'', such as
3503 ``^I''.
3504 A tab character is ``TAB''.
3505 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
3506 ``DOWN'', ``LEFT'', and ``RIGHT''.
3507 A restriction is that you can't mix function keys and character keys in this
3508 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
3509 A user can always use only <EM>character</EM> keys in the startup list even
3510 if he or she is using <EM>function</EM> keys normally, or vice versa.
3511 If an element in this list is a string of characters surrounded by double
3512 quotes (&quot;) then it will be expanded into the individual characters in
3513 the string, excluding the double quotes.
3516 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
3519 <DT> -install
3521 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
3522 some basic information to help with getting properly set up.
3525 <DT> -k
3527 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
3528 the input of commands to be function-keys.
3529 Otherwise, commands are linked to the regular character keys.
3532 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
3533 <EM>Feature-List</EM>.
3536 <DT> -n <EM>n</EM>
3538 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
3539 FOLDER INDEX screen with the current message being the specified
3540 message number.
3543 <DT> -nosplash
3545 <DD> <EM>PC-Alpine</EM> only.
3546 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
3547 This may be helpful for certain troubleshooting or terminal server scenarios.
3550 <DT> -o <EM>folder</EM>
3552 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
3555 <DT> -p <EM>pinerc</EM>
3557 <DD> Uses the named file as the personal configuration file instead of
3558 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
3559 Alpinerc may be either a local file or a remote configuration folder.
3562 <DT> -P <EM>pinerc</EM>
3564 <DD> Uses the named file as the system wide configuration file instead of
3565 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
3566 Alpinerc may be either a local file or a remote configuration folder.
3569 <DT> -passfile <EM>passfile</EM>
3571 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
3572 This should be a fully-qualified filename.
3575 <DT> -pinerc <EM>file</EM>
3577 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
3578 settings of variables that the user has made.
3579 Use <EM>file</EM> set to ``-'' to make output go to standard out.
3582 <DT> -r
3584 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
3585 <EM>Alpine</EM> in restricted mode can only send email to itself.
3586 Save and export are limited.
3589 <DT> -registry <EM>cmd</EM>
3591 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
3592 <EM>Alpine</EM>'s registry entries.
3593 Possible values for <EM>cmd</EM> are set, clear, and dump.
3594 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
3595 entries according to its current settings.
3596 <EM>Clear</EM> will clear the registry values.
3597 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
3598 <EM>Dump</EM> will display the values of current registry settings.
3599 Note that the dump command is currently disabled.
3600 Without the -registry option, <EM>PC-Alpine</EM> will write values into
3601 the registry only if there currently aren't any values set.
3604 <DT> -sort <EM>key</EM>
3606 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
3607 FOLDER INDEX screen.
3608 <EM>Key</EM> can have the following values: 
3609 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
3610 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
3611 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
3612 The default value is &quot;arrival&quot;.
3613 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
3616 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
3619 <DT> -uninstall
3621 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
3622 in Windows settings.  The registry settings are removed and
3623 the password cache is cleared.
3626 <DT> -url <EM>url</EM>
3628 <DD> Open the given URL.
3631 <DT> -v
3633 <DD> Version:  Print version information to the screen.
3636 <DT> -x <EM>exceptions_config</EM>
3638 <DD> Configuration settings in the exceptions configuration override your normal
3639 default settings.
3640 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
3643 <DT> -z
3645 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
3646 will suspend the <EM>Alpine</EM> session.
3649 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
3650 <EM>Feature-List</EM>.
3653 <DT> -<EM>option</EM>=<EM>value</EM>
3655 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
3656 For example, <EM>-signature-file=sig1</EM> or
3657 <EM>-Feature-List=signature-at-bottom</EM>.
3658 Note:  Feature-List values are
3659 additive and features may be preceded with no- to turn them off.
3660 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
3661 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
3662 <EM>-Feature-List=signature-at-bottom</EM>.
3665 </DL>
3667 &lt;End of help on this topic&gt;
3668 </BODY>
3669 </HTML>
3670 ===== h_configuring_news ======
3671 <HTML>
3672 <HEAD>
3673 <TITLE>CONFIGURING NEWS</TITLE>
3674 </HEAD>
3675 <BODY>
3676 <H1>CONFIGURING NEWS</H1>
3677 Alpine can access news folders in any one of three different ways:
3678 <DL>
3679 <DT>REMOTE NNTP</DT>
3680 <DD>Using the Network News Transport Protocol (NNTP) to
3681 access news on a remote news server.  In this case the newsrc file is
3682 stored on the machine where Alpine is running.
3685 To specify a remote news-collection accessed via NNTP use the
3686 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3687 Server: value to the NNTP server's hostname appended with the
3688 communication method &quot;/service=NNTP&quot;, and set the Path:
3689 value to the &quot;#news.&quot; namespace (without the quotes).  See
3690 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
3691 help text for a more complete explanation of access method, and the
3692 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3693 text for a more complete explanation of &quot;namespace&quot;.
3695 Instead of specifying a news-collection, you may simply set the
3696 <A HREF="h_config_nntp_server">NNTP Server</A>
3697 option, which will cause Alpine to create a default news-collection for you.
3698 Another NNTP option that may be of interest is
3699 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
3701 <DT>REMOTE IMAP</DT>
3702 <DD>Using the Internet Message Access Protocol (IMAP) to
3703 access news on a remote news server.  In this case, your newsrc file is
3704 stored on the news server, in your home directory, so you must have an
3705 account on the news server, but you would be running Alpine on a different
3706 machine.  The news server must be running an IMAPd server process. 
3709 To specify a remote news-collection accessed via IMAP use the
3710 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3711 Server: value to the IMAP server's hostname, and set the Path: value
3712 to the &quot;#news.&quot; namespace (without the quotes).  See the
3713 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3714 text for a more complete explanation of &quot;namespace&quot;.
3716 </DD>
3718 <DT>LOCAL</DT>
3719 <DD>Using local file access to the news database.  In this
3720 case, your newsrc file is stored on the news server, in your home
3721 directory, so you must have an account on the news server, and you would
3722 be running Alpine on the same machine.
3725 To specify a local news-collection use the SETUP/collectionList
3726 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
3727 set the Path: value to the &quot;#news.&quot; namespace (without the
3728 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
3729 field's help text for a more complete explanation of &quot;namespace&quot;.
3731 </DD>
3732 </DL>
3736 NOTE: Should no news-collection be defined as above, Alpine will
3737 automatically create one using the Setup/Config screen's
3738 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
3739 will be created as a &quot;Remote NNTP&quot; as described above.
3743 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
3744 possible.  If you don't have an account on the news server, or if the news
3745 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
3746 sure, ask your service provider, university, or company for help.)  In
3747 this case, your Unix .newsrc file can be transferred to your PC.  A good
3748 place to put it would be in the same directory as your PINERC file, under
3749 the name NEWSRC, but you can 
3750 <A HREF="h_config_newsrc_path">specify a different location</A>
3751 via Alpine's Setup/Config screen.
3754 Other configuration features related to news are
3755 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
3756 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
3757 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
3758 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
3759 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
3760 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
3761 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
3762 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
3765 &lt;End of help on this topic&gt;
3766 </BODY>
3767 </HTML>
3768 ===== h_reading_news ======
3769 <HTML>
3770 <HEAD>
3771 <TITLE>READING NEWS</TITLE>
3772 </HEAD>
3773 <BODY>
3774 <H1>READING NEWS</H1>
3776 Alpine uses almost the same commands for manipulating news folders as for
3777 mail folders.  This means, for example, that when you are done with a
3778 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
3779 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
3780 most newsreaders, wherein a message is implicitly dismissed after you have
3781 looked at it once. We strongly believe that Alpine should offer as much
3782 consistency as possible between mail and news, so the mail paradigm --
3783 wherein a message does not magically disappear without explicit action by
3784 the user -- is used for news as well. <P>
3786 If you answer a message in a news folder, the index view will show the
3787 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
3788 keep track of what news as been read has no way of storing this flag, so
3789 it will not be preserved across sessions.  The Deleted flag is the only
3790 one that is preserved when you leave and then return to a newsgroup.  As an
3791 additional note on replies, when you Reply to a newsgroup message and say
3792 you want to reply to all recipients, Alpine will ask if you want to post the
3793 message to all the newsgroups listed in the original message. <P>
3795 If you would like Alpine to mark more-or-less recent news messages as
3796 &quot;New&quot;, then set the
3797 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
3798 feature (which is set by default).  This will cause messages after the last one you have marked as
3799 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
3800 &quot;N&quot; status often makes it easier to distinguish later news
3801 articles from those you've previously seen, but not yet disposed of via
3802 the &quot;D&quot; key.  Note that this is an approximation, not an exact
3803 record of which messages you have not seen.
3806 A frequent operation in news-reading is &quot;catching up&quot; -- that
3807 is, getting rid of all the messages in the newsgroup so that you can
3808 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
3809 Select command.  You would enter the following four keystrokes:
3810 <tt>;aad</tt> to select all messaged, and then apply the delete (or
3811 dismiss) command to all of them.
3814 There are also additional details on 
3815 <A HREF="h_configuring_news">configuring news</a>.
3818 &lt;End of help on this topic&gt;
3819 </BODY>
3820 </HTML>
3821 ====== h_help_index ======
3822 <HTML>
3823 <HEAD>
3824 <TITLE>Help Index</TITLE>
3825 </HEAD>
3826 <BODY>
3827 <H1>Help Index</H1>
3828 <ul>
3829 <li><a href="h_mainhelp_abooks">Address Books</a></li>
3830 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
3831 <li><a href="h_main_addrbook">Address Book Command</a>
3832 <li><a href="h_abook_view">Address Book View Explained</a>
3833 <li><a href="h_compose_addrcomplete">Address Completion</a>
3834 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
3835 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
3836 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
3837 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
3838 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
3839 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
3840 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
3841 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
3842 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
3843 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
3844 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
3845 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
3846 <li><a href="h_mainhelp_config">Alpine Configuration</a>
3847 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
3848 <li><a href="h_news_legal">Alpine Legal Notices</a>
3849 <li><a href="h_compose_alted">Alt Editor Command</a>
3850 <li><a href="h_index_cmd_apply">Apply Command</a>
3851 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
3852 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
3853 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
3854 <li><a href="h_composer_browse">BROWSER</a>
3855 <li><a href="h_common_bounce">Bounce Command</a>
3856 <li><a href="h_compose_cancel">Cancel Command</a>
3857 <li><a href="h_config_change_your_from">Changing your From Address</a>
3858 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
3859 <li><a href="h_mainhelp_color">Color</a>
3860 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
3861 <li><a href="h_composer">COMPOSER COMMANDS</a>
3862 <li><a href="h_mainhelp_composing">Composing Messages</a>
3863 <li><a href="h_mainhelp_collections">Collection Lists</a>
3864 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
3865 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
3866 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
3867 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
3868 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
3869 <li><a href="h_common_compose">Compose Command</a>
3870 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
3871 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
3872 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
3873 <li><a href="h_mainhelp_config">Configuration</a>
3874 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
3875 <li><a href="h_config_dflt_color">Default Color</a>
3876 <li><a href="h_common_delete">Delete and Undelete Commands</a>
3877 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
3878 <li><a href="h_special_list_commands">Email List Commands Explained</a>
3879 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
3880 <li><a href="h_folder_open">Explanation of Folder Selection</a>
3881 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
3882 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
3883 <li><a href="h_ge_export">Export File Selection</a>
3884 <li><a href="h_ge_allparts">Export Message File Selection</a>
3885 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
3886 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
3887 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
3888 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
3889 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
3890 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
3891 <li><a href="h_config_alt_reply_menu">FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></a>
3892 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
3893 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
3894 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
3895 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
3896 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
3897 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
3898 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
3899 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
3900 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
3901 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
3902 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
3903 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
3904 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
3905 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
3906 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
3907 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
3908 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
3909 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
3910 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
3911 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
3912 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
3913 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
3914 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
3915 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
3916 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
3917 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
3918 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
3919 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
3920 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
3921 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
3922 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
3923 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
3924 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
3925 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
3926 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
3927 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
3928 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
3929 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
3930 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
3931 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
3932 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
3933 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
3934 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
3935 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
3936 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
3937 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
3938 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
3939 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
3940 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
3941 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
3942 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
3943 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
3944 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
3945 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
3946 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
3947 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
3948 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
3949 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
3950 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
3951 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
3952 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
3953 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
3954 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
3955 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
3956 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
3957 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
3958 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
3959 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
3960 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
3961 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
3962 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
3963 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
3964 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
3965 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
3966 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
3967 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
3968 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
3969 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
3970 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
3971 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
3972 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
3973 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
3974 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
3975 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
3976 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
3977 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
3978 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
3979 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
3980 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
3981 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
3982 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
3983 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
3984 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
3985 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
3986 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
3987 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
3988 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
3989 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
3990 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
3991 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
3992 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
3993 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
3994 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
3995 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
3996 <li><a href="h_config_ignore_size">FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></a>
3997 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
3998 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
3999 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
4000 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
4001 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
4002 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
4003 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
4004 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
4005 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
4006 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
4007 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
4008 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
4009 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
4010 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
4011 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
4012 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
4013 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
4014 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
4015 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
4016 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
4017 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
4018 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
4019 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
4020 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
4021 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
4022 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
4023 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
4024 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
4025 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
4026 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
4027 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
4028 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
4029 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
4030 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
4031 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
4032 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
4033 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
4034 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
4035 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
4036 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
4037 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
4038 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
4039 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
4040 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
4041 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
4042 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
4043 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
4044 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
4045 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
4046 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
4047 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
4048 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
4049 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
4050 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
4051 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
4052 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
4053 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
4054 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
4055 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
4056 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
4057 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
4058 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
4059 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
4060 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
4061 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
4062 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
4063 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
4064 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
4065 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
4066 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
4067 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
4068 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
4069 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
4070 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
4071 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
4072 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
4073 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
4074 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
4075 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
4076 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
4077 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
4078 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
4079 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
4080 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
4081 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
4082 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
4083 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
4084 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
4085 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
4086 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
4087 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
4088 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
4089 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
4090 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
4091 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
4092 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
4093 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
4094 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
4095 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
4096 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
4097 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
4098 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
4099 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
4100 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
4101 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
4102 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
4103 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
4104 <li><a href="h_mainhelp_filtering">Filtering</a>
4105 <li><a href="h_finding_help">Finding more information and requesting help</a>
4106 <li><a href="h_common_flag">Flag Command</a>
4107 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
4108 <li><a href="h_mainhelp_folders">Folders</a>
4109 <li><a href="h_what_are_collections">Folder Collections Explained</a>
4110 <li><a href="h_common_folders">Folder List Command</a>
4111 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
4112 <li><a href="h_folder_save">Folder Select for Save Explained</a>
4113 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
4114 <li><a href="h_config_change_your_from">From Address, Changing</a>
4115 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
4116 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
4117 <li><a href="h_common_goto">Goto Command</a>
4118 <li><a href="h_common_hdrmode">HdrMode Command</a>
4119 <li><a href="h_mainhelp_pinehelp">Help</a>
4120 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
4121 <li><a href="h_folder_maint">Help for Folder List</a>
4122 <li><a href="h_valid_folder_names">IMAP</a>
4123 <li><a href="h_ge_import">Import File Selection</a>
4124 <li><a href="h_mainhelp_index">Index of Messages</a>
4125 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
4126 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
4127 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
4128 <li><a href="h_info_on_mbox">Information on mbox driver</a>
4129 <li><a href="h_mainhelp_intro">Introduction</a>
4130 <li><a href="h_main_journal">Journal Command</a>
4131 <li><a href="h_common_jump">Jump Command</a>
4132 <li><a href="h_compose_justify">Justify Command</a>
4133 <li><a href="h_main_kblock">Keyboard Lock Command</a>
4134 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
4135 <li><a href="h_mainhelp_ldap">LDAP</a>
4136 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
4137 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
4138 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
4139 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
4140 <li><a href="h_config_ldap_opts_ldaps">LDAP FEATURE: Require-LDAPS-On-Connection</a>
4141 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
4142 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
4143 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
4144 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
4145 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
4146 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
4147 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
4148 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
4149 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
4150 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
4151 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
4152 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
4153 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
4154 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
4155 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
4156 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
4157 <li><a href="h_ldap_view">LDAP Response View Explained</a>
4158 <li><a href="h_maildrop">Mail Drop: What is it?</a>
4159 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
4160 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
4161 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
4162 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
4163 <li><a href="h_common_index">Message Index Command</a>
4164 <li><a href="h_mainhelp_mouse">Mouse</a>
4165 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
4166 <li><a href="new_user_greeting">NEW USER GREETING</a>
4167 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
4168 <li><a href="h_mainhelp_readingnews">News Reading</a>
4169 <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
4170 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
4171 <li><a href="h_common_nextnew">NextNew Command</a>
4172 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
4173 <li><a href="h_mainhelp_readingnews">NNTP</a>
4174 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
4175 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
4176 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
4177 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
4178 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
4179 <li><a href="h_config_color_style">OPTION: Color Style</a>
4180 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
4181 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
4182 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
4183 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
4184 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
4185 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
4186 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
4187 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
4188 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
4189 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
4190 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
4191 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
4192 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
4193 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
4194 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
4195 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
4196 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
4197 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
4198 <li><a href="h_config_file_dir">OPTION: File Directory</a>
4199 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
4200 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
4201 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
4202 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
4203 <li><a href="h_config_font_name">OPTION: Font Name</a>
4204 <li><a href="h_config_font_size">OPTION: Font Size</a>
4205 <li><a href="h_config_font_style">OPTION: Font Style</a>
4206 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
4207 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
4208 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
4209 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
4210 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
4211 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
4212 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
4213 <li><a href="h_config_psleep">OPTION: <!--#echo var="VAR_mailcap-check-interval"--></a>
4214 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
4215 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
4216 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
4217 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
4218 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
4219 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
4220 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
4221 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
4222 <li><a href="h_config_index_color">OPTION: Index Colors</a>
4223 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
4224 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
4225 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
4226 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
4227 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
4228 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
4229 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
4230 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
4231 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
4232 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
4233 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
4234 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
4235 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
4236 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
4237 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
4238 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
4239 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
4240 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
4241 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
4242 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
4243 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
4244 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
4245 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
4246 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
4247 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
4248 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
4249 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
4250 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
4251 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
4252 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
4253 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
4254 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
4255 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
4256 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
4257 <li><a href="h_config_pat_old">OPTION: Patterns</a>
4258 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
4259 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
4260 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
4261 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
4262 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
4263 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
4264 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
4265 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
4266 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
4267 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
4268 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
4269 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
4270 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
4271 <li><a href="h_config_printer">OPTION: Printer</a>
4272 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
4273 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
4274 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
4275 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
4276 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
4277 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
4278 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
4279 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
4280 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
4281 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
4282 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
4283 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
4284 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
4285 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
4286 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
4287 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
4288 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
4289 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
4290 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
4291 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
4292 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
4293 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
4294 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
4295 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
4296 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
4297 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
4298 <li><a href="h_config_aspell_dictionary">OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></a>
4299 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
4300 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
4301 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
4302 <li><a href="h_config_status_color">OPTION: Status Color</a>
4303 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
4304 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
4305 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
4306 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
4307 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
4308 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
4309 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
4310 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
4311 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
4312 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
4313 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
4314 <li><a href="h_config_title_color">OPTION: Title Color</a>
4315 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
4316 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
4317 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
4318 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
4319 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
4320 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
4321 <li><a href="h_config_history">OPTION: <!--#echo var="VAR_default-directories"--></a>
4322 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
4323 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
4324 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
4325 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
4326 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
4327 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
4328 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
4329 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
4330 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
4331 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
4332 <li><a href="h_config_window_position">OPTION: Window-Position</a>
4333 <li><a href="h_mainhelp_patterns">Patterns</a>
4334 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
4335 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
4336 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
4337 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
4338 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
4339 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
4340 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
4341 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
4342 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
4343 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
4344 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
4345 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
4346 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
4347 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
4348 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
4349 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
4350 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
4351 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
4352 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
4353 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
4354 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
4355 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
4356 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
4357 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
4358 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
4359 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
4360 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
4361 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
4362 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
4363 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
4364 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
4365 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
4366 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
4367 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
4368 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
4369 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
4370 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
4371 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
4372 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
4373 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
4374 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
4375 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
4376 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
4377 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
4378 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
4379 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
4380 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
4381 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
4382 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
4383 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
4384 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
4385 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
4386 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
4387 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
4388 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
4389 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
4390 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
4391 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
4392 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
4393 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
4394 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
4395 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
4396 <li><a href="h_common_pipe">Pipe Command</a>
4397 <li><a href="h_valid_folder_names">POP</a>
4398 <li><a href="h_common_postpone">Postpone Command</a>
4399 <li><a href="h_common_print">Print Command</a>
4400 <li><a href="h_mainhelp_readingnews">Reading News</a>
4401 <li><a href="h_news">RELEASE NOTES for Alpine</a>
4402 <li><a href="h_mainhelp_roles">Roles</a>
4403 <li><a href="h_role_select">ROLES SCREEN</a>
4404 <li><a href="h_compose_readfile">Read File Command</a>
4405 <li><a href="h_mainhelp_reading">Reading Messages</a>
4406 <li><a href="h_main_release_notes">Release Notes Command</a>
4407 <li><a href="h_common_reply">Reply and Forward Commands</a>
4408 <li><a href="h_compose_richhdr">Rich Header Command</a>
4409 <li><a href="h_common_role">Role Command</a>
4410 <li><a href="h_mainhelp_smime">S/MIME</a>
4411 <li><a href="h_index_cmd_select">Searching for Messages</a>
4412 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
4413 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
4414 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
4415 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
4416 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
4417 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
4418 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
4419 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
4420 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
4421 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
4422 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
4423 <li><a href="h_common_save">Save and Export Commands</a>
4424 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
4425 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
4426 <li><a href="h_compose_send">Send Command</a>
4427 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
4428 <li><a href="h_main_setup">Setup Command</a>
4429 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
4430 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
4431 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
4432 <li><a href="h_mainhelp_smime">S/MIME</a>
4433 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
4434 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
4435 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
4436 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
4437 <li><a href="h_config_smime_use_cert_store">S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></a>
4438 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
4439 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
4440 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
4441 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
4442 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
4443 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
4444 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
4445 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
4446 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
4447 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
4448 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
4449 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
4450 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
4451 <li><a href="h_config_smime_public_certificates">S/MIME: Manage Public Certificates</a>
4452 <li><a href="h_config_smime_private_keys">S/MIME: Manage Private Keys</a>
4453 <li><a href="h_config_smime_certificate_authorities">S/MIME: Manage Certificate Authorities</a>
4454 <li><a href="h_index_cmd_sort">Sort Command</a>
4455 <li><a href="h_compose_spell">Spell Check Command</a>
4456 <li><a href="h_common_suspend">Suspend Command</a>
4457 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
4458 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
4459 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
4460 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
4461 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
4462 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
4463 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
4464 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
4465 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
4466 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
4467 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
4468 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
4469 <li><a href="h_common_take">TakeAddr Command</a>
4470 <li><a href="h_mainhelp_status">Titlebar Line</a>
4471 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
4472 <li><a href="h_config_usenone_color">Use None Color</a>
4473 <li><a href="h_config_usenormal_color">Use Normal Color</a>
4474 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
4475 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
4476 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
4477 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
4478 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
4479 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
4480 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
4481 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
4482 </UL>
4485 &lt;End of Help Index&gt;
4486 </BODY>
4487 </HTML>
4490 ============== h_config_remote_config =============
4491 <HTML>
4492 <HEAD>
4493 <TITLE>Remote Configuration</TITLE>
4494 </HEAD>
4495 <BODY>
4496 <H1>Remote Configuration</H1>
4498 You may use the command line argument &quot;-p pinerc&quot; to tell
4499 Alpine to use a non-default configuration file.
4500 There are two types of storage for configuration information.
4501 <EM>Local</EM> configuration files are used by default.
4502 These are just regular files on the UNIX system or on the PC.
4503 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
4504 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
4505 <EM>Remote</EM> configuration folders are stored on an IMAP server.
4506 The advantage of using a remote configuration is that the same information
4507 may be accessed from multiple platforms.
4508 For example, if you use one computer at work and another at home, the same
4509 configuration could be used from both places.
4510 A configuration change from one place would be seen in both places.
4511 To use a remote configuration you simply give a
4512 <A HREF="h_valid_folder_names">remote folder name</A>
4513 as the argument to the &quot;-p&quot; command line option.
4514 The command line might look something like:
4516 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
4518 If there are special characters in the command shell you use, you may need to
4519 quote the last argument (to protect the curly braces from the shell).
4520 The command might look like:
4522 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
4524 You should choose a folder name for a folder that does not yet exist.
4525 It will be created containing an empty configuration.
4526 Do not use a folder that you wish to store regular mail messages in.
4528 The Setup/RemoteConfigSetup command will help you convert from a local
4529 configuration to a remote configuration.
4530 It will create a remote configuration for you and copy your current local
4531 configuration to it.
4532 It will also help you convert local address books into remote address books
4533 and local signature files into literal signatures contained in the
4534 remote configuration file.
4536 If the Setup/RemoteConfigSetup command doesn't do what you want, you
4537 may copy a local pinerc file to a remote configuration folder by hand
4538 by using the command line option &quot;-copy_pinerc&quot;.
4540 Another command line option, which is somewhat related to remote
4541 configuration, is the option &quot;-x exceptions_config&quot;.
4542 The configuration settings in the exceptions configuration override
4543 your default settings.
4544 It may be useful to store the default configuration (the -p argument) remotely
4545 and to have the exceptions configuration stored in a local file.
4546 You might put generic configuration information in the remote configuration
4547 and platform-specific configuration on each platform in the exceptions
4548 configuration.
4549 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
4550 can be either remote folders or local files.
4552 There is another command line argument that works only with PC-Alpine and
4553 which may prove useful when using a remote configuration.
4554 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
4555 to store your local auxiliary files.
4556 This only has an effect if your configuration file is remote.
4557 Some examples of auxiliary files are debug files, address book files, and
4558 signature files.
4560 &lt;End of help on this topic&gt;
4561 </BODY>
4562 </HTML>
4563 ============== h_config_exceptions =============
4564 <HTML>
4565 <HEAD>
4566 <TITLE>Generic and Exceptional Configuration</TITLE>
4567 </HEAD>
4568 <BODY>
4569 <H1>Generic and Exceptional Configuration</H1>
4571 If you use Alpine from more than one platform it may be convenient
4572 to split your configuration information into two pieces, a generic piece
4573 and exceptions that apply to a particular platform.
4574 For example, suppose you use Alpine from home and from work.
4575 Most of your configuration settings are probably the
4576 same in both locations, so those settings belong in the generic settings
4577 configuration.
4578 However, you may use a different SMTP server and INBOX
4579 from home than you do from work.
4581 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
4583 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
4584 options could be
4585 part of your exceptional configuration so that they could be different in the
4586 two places.
4588 The command line option &quot;-x exceptions_config&quot;
4589 may be used to split your configuration into generic and exceptional pieces.
4590 &quot;Exceptions_config&quot; may be either local or remote.
4591 The regular Alpine configuration file will contain the generic data, and
4592 &quot;exceptions_config&quot; will contain the exceptional data.
4594 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
4595 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
4596 in the same local directory that the regular config file is located in (usually
4597 the Unix home directory).
4598 If the regular config file is remote (because the command line option
4599 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
4600 directory for &quot;<CODE>.pinercex</CODE>&quot;.
4601 If the file does not already exist then no exceptions will be used.
4602 You can force exceptions to be used by using the &quot;-x&quot; option or
4603 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
4605 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
4606 PC-Alpine will use the value of the
4607 environment variable <CODE>$PINERCEX</CODE>.
4608 If that is not set, PC-Alpine will look for
4609 the local file &quot;<CODE>PINERCEX</CODE>&quot;
4610 in the same local directory that the regular config file is located in.
4611 If the regular config file is remote (because the command line option
4612 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
4613 local directory specified by the &quot;-aux local_directory&quot; command
4614 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
4615 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
4617 When you have an exception configuration there is a new command
4618 in the Alpine Setup screen, Setup/eXceptions.
4619 It toggles between exceptions and the regular configuration.
4620 This is the usual way to make changes in your exceptional configuration data.
4621 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
4622 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
4623 for Config or &quot;K&quot; for Kolor.
4625 For most people, splitting the configuration information into two pieces is
4626 going to be most useful if the generic information is accessed
4627 <A HREF="h_config_remote_config">remotely</A>).
4628 That data will be the same no matter where you access it from and if you
4629 change it that change will show up everywhere.
4630 The exceptional data will most commonly be in a local file, so that the
4631 contents may easily be different on each computing platform used.
4633 If you already have a local configuration file with settings you like
4634 you may find that the command Setup/RemoteConfigSetup is useful
4635 in helping you convert to a remote configuration.
4636 The command line flag &quot;-copy_pinerc&quot;
4637 may also be useful.
4639 &lt;End of help on this topic&gt;
4640 </BODY>
4641 </HTML>
4642 ============== h_config_inheritance =============
4643 <HTML>
4644 <HEAD>
4645 <TITLE>Configuration Inheritance</TITLE>
4646 </HEAD>
4647 <BODY>
4648 <H1>Configuration Inheritance</H1>
4650 Configuration inheritance is a power user feature.
4651 It is confusing and not completely supported by the configuration
4652 user interface.
4653 We start with an explanation of how configuration works in hopes of making
4654 it easier to describe how inheritance works.
4656 Alpine uses a hierarchy of configuration values from different locations.
4657 There are five ways in which each configuration option (configuration
4658 variable) can be set.
4659 In increasing order of precedence they are:
4661 <OL>
4662 <LI> the system-wide configuration file.
4664 <LI> the personal configuration file
4666 <LI> the personal exceptions file
4668 <LI> a command line argument
4670 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
4671 </OL>
4673 The fixed configuration file is normally
4674 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
4676 The system-wide configuration file is normally
4677 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
4678 set for PC-Alpine.
4679 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
4680 is used for the system-wide configuration.
4681 This location can be set or changed on the command line with the -P flag.
4682 The system-wide configuration file can be either a local file or a
4683 remote configuration folder.
4685 For Unix Alpine, the personal configuration file is normally the file
4686 <CODE>.pinerc</CODE> in the user's home directory.
4687 This can be changed with the -p command line flag.
4688 For PC-Alpine, the personal configuration file is in
4689 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
4690 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
4691 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
4692 This can be changed with the -p command line flag.
4693 If -p is used, the configuration data may be in a local file or a remote config
4694 folder.
4696 For Unix Alpine, the personal exceptions configuration file is named
4697 <CODE>.pinercex</CODE> and is in the same directory as the personal
4698 configuration file, if that configuration file is not remote, and is in
4699 the home directory if the personal configuration file is remote.
4700 If the file exists, then exceptions are turned on.
4701 If it doesn't, then you are not using exceptions.
4702 Alternatively, you may change the location of the exceptions configuration
4703 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4704 Like the personal configuration data, exceptions_config may be
4705 either local or remote.
4707 For PC-Alpine, the personal exceptions configuration file is named
4708 <CODE>PINERCEX</CODE> and is in the same directory as the personal
4709 configuration file unless the personal configuration file is remote.
4710 In that case, it is in the local directory specfied by the
4711 &quot;-aux local_directory&quot; command line argument.
4712 (In the case that the personal configuration is remote and there is no
4713 &quot;-aux&quot; command line argument, Alpine searches for
4714 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
4715 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
4716 If the file exists, then exceptions are turned on.
4717 If it doesn't, then you are not using exceptions.
4718 You may change the location of the exceptions configuration
4719 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4720 or with the
4721 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
4722 option).
4724 To reiterate, the value of a configuration option is taken from the
4725 last location in the list above in which it is set.
4726 Or, thinking about it slightly differently, a default value for an option
4727 is established in the system-wide configuration file (or internally by Alpine
4728 if there is no value in the system-wide file).
4729 That default remains in effect until and unless it is overridden by a value in a
4730 location further down the list, in which case a new &quot;default&quot;
4731 value is established.
4732 As we continue down the list of locations we either retain the
4733 value at each step or establish a new value.
4734 The value that is still set after going through the whole list of
4735 configuration locations is the one that is used.
4737 So, for example, if an option is set in the system-wide configuration
4738 file and in the personal configuration file, but is not set in the
4739 exceptions, on the command line, or in the fixed file; then the value
4740 from the personal configuration file is the one that is used.
4741 Or, if it is set in the system-wide config, in the personal config, not
4742 in the exceptions, but is set on the command line; then the value
4743 on the command line is used.
4745 Finally we get to inheritance.
4746 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
4747 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
4748 the inheritance mechanism makes it possible to <EM>combine</EM>
4749 the values from different locations instead of <EM>replacing</EM> the value.
4750 This is true of all configuration lists other than the &quot;Feature-List&quot;,
4751 for which you may already set whatever you want at
4752 any configuration location (by using the &quot;no-&quot; prefix if
4753 necessary).
4755 To use inheritance, set the first item in a configuration list to the
4756 token &quot;INHERIT&quot;, without the quotes.
4757 If the first item is &quot;INHERIT&quot;,
4758 then instead of replacing the default value established so far, the rest of
4759 the list is appended to the default value established so far and that is
4760 the new value.
4762 Here is an example which may make it clearer. Suppose we have:
4764 <PRE>
4765  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4766  Personal config    :   smtp-server = INHERIT, mysmtp.home
4767  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
4768  Command line       :   smtp-server = &lt;No Value Set&gt;
4769  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4770 </PRE>
4773 This would result in an effective smtp-server option of
4775 <PRE>
4776  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
4777 </PRE>
4779 The &quot;INHERIT&quot; token can be used in any of the configuration files
4780 and the effect cascades.
4781 For example, if we change the above example to:
4783 <PRE>
4784  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4785  Personal config    :   smtp-server = INHERIT, mysmtp.home
4786  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4787  Command line       :   smtp-server = &lt;No Value Set&gt;
4788  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4789 </PRE>
4792 This would result in:
4794 <PRE>
4795  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
4796 </PRE>
4798 Unset variables are skipped over (the default value is carried forward) so
4799 that, for example:
4801 <PRE>
4802  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4803  Personal config    :   smtp-server = &lt;No Value Set&gt;
4804  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4805  Command line       :   smtp-server = &lt;No Value Set&gt;
4806  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4807 </PRE>
4810 produces:
4812 <PRE>
4813  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
4814 </PRE>
4817 If any later configuration location has a value set (for a particular list
4818 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
4819 then that value replaces whatever value has been defined up to that point.
4820 In other words, that cancels out any previous inheritance.
4822 <PRE>
4823  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4824  Personal config    :   smtp-server = INHERIT, mysmtp.org
4825  Exceptions config  :   smtp-server = yoursmtp.org
4826  Command line       :   smtp-server = &lt;No Value Set&gt;
4827  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4828 </PRE>
4831 results in:
4833 <PRE>
4834  smtp-server = yoursmtp.org
4835 </PRE>
4838 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
4839 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
4840 difficult to insert the value &quot;INHERIT&quot; into the list of values
4841 for the option using the normal Setup tools.
4842 In other words, the color setting screen (for example) does not
4843 provide a way to input the text &quot;INHERIT&quot; as the first
4844 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
4845 The way to do this is to either edit the pinerc file directly and manually
4846 insert it, or turn
4847 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
4848 feature and insert it using the Setup/Config screen.
4850 &lt;End of help on this topic&gt;
4851 </BODY>
4852 </HTML>
4853 ============== h_special_xon_xoff =============
4854 <HTML>
4855 <HEAD>
4856 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
4857 </HEAD>
4858 <BODY>
4859 <H1>XOFF/XON Handling within Alpine</H1>
4861 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
4862 and XON) as normal characters, even though Alpine does not use them.
4863 However, the printer, modem, or communication software you are using may
4864 be configured for &quot;software flow control,&quot; which means that
4865 XON/XOFF must be treated as special characters by the operating system.
4866 If you see messages such as &quot;^S not defined for this screen&quot;,
4867 then your system is probably using software flow control. In this case
4868 you will need to set the
4869 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
4870 feature.
4872 If you <EM>do</EM> set this
4873 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
4874 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
4875 and see if that puts things right.  Printing via the
4876 &quot;attached-to-ansi&quot; or 
4877 &quot;attached-to-wyse&quot;
4878 option will automatically enable software
4879 flow-control handling for the duration of the printing.
4881 &lt;End of help on this topic&gt;
4882 </BODY>
4883 </HTML>
4884 ============= h_special_help_nav =============
4885 <HTML>
4886 <HEAD>
4887 <TITLE>Help Text Navigation Explained</TITLE>
4888 </HEAD>
4889 <BODY>
4890 <H1>Help Text Navigation Explained</H1>
4892 Alpine contains extensive context-sensitive help text.   At any point, 
4893 pressing the &quot;?&quot; key will bring up a page of help text
4894 explaining the options available to you.  You can leave the help
4895 text screen and return to normal Alpine operation by pressing
4897 <!--chtml if pinemode="function_key"-->
4898 F3 function
4899 <!--chtml else-->
4900 &quot;E&quot;
4901 <!--chtml endif-->
4902 key to Exit Help at any time.
4905 Within the help screen you might find a word or phrase displayed in 
4906 inverse text and others displayed in bold typeface.  Such words and
4907 phrases are used to tell you Alpine has more information available on
4908 the topic they describe.
4909 The inverted text is the &quot;selected&quot; topic.  
4910 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
4911 displayed in bold type
4912 is &quot;selected&quot;.
4913 Hit the Return key to display the information Alpine has available on that
4914 topic.  While viewing such additional information, the 
4915 <!--chtml if pinemode="function_key"-->
4916 F3 function
4917 <!--chtml else-->
4918 &quot;P&quot;
4919 <!--chtml endif-->
4920 key will return you to the previous help screen, and the
4921 <!--chtml if pinemode="function_key"-->
4922 F2 function
4923 <!--chtml else-->
4924 &quot;E&quot;
4925 <!--chtml endif-->
4926 key will Exit the Help system altogether.
4929 The "N" command will tell you the internal name of the help text you are 
4930 reading each time, so that you can send this name in the text of a message 
4931 and create a direct link to that internal help using the x-pine-help URL 
4932 scheme. For example, the direct link to this item is 
4933 x-pine-help:h_special_help_nav. If you add this text to a message, then
4934 a person using Pine to read such message would have a direct link to this
4935 help text.
4938 When you are finished reading this help text, you can press the
4939 <!--chtml if pinemode="function_key"-->
4940 F3 function
4941 <!--chtml else-->
4942 &quot;P&quot;
4943 <!--chtml endif-->
4944 key to return to the previously displayed help text.
4947 &lt;End of help on this topic&gt;
4948 </BODY>
4949 </HTML>
4950 ============= h_special_list_commands =============
4951 <HTML>
4952 <HEAD>
4953 <TITLE>Email List Commands Explained</TITLE>
4954 </HEAD>
4955 <BODY>
4956 <H1>Email List Commands Explained</H1>
4958 Electonic mail lists provide a way for like-minded users to join in
4959 discussions on topics of interest.  The email list itself is 
4960 represented by a
4961 single address that participants send messages to when they have
4962 something of interest to share with other members of the list.  The
4963 receiving computer then, either automatically or after review by the
4964 list's owner (or moderator), sends a copy of that message to each
4965 member of the list.
4968 Usually, subscribing and unsubscribing is done by sending requests in
4969 an email message to a special address setup to handle managing list
4970 membership.  Often this is the name of the list followed by
4971 <I>-request</I>.  This address is almost <EM>never</EM> the same as
4972 the address used to send messages to the list.
4975 Unfortunately, email list participation commands are more a matter
4976 of convention than standard, and thus may vary from list to list.
4977 Increasingly, list management software is adding information to
4978 the copy of the postings as they're copied to the list members that
4979 explains how to do the various list management functions.
4982 Alpine will recognize this information and offer the management commands
4983 they represent in a simple display. One or more of the following
4984 operations will be made available:
4986 <DL>
4987 <DT>Help</DT>
4988 <DD>
4989 A method to get help on subscribing, unsubscribing, 
4990 an explanation of what the list is about, or special instructions
4991 for participation.  This may be in the form of a reply in response
4992 to an email message, or instructions on how to connect to a Web site.
4993 </DD>
4995 <DT>Unsubscribe</DT>
4996 <DD>
4997 A method to get your email addressed removed from the list of
4998 recipients of the email list.
4999 </DD>
5001 <DT>Subscribe</DT>
5002 <DD>
5003 A method to get your email address added to the list of recipients
5004 of the email list.  It may be in the form of a message sent to 
5005 a special address or you may be connected to a web site.
5006 <DD>
5007 </DD>
5009 <DT>Post</DT>
5010 <DD>
5011 A method used to post to the email list.  However, it might also 
5012 indicate that no posting is allowed directly to the list.
5013 </DD>
5015 <DT>Owner</DT>
5016 <DD>
5017 A method to contact the list owner for special questions you might
5018 have regarding the list.
5019 </DD>
5021 <DT>Archive</DT>
5022 <DD>
5023 A method to view an archive of previous messages posted to the list.
5024 This may be in the form of a mail folder on a remote computer, an
5025 IMAP mailbox or even a Web site.
5026 </DD>
5027 </DL>
5030 &lt;End of help on this topic&gt;
5031 </BODY>
5032 </HTML>
5033 ============= h_quota_command =============
5034 <HTML>
5035 <HEAD>
5036 <TITLE>Quota Screen Explained</TITLE>
5037 </HEAD>
5038 <BODY>
5039 <H1>Quota Screen Explained</H1>
5041 <P> This screen summarizes the quota report for this mailbox in the
5042 IMAP server. For each resource that you have a quota, this reports summarizes
5043 its use and limit.
5045 <P> Your IMAP server administrator may have set a quota based either on 
5046 the total size of your mailbox (STORAGE), or the number of messages in 
5047 your mailbox (MESSAGES), or some other criteria. This will be reported
5048 to you indicating the type of quota, its total use and its limit.
5050 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
5051 1024 bytes. Each of the characters that you see in this help text is one 
5052 byte, and this help text is about 1 kibibyte in size. Small messages sent 
5053 by Alpine are normally less than 4 kibibytes in size (which includes 
5054 headers and text). Other email programs may send messages with bigger 
5055 sizes when they send messages, since they send plain text and an 
5056 alternative part in HTML.
5058 <P> A convenient way to save space for the STORAGE type of quota is by 
5059 deleting attachments. This is done on each individual message by pressing 
5060 the &quot;V&quot; command while reading the message text, then moving the cursor 
5061 to the position of the attachment that is to be deleted, then pressing
5062 &quot;D&quot; to delete such attachment, going back to reading the 
5063 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
5064 save the message in the same folder you are reading from. The saved 
5065 message will not have the attachment that was marked deleted. Now you
5066 can delete and expunge the message with the unwanted attachment.
5069 &lt;End of help on this topic&gt;
5070 </BODY>
5071 </HTML>
5072 ============= h_mail_thread_index =============
5073 <HTML>
5074 <HEAD>
5075 <TITLE>THREAD INDEX COMMANDS</TITLE>
5076 </HEAD>
5077 <BODY>                 
5078 <H1>THREAD INDEX COMMANDS</H1>
5079 <!--chtml if pinemode="function_key"-->
5080 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>
5081 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5082 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>
5083 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>
5084 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>
5085 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>
5086 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>
5087 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>
5088 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>
5089 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>
5090 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>
5091 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>
5092 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>
5093 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>
5094 <BR>
5095 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5096 -----------------------------<BR>
5097 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>
5098 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>
5099 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>
5100 <BR>
5101 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5102 -----------------------------<BR>
5103 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
5104 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
5105 <BR>
5106 <!--chtml else-->
5107 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>
5108 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5109 &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>
5110 &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>
5111 &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>
5112 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>
5113 &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>
5114 &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>
5115 &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>
5116 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>
5117 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5118 <BR>
5119 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
5120 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
5121 &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>
5122 &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>
5123 &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>
5124 &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>
5125 &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>
5126 &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>
5127 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
5128 <!--chtml endif-->
5131 NOTE:
5132 <OL>
5133  <LI>For help on a particular command, highlight the bold text associated
5134 with it above and hit Return.
5135  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5136 </OL>
5138 <H2>Description of the THREAD INDEX Screen</H2>
5140 The THREAD INDEX displays summary information from each
5141 thread (conversation) in the current folder.
5142 This is useful if you want to quickly
5143 scan new threads, or find a particular thread without having to go
5144 through the text of each message, or to quickly get rid of junk
5145 threads, etc.
5146 The current thread is always highlighted.
5147 Each line of the THREAD INDEX contains the following columns: <P>
5148 <DL>
5149  <DT>STATUS:</DT>
5150  <DD> The markings on the left side of the thread tell you about its
5151 status.  You may see one or more of the following codes on any given
5152 thread:
5153 <UL>
5154   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
5155   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
5156   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
5157   <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.
5158   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5159         message in the thread was sent to you as a cc:. This symbol will only show up if
5160         the feature
5161         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5162   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
5163         &quot;select&quot; command.  (Some systems may optionally allow selected
5164         messages to be denoted by the index line being displayed in bold
5165         type instead.)
5166   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5167       to mark at least one message in this thread as &quot;important&quot;.
5168 </UL></DD><P>
5170  <DT>THREAD NUMBER:</DT>
5171  <DD>Threads in a folder are numbered, from one through the number
5172 of threads in the folder, to help you know where you are in the folder.
5173 </DD><P>
5175  <DT>DATE STARTED:</DT>
5176  <DD>The date the thread was started. This is actually from the Date header
5177 of the first message in the thread. It doesn't take different time zones
5178 into account.</DD><P>
5180  <DT>WHO STARTED THE THREAD:</DT>
5181  <DD>This is usually the name of the sender of the first message in the thread, taken from
5182 the From header of the message.
5183 If there is no personal name given in that
5184 address, then the email address is used instead.
5185 If the message is from you (or from one of your
5186 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5187 then the recipient's name is shown here instead, with the characters
5188 &quot;To: &quot; inserted before the name.
5189 (The idea of this is that if you started the thread you would rather see who
5190 the mail was sent to instead of that the mail was from you.)
5191 In Newsgroups, if you are
5192 the sender and there are no email recipients, the newsgroup name will be
5193 listed after the &quot;To: &quot;.
5194 </DD><P>
5196  <DT>SIZE:</DT>
5197  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
5199  <DT>SUBJECT:</DT>
5200  <DD>As much of the thread's subject line as will fit on the screen.
5201 This is the subject of the first message in the thread.</DD>
5202 </DL>
5204 <P><UL>
5205 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5206 </UL>
5208 &lt;End of help on this topic&gt;
5209 </BODY>
5210 </HTML>
5211 ============= h_mail_index =============
5212 <HTML>
5213 <HEAD>
5214 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
5215 </HEAD>
5216 <BODY>                 
5217 <H1>MESSAGE INDEX COMMANDS</H1>
5218 <!--chtml if pinemode="function_key"-->
5219 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>
5220 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5221 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>
5222 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>
5223 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>
5224 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>
5225 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>
5226 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>
5227 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>
5228 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>
5229 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>
5230 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>
5231 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>
5232 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>
5233 <BR>
5234 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5235 -----------------------------<BR>
5236 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>
5237 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>
5238 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>
5239 <BR>
5240 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5241 -----------------------------<BR>
5242 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
5243 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>
5244 <BR>
5245 <!--chtml else-->
5246 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>
5247 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5248 &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>
5249 &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>
5250 &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>
5251 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>
5252 &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>
5253 &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>
5254 &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>
5255 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>
5256 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5257 Miscellaneous&nbsp;Operations<BR>
5258 ------------------------<BR>
5259 &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>
5260 &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>
5261 &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>
5262 &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>
5263 &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>
5264 &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>
5265 &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>
5266 &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>
5267 <!--chtml endif-->
5270 NOTE:
5271 <OL>
5272  <LI>For help on a particular command, highlight the bold text associated
5273 with it above and hit Return.
5274  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5275 </OL>
5277 <H2>Description of the MESSAGE INDEX Screen</H2>
5279 The MESSAGE INDEX displays summary information from each
5280 message in the current folder.
5281 This is useful if you want to quickly
5282 scan new messages, or find a particular message without having to go
5283 through the text of each message, or to quickly get rid of junk
5284 messages, etc.
5286 The current message is always highlighted
5287 and many commands operate on the current message.
5288 For example, the Delete command will delete the current message.
5289 If the folder is sorted by either Threads or OrderedSubject, then, depending
5290 on some of your configuration settings, a single line in the index may
5291 refer to an entire thread or to a subthread.
5292 If that is the case, then the commands that normally operate on the current
5293 message will operate on the thread or subthread instead.
5294 For example, the Delete command will delete the whole collapsed thread
5295 instead of just a single message.
5297 Each line of the MESSAGE INDEX contains the following columns (by default -- 
5298 you can change this with the 
5299 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
5300 in the SETUP CONFIGURATION screen): <P>
5301 <DL>
5302  <DT>STATUS:</DT>
5303  <DD> The markings on the left side of the message tell you about its
5304 status.  You may see one or more of the following codes on any given
5305 message:
5306 <UL>
5307   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
5308          yet eXpunged the folder.
5309   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
5310   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
5311          to be answered.
5312   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
5313          forward a message.
5314   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
5315         directly to your account, your copy is not part of a cc: or a
5316         mailing list.
5317   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5318         message was sent to you as a cc:. This symbol will only show up if
5319         the feature
5320         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5321   <LI> &quot;X&quot; for selected.  You have selected the message by using the
5322         &quot;select&quot; command.  (Some systems may optionally allow selected
5323         messages to be denoted by the index line being displayed in bold
5324         type.)
5325   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5326       to mark this message as &quot;important&quot;.
5327 </UL></DD><P>
5329  <DT>MESSAGE NUMBER:</DT>
5330  <DD>Messages in a folder are numbered, from one through the number
5331 of messages in the folder, to help you know where you are in the folder.
5332 These numbers are always in increasing order, even if you sort the folder
5333 in a different way.</DD><P>
5335  <DT>DATE SENT:</DT>
5336  <DD>The date the message was sent.  By default, messages are
5337 ordered by arrival time, not by date sent.  Most of the time, arrival time
5338 and date sent (effectively departure time) are similar.  Sometimes,
5339 however, the index will appear to be out of order because a message took a
5340 long time in delivery or because the sender is in a different time
5341 zone than you are. This date is just the date from the Date header
5342 field in the message.</DD><P>
5344  <DT>WHO SENT THE MESSAGE:</DT>
5345  <DD>This is usually the name of the sender of the message, taken from
5346 the From header of the message.
5347 If there is no personal name given in that
5348 address, then the email address is used instead.
5349 If the message is from you (or from one of your
5350 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5351 then the recipient's name is shown here instead, with the characters
5352 &quot;To: &quot; inserted before the name.
5353 (The idea of this is that if you sent the mail you would rather see who
5354 the mail was sent to instead of that the mail was from you.
5355 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
5356 above.
5357 In particular, use the FROM token or the FROMORTONOTNEWS token
5358 in place of the FROMORTO token.)
5359 In Newsgroups, if you are
5360 the sender and there are no email recipients, the newsgroup name will be
5361 listed after the &quot;To: &quot;. </DD><P>
5363  <DT>SIZE:</DT>
5364  <DD>The number in parentheses is the number of characters in the message.
5365 It may have a suffix of K, M, or G which means the number should be
5366 multiplied by one thousand, one million, or one billion to get the
5367 size of the message.</DD><P>
5369  <DT>SUBJECT:</DT>
5370  <DD>As much of the message's subject line as will fit on the screen.</DD>
5371 </DL>
5373 <P><UL>
5374 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5375 </UL>
5377 &lt;End of help on this topic&gt;
5378 </BODY>
5379 </HTML>
5380 ============= h_mail_view ========================
5381 <HTML>
5382 <HEAD>
5383 <TITLE>MESSAGE TEXT SCREEN</TITLE>
5384 </HEAD>
5385 <BODY>
5386 <H1>MESSAGE TEXT SCREEN</H1>
5387 <!--chtml if pinemode="function_key"-->
5388 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>
5389 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
5390 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>
5391 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>
5392 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>
5393 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>
5394 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>
5395 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>
5396 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>
5397 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>
5398 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>
5399 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>
5400 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>
5401 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>
5402 <BR>
5403 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5404 ------------------------------<BR>
5405 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5406 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5407 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
5408 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
5409 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
5410 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
5411 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
5412 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
5413 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
5414 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
5415 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
5416 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5417 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5418 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
5419 <!--chtml else-->
5420 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
5421 ---------------------------------<BR>
5422 <BR>
5423 &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>
5424 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>
5425 &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>
5426 &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>
5427 &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>
5428 &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>
5429 &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>
5430 &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>
5431 &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>
5432 <BR>
5433 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
5434 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
5435 &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>
5436 &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>
5437 &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>
5438 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>
5439 <BR>
5440 General&nbsp;Alpine&nbsp;Commands<BR>
5441 ---------------------<BR>
5442 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
5443 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
5444 &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>
5445 &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>
5446 &nbsp;&nbsp;&nbsp;&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>
5447 <!--chtml endif-->
5450 NOTE:
5451 <OL>
5452  <LI>For help on a particular command, highlight the bold text associated
5453 with it above and hit Return.
5454  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5455 </OL>
5457 <H2>Description of the MESSAGE TEXT Screen</H2>
5459 The top line of the view message screen displays status
5460 information about the currently open collection and folder and about the
5461 current message.  It shows the name of the collection in angle brackets
5462 and then the name of the folder.  The line also displays the number
5463 of messages in the folder, the number of the current message and the
5464 percentage of the current message that has been displayed on the screen.
5465 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
5466 right corner.
5467 If the message has been answered (but not deleted) &quot;ANS&quot; will show
5468 in the corner.
5471 NOTE: to rapidly move to the end of a message, hit the
5472 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5473 (or Ctrl-W) key followed
5474 by Ctrl-V.  Similarly,
5475 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5476 followed by Ctrl-Y will take you to the beginning of
5477 a message.
5479 <H2>Explanation of Alternate Character Sets</H2>
5481 Alpine attempts to stay out of the way so that it won't prevent you from
5482 viewing mail in any character set.  It will simply send the message to
5483 your display device.  If the device is capable of displaying the
5484 message as it was written it will do so.  If not, the display may be
5485 partially or totally incorrect.
5486 If the message contains characters that are not representable in your 
5487 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
5488 variable in your configuration, then a warning message will be printed
5489 to your screen at the beginning of the message display.
5490 It is probably best to use UNIX Alpine in a terminal emulator
5491 capable of displaying UTF-8 characters.
5492 See <A HREF="h_config_char_set">Display Character Set</A> for a little
5493 more information about character set settings.
5495 <P><UL>
5496 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5497 </UL>
5499 &lt;End of help on this topic&gt;
5500 </BODY>
5501 </HTML>
5502 ======= h_index_cmd_select =======
5503 <HTML>
5504 <HEAD>
5505 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
5506 </HEAD>
5507 <BODY>
5508 <H1>Selecting: Select and WhereIs/Select</H1>
5510 Aggregate operations give you the ability to process a group of messages
5511 at once.  Acting on multiple messages requires two steps: (1) selecting a
5512 set of messages and then; (2) applying a command to that set. The first
5513 part is handled by the select command.  Select allows you to
5514 select messages based on their status (read, answered, etc.), contents,
5515 date, size, or keywords.
5516 You may also select based on one of your Rules or based on threads,
5517 and there are quick options to select a specific message or range of messages,
5518 to select the current message, or to select all messages.
5521 We describe the various selection criteria briefly:
5524 <DL>
5525 <DT>select All</DT>
5526 <DD> Marks all the messages in the folder as selected.
5527 </DD>
5529 <DT>select Cur</DT>
5530 <DD> Selects the currently highlighted message or currently highlighted
5531 set of messages if in a threaded view.
5532 </DD>
5534 <DT>select by Number</DT>
5535 <DD> Select by message number. This may be a comma-separated list instead or
5536 a single entry.
5537 Each element in the list may be either a single message number or a range
5538 of numbers with a dash between the lowest and highest member of the range.
5539 Some examples are 7 to select only message number 7; 2-5 to select messages
5540 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
5541 The word &quot;end&quot; or the character &quot;$&quot; may be used as a 
5542 substitute for the highest numbered message in the folder, while the
5543 character &quot;.&quot; represents the message number holding the position
5544 of the cursor in the folder.
5545 If in a separate thread index where the numbers refer to threads instead of
5546 to messages, then you will be selecting all of the messages in the
5547 referenced threads instead of selecting by message number.
5548 </DD>
5550 <DT>select by Date</DT>
5551 <DD> Select by either the date stored in the Date headers of each message,
5552 or by the date when the messages arrived.
5553 This does not adjust for different time zones, but just checks to see what
5554 day the message was sent on.
5555 You may type in a date. If you do, the date should be in the form
5556 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
5557 For example,
5558 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
5560 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
5561 If the date you want is close to the current date, it is probably
5562 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
5563 is displayed, instead of typing in the date yourself.
5564 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
5565 the date of the currently highlighted message. 
5567 There are six possible settings that are selected using the
5568 &quot;^W&nbsp;Toggle When&quot; command.
5569 Three of them select messages based on the Date headers.
5570 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
5571 and &quot;SENT ON&quot;.
5572 SINCE is all messages with the selected date or later.
5573 BEFORE is all messages earlier than the selected date (not including the day
5574 itself).
5575 ON is all messages sent on the selected date.
5576 The other three select messages in the same way but they use the arrival
5577 times of the messages instead of the Date headers included in the messages.
5578 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
5579 and &quot;ARRIVED ON&quot;.
5580 When you save a message from one folder to another the arrival time is
5581 preserved.
5582 </DD>
5584 <DT>select by Text</DT>
5585 <DD> Selects messages based on the message contents.
5586 This allows you to select a set of messages based on whether or not the
5587 message headers or message body contain specified text.
5588 You may look for text in the Subject, the From header,
5589 the To header, or the Cc header.
5590 You may also choose Recipient, which searches for the text in
5591 either the To or the Cc header;
5592 or Participant, which means To or Cc or From.
5593 Besides those specific header searches, you may also search the entire
5594 header and text of the message with &quot;All Text&quot;, or just the
5595 body of the message.
5597 To search for the absence of text, first type the &quot;! Not&quot; command
5598 before typing the specific type of text search.
5599 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5600 search for all messages that do not contain a particular word in their
5601 Subjects.
5603 If you choose a Subject search, you may use the subject from the current
5604 message by typing the &quot;^X Cur Subject&quot; command.
5605 You may then edit it further if you wish.
5606 For example, you might select the subject of a reply and edit the
5607 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5608 the original message being replied to.
5609 All of the other header searches allow you to use addresses from the
5610 headers of the current message if you want to.
5611 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5612 &quot;^W Cur Cc&quot;.
5613 In each case, if there is more than one address, only the first is offered.
5614 </DD>
5616 <DT>select by Status</DT>
5617 <DD> Selects messages based on their status.
5618 You may select all New, Important, Deleted, Answered, Recent, or Unseen
5619 messages.
5620 Or, if you first type the &quot;! Not&quot; command, you get not New,
5621 or not Important, and so on.
5622 If you select Deleted messages, you will get all messages with their
5623 Deleted flag set.
5624 Likewise for Important messages, all messages that you have flagged as
5625 being Important with the
5626 <A HREF="h_common_flag">Flag</A> command.
5627 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5628 because they try to match what you see on the screen by default.
5629 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5630 and Unanswered.
5631 If you have looked at the message, or deleted it, or answered it; then it
5632 is not considered &quot;New &quot;.
5633 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5635 &quot;Answered&quot; is another one that is a little different.
5636 It means that the message has been Answered <EM>and</EM> is not deleted.
5637 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5638 the opposite of &quot;Answered&quot;!
5639 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5640 both Unanswered <EM>and</EM> not deleted.
5642 The other two types were added later because the special nature of the
5643 New flag was not what was wanted by all users.
5644 New does match what you see in the index by default, but if you use
5645 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5646 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5647 be exactly what you want.
5648 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5649 they are deleted or answered, and
5650 &quot;Recent&quot; selects all of the messages that have been added to
5651 the folder since you started this Alpine session.
5652 (That's not technically quite true. If there are multiple mail clients
5653 reading an IMAP mailbox, each message will be marked as Recent in only
5654 one of the client's sessions.)
5655 </DD>
5657 <DT>select by siZe</DT>
5658 <DD> Selects messages based on their size being smaller than or larger
5659 than the size you specify.
5660 The size is the number of bytes.
5661 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
5662 the number.
5663 For example, 7K is the same as 7000.
5664 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
5665 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
5666 Use the &quot;^W&quot; command to toggle back and forth between Smaller
5667 and Larger.
5668 </DD>
5670 <DT>select by Keyword</DT>
5671 <DD> Selects messages that either have or do not have
5672 (using the &quot;!&nbsp;Not&quot; command)
5673 a particular <A HREF="h_config_keywords">Keyword</A> set.
5674 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
5675 command to select one from your list of keywords.
5677 <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.
5678 </DD>
5680 <DT>select by Rule</DT>
5681 <DD> Selects messages that either match or don't match
5682 (using the &quot;!&nbsp;Not&quot; command)
5683 one of the Rules you have defined.
5684 The most likely method of filling in the Rule is to use the
5685 &quot;^T&nbsp;To&nbsp;List&quot;
5686 command to select one of your Rules.
5687 All of the Rules you have defined will be in the list, including
5688 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
5689 They may not all make sense for this purpose, but they are all there for
5690 flexibility.
5691 You might find it useful to define some rules solely for the purpose
5692 of being used by the Select command.
5693 There is a special category for such Rules. They are called Search Rules.
5695 Unfortunately, Alpine does not allow all possible Rules to be defined.
5696 For example, there is no logical OR operation.
5697 OR is accomplished in the Filter Rules or the other types of Rules by
5698 simply defining two rules, one that matches the first part of the OR
5699 and another that matches the second part.
5700 But you can't do that here, since you only have a single Rule to work with.
5701 Likewise, the order of Rules is usually important.
5702 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5703 a message, then that stops the search for a further match.
5704 This means that you may be confused if you try to use Select by Rule to
5705 check your Filter rules because the order is important when filtering but
5706 is not considered here.
5707 </DD>
5709 <DT>select by tHread</DT>
5710 <DD> Selects all of the messages in the current thread.
5711 </DD>
5712 </DL>
5714 After you have an initial selection, the next and subsequent selection
5715 commands modify the selection.
5716 The select command changes. It first gives
5717 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
5718 &quot;unselect Current&quot;,
5719 &quot;Broaden selection&quot; (implements a logical OR), and
5720 &quot;Narrow selection&quot; (implements a logical AND).
5721 After you choose either Broaden or Narrow, you then choose one of the
5722 selection criteria listed above (by Text or Number or ...).
5723 You may use select as many times as you wish to get the selected set right.
5726 The WhereIs command has a feature (Ctrl-X) to
5727 select all the messages that match the WhereIs search. WhereIs searches
5728 through just the text that appears on the MESSAGE INDEX screen.
5729 This method is often slower than using the select command itself, unless the
5730 line you are looking for is not too far away in the index.
5733 The availability of the aggregate operations commands is determined by the
5734 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5735 Feature-List option in your Alpine
5736 configuration, which defaults to set.
5737 The features
5738 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
5740 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
5741 affect the behavior of the Select command.
5744 &lt;End of help on this topic&gt;
5745 </BODY>
5746 </HTML>
5747 ======= h_select_rule =======
5748 <HTML>
5749 <HEAD>
5750 <TITLE>Select: Rule</TITLE>
5751 </HEAD>
5752 <BODY>
5753 <H1>Select: Rule</H1>
5755 You are selecting messages that either match or don't match
5756 one of the Rules you have defined.
5757 You may either type the nickname of the Rule at the prompt, or use the
5758 &quot;^T&nbsp;To&nbsp;List&quot;
5759 command to select one of your Rules.
5760 All of the Rules you have defined will be in the list, including
5761 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
5762 They may not all make sense for this purpose, but they are all there for
5763 flexibility.
5764 Rules may be added by using the Setup/Rules screen off of the main Alpine
5765 menu.
5767 Unfortunately, Alpine does not allow all possible Rules to be defined.
5768 For example, there is no logical OR operation.
5769 OR is accomplished in the Filter Rules or the other types of Rules by
5770 simply defining two rules, one that matches the first part of the OR
5771 and another that matches the second part.
5772 But you can't do that here, since you only have a single Rule to work with.
5773 Likewise, the order of Rules is usually important.
5774 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5775 a message, then that stops the search for a further match.
5776 This means that you may be confused if you try to use Select by Rule to
5777 check your Filter rules because the order is important when filtering but
5778 is not considered here.
5781 &lt;End of help on this topic&gt;
5782 </BODY>
5783 </HTML>
5784 ======= h_select_text =======
5785 <HTML>
5786 <HEAD>
5787 <TITLE>Select: Text</TITLE>
5788 </HEAD>
5789 <BODY>
5790 <H1>Select: Text</H1>
5792 You are selecting messages based on the contents of the message.
5793 This allows you to select a set of messages based on whether or not the
5794 message headers or message body contain specified text.
5795 You may look for text in the Subject, the From header,
5796 the To header, or the Cc header.
5797 You may also choose Recipient, which searches for the text in
5798 either the To or the Cc header;
5799 or Participant, which means either the To header, or the Cc header,
5800 or the From header.
5801 Besides those specific header searches, you may also search the entire
5802 header and text of the message with &quot;All Text&quot;, or just the
5803 body of the message with &quot;Body&quot;.
5805 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
5806 before typing the specific type of text search.
5807 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5808 search for all messages that do not contain a particular word in their
5809 Subjects.
5811 If you choose a Subject search, you may use the subject from the current
5812 message by typing the &quot;^X Cur Subject&quot; command.
5813 You may then edit it further if you wish.
5814 For example, you might select the subject of a reply and edit the
5815 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5816 the original message being replied to.
5817 All of the other header searches allow you to use addresses from the
5818 headers of the current message if you want to.
5819 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5820 &quot;^W Cur Cc&quot;.
5821 In each case, if there is more than one address, only the first is offered.
5824 &lt;End of help on this topic&gt;
5825 </BODY>
5826 </HTML>
5827 ======= h_select_status =======
5828 <HTML>
5829 <HEAD>
5830 <TITLE>Select: Status</TITLE>
5831 </HEAD>
5832 <BODY>
5833 <H1>Select: Status</H1>
5835 You are selecting messages based on the status of the message.
5836 For example, whether or not the message has been marked Deleted or Important,
5837 or whether or not it has been Answered or is New.
5838 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
5839 opposite: not Deleted, not Important, and so on.
5841 If you select Deleted messages, you will get all messages with their
5842 Deleted flag set.
5843 Likewise for Important messages, all messages that you have flagged as
5844 being Important with the
5845 <A HREF="h_common_flag">Flag</A> command.
5846 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5847 because they try to match what you see on the screen by default.
5848 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5849 and Unanswered.
5850 If you have looked at the message, or deleted it, or answered it; then it
5851 is not considered &quot;New &quot;.
5852 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5854 &quot;Answered&quot; is another one that is a little different.
5855 It means that the message has been Answered <EM>and</EM> is not deleted.
5856 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5857 the opposite of &quot;Answered&quot;!
5858 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5859 both Unanswered <EM>and</EM> not deleted.
5861 (The New and Answered options may seem counter-intuitive.
5862 The reason it is done this way is
5863 because, by default, a Deleted message will show up with the &quot;D&quot;
5864 symbol in the MAIL INDEX screen even if it is New or Answered.
5865 The Delete symbol overrides the New and Answered symbols, because you
5866 usually don't care about the message anymore once you've deleted it.
5867 Similarly, you usually only care about whether a message is Answered or
5868 not if it is not Deleted.
5869 Once it is Deleted you've put it out of your mind.)
5871 The other two options were added later because the special nature of the
5872 New flag was not what was wanted by all users.
5873 New does match what you see in the index by default, but if you use
5874 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5875 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5876 be exactly what you expect.
5877 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5878 they are deleted or answered, and
5879 &quot;Recent&quot; selects all of the messages that have been added to
5880 the folder since you started this Alpine session.
5881 (That's not technically quite true. If there are multiple mail clients
5882 reading an IMAP mailbox, each message will be marked as Recent in only
5883 one of the client's sessions.
5884 That behavior can be convenienent for some purposes, like filtering, but
5885 it isn't usually what you expect when selecting.)
5888 &lt;End of help on this topic&gt;
5889 </BODY>
5890 </HTML>
5891 ======= h_index_cmd_apply =======
5892 <HTML>
5893 <HEAD>
5894 <TITLE>Apply Command</TITLE>
5895 </HEAD>
5896 <BODY>
5897 <H1>Apply Command</H1>
5899 Apply
5900 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
5901 is the second step of most aggregate operations.  Apply
5902 becomes active any time there is a defined set of selected messages.  The
5903 following commands can be applied to a selected message set: delete,
5904 undelete, reply, forward,
5905 <!--chtml if pinemode="os_windows"-->
5906 <!--chtml else--> 
5907 pipe,
5908 <!--chtml endif-->
5909 print, take address, save, export, bounce, and flag.
5912 The behavior of some of these commands in an aggregate sense is not easy to
5913 explain.  Try them out to see what they do.
5914 The feature
5915 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
5916 affects the behavior of the Apply command, as does the feature
5917 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
5920 &lt;End of help on this topic&gt;
5921 </BODY>
5922 </HTML>
5923 ======= h_index_cmd_zoom =======
5924 <HTML>
5925 <HEAD>
5926 <TITLE>ZoomMode Command</TITLE>
5927 </HEAD>
5928 <BODY>
5929 <H1>ZoomMode Command</H1>
5931 Another action you might want to take on a set of selected messages is to
5932 zoom in on them.  Like apply, zoom only becomes active when messages have
5933 been selected.
5934 ZoomMode
5935 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
5936 is a toggle command that allows you to
5937 zoom-in (and only see the selected messages) and zoom-out (to see all
5938 messages in the folder).  Neither apply nor zoom removes the markings that
5939 define the selected set; you need to use a select command in order
5940 to do that.
5943 &lt;End of help on this topic&gt;
5944 </BODY>
5945 </HTML>
5946 ======= h_index_collapse_expand =======
5947 <HTML>
5948 <HEAD>
5949 <TITLE>Collapse/Expand Command</TITLE>
5950 </HEAD>
5951 <BODY>
5952 <H1>Collapse/Expand Command</H1>
5954 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
5955 the folder is sorted by either Threads or OrderedSubject, and the
5956 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
5957 is set to something other than &quot;none&quot;.
5958 By default, this command collapses or expands the subthread that starts at
5959 the currently highlighted message, if any.
5960 If the subthread is already collapsed, then this command expands it.
5961 If the subthread is expanded, then this command collapses it.
5962 If there are no more messages below the current message in the
5963 thread tree (that is, there are no replies to the current message) then
5964 this command does nothing.
5967 The behavior of this command is affected by the option
5968 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
5969 Normally, this command Collapses or Expands the subthread that
5970 starts at the currently highlighted message.
5971 If the above option is set, then this command Collapses or Expands the
5972 entire current thread instead of just the subthread.
5973 The current thread is simply the top-level thread that contains the
5974 current message.
5977 &lt;End of help on this topic&gt;
5978 </BODY>
5979 </HTML>
5980 ======= h_index_cmd_sort =======
5981 <HTML>
5982 <HEAD>
5983 <TITLE>Sort Command</TITLE>
5984 </HEAD>
5985 <BODY>
5986 <H1>Sort Command</H1>
5988 In Alpine's generic configuration, messages are presented in the order in
5989 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
5990 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
5991 You can also re-sort the folder on demand with the sort
5992 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
5993 command.
5994 Your sorting options are:
5996 <UL>
5997  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
5998  <LI> <A HREF="h_index_sort_date">D</A>ate
5999  <LI> <A HREF="h_index_sort_subj">S</A>ubject
6000  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
6001  <LI> t<A HREF="h_index_sort_thread">H</A>read
6002  <LI> <A HREF="h_index_sort_from">F</A>rom
6003  <LI> si<A HREF="h_index_sort_size">Z</A>e
6004  <LI> scor<A HREF="h_index_sort_score">E</A>,
6005  <LI> <A HREF="h_index_sort_to">T</A>o
6006  <LI> <A HREF="h_index_sort_cc">C</A>c
6007 </UL>
6010 The Reverse option will toggle the order the index is currently
6011 sorted by, but will not change the relative sort order.
6014 Sorting a folder does not actually rearrange the way the folder is saved,
6015 it just re-arranges how the messages are presented to you.  This means
6016 that Alpine has to do the work of sorting every time you change sort order.
6017 Sometimes, especially with PC-Alpine or with large folders, this could take
6018 a while.
6021 &lt;End of help on this topic&gt;
6022 </BODY>
6023 </HTML>
6024 ======= h_index_sort_default =======
6025 <HTML>
6026 <HEAD>
6027 <TITLE>SORT OPTION: Default</TITLE>
6028 </HEAD>
6029 <BODY>
6030 <H1>SORT OPTION: Default</H1>
6032 The <EM>Default</EM> sort option just means to use the default sort order
6033 set in the
6034 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
6035 option in Setup/Config.
6038 &lt;End of help on this topic&gt;
6039 </BODY>
6040 </HTML>
6041 ======= h_index_sort_arrival =======
6042 <HTML>
6043 <HEAD>
6044 <TITLE>SORT OPTION: Arrival</TITLE>
6045 </HEAD>
6046 <BODY>
6047 <H1>SORT OPTION: Arrival</H1>
6049 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6050 in the order that they exist in the folder.  This is usually the same as the
6051 order in which they arrived.  This option is comparable to not sorting
6052 the messages at all.
6055 &lt;End of help on this topic&gt;
6056 </BODY>
6057 </HTML>
6058 ======= h_index_sort_date =======
6059 <HTML>
6060 <HEAD>
6061 <TITLE>SORT OPTION: Date</TITLE>
6062 </HEAD>
6063 <BODY>
6064 <H1>SORT OPTION: Date</H1>
6066 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6067 according to the date and time they were
6068 sent.
6071 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
6072 identical to sorting by &quot;Arrival&quot;.
6075 &lt;End of help on this topic&gt;
6076 </BODY>
6077 </HTML>
6078 ======= h_index_sort_subj =======
6079 <HTML>
6080 <HEAD>
6081 <TITLE>SORT OPTION: Subject</TITLE>
6082 </HEAD>
6083 <BODY>
6084 <H1>SORT OPTION: Subject</H1>
6086 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6087 by subject. 
6090 Messages with the same subject are
6091 first grouped together, and then the groups of like-subject messages
6092 are arranged alphabetically.
6095 Alpine ignores leading &quot;Re:&quot; and
6096 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
6097 likeness and alphabetical order of subject lines.
6100 &lt;End of help on this topic&gt;
6101 </BODY>
6102 </HTML>
6103 ======= h_index_sort_ordsubj =======
6104 <HTML>
6105 <HEAD>
6106 <TITLE>SORT OPTION: OrderedSubject</TITLE>
6107 </HEAD>
6108 <BODY>
6109 <H1>SORT OPTION: OrderedSubject</H1>
6111 The <EM>OrderedSubject</EM> sort option arranges messages in the
6112 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
6113 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
6116 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
6117 messages by the date of the oldest message in the group.
6120 This sort method provides for pseudo threading of conversations within
6121 a folder.
6122 You may want to try sorting by Thread instead.
6125 &lt;End of help on this topic&gt;
6126 </BODY>
6127 </HTML>
6128 ======= h_index_sort_thread =======
6129 <HTML>
6130 <HEAD>
6131 <TITLE>SORT OPTION: Thread</TITLE>
6132 </HEAD>
6133 <BODY>
6134 <H1>SORT OPTION: Thread</H1>
6136 The <EM>Thread</EM> sort option arranges messages in the
6137 MESSAGE&nbsp;INDEX by grouping all messages that indicate
6138 they are part of a conversation (discussion thread) taking
6139 place within a mailbox or newsgroup.  This indication is
6140 based on information in the message's header -- specifically
6141 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
6144 &lt;End of help on this topic&gt;
6145 </BODY>
6146 </HTML>
6147 ======= h_index_sort_from =======
6148 <HTML>
6149 <HEAD>
6150 <TITLE>SORT OPTION: From</TITLE>
6151 </HEAD>
6152 <BODY>
6153 <H1>SORT OPTION: From</H1>
6155 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6156 by the name of the author of the message.
6159 Messages with the same author are grouped together. Groups of
6160 messages are then put into alphabetical order according to message
6161 author.
6164 &lt;End of help on this topic&gt;
6165 </BODY>
6166 </HTML>
6167 ======= h_index_sort_size =======
6168 <HTML>
6169 <HEAD>
6170 <TITLE>SORT OPTION: Size</TITLE>
6171 </HEAD>
6172 <BODY>
6173 <H1>SORT OPTION: Size</H1>
6175 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6176 by their relative sizes.
6179 &lt;End of help on this topic&gt;
6180 </BODY>
6181 </HTML>
6182 ======= h_index_sort_score =======
6183 <HTML>
6184 <HEAD>
6185 <TITLE>SORT OPTION: Score</TITLE>
6186 </HEAD>
6187 <BODY>
6188 <H1>SORT OPTION: Score</H1>
6190 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6191 by their scores.
6194 Messages with the same score are sorted in arrival order.
6195 Scores are something you create using the
6196 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
6199 &lt;End of help on this topic&gt;
6200 </BODY>
6201 </HTML>
6202 ======= h_index_sort_to =======
6203 <HTML>
6204 <HEAD>
6205 <TITLE>SORT OPTION: To</TITLE>
6206 </HEAD>
6207 <BODY>
6208 <H1>SORT OPTION: To</H1>
6210 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
6211 by the names of the recipients of the message.
6214 Messages with the same recipients are grouped together. Groups of
6215 messages are then put into alphabetical order according to message
6216 recipients.
6219 &lt;End of help on this topic&gt;
6220 </BODY>
6221 </HTML>
6222 ======= h_index_sort_cc =======
6223 <HTML>
6224 <HEAD>
6225 <TITLE>SORT OPTION: Cc</TITLE>
6226 </HEAD>
6227 <BODY>
6228 <H1>SORT OPTION: Cc</H1>
6230 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
6231 the names of the carbon copy addresses of the message.
6234 &lt;End of help on this topic&gt;
6235 </BODY>
6236 </HTML>
6237 ======= h_index_cmd_whereis =======
6238 <HTML>
6239 <HEAD>
6240 <TITLE>WhereIs Command</TITLE>
6241 </HEAD>
6242 <BODY>
6243 <H1>WhereIs Command</H1>
6245 The WhereIs
6246 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6247 command lets you search the MESSAGE INDEX for a word.
6248 It scans through whatever you see, usually the name of the author
6249 and the Subject line.
6250 WhereIs has special subcommands to let you find the beginning of the
6251 index (Ctrl-Y -- first message)
6252 or the end of the index (Ctrl-V -- last message).
6254 Note that WhereIs only searches through the visible text on the screen.
6255 For example, if only part of the Subject of a message is shown because it
6256 is long, then only the visible portion of the Subject is searched.
6257 Also note that WhereIs does not &quot;see&quot; the 
6258 &quot;X&quot; in column one of Index entries for selected messages
6259 so it can't be used to search for
6260 selected messages (use &quot;Zoom&quot; instead).
6262 If the feature
6263 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6264 is turned on,
6265 WhereIs can also be used as a quick way to select messages that match the
6266 string being searched for.
6267 Instead of typing carriage return to search for the next match, type
6268 Ctrl-X to select all matches.
6269 Once again, this only selects matches that are (or would be if the right
6270 index line was on the screen) visible.
6271 Truncated From lines or Subjects will cause matches to be missed.
6272 Although WhereIs is sometimes convenient for quick matching, the Select
6273 command is usually more powerful and usually faster.
6276 &lt;End of help on this topic&gt;
6277 </BODY>
6278 </HTML>
6279 ======= h_view_cmd_whereis =======
6280 <HTML>
6281 <HEAD>
6282 <TITLE>WhereIs Command</TITLE>
6283 </HEAD>
6284 <BODY>
6285 <H1>WhereIs Command</H1>
6287 The WhereIs
6288 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6289 command does a &quot;find in current message&quot; operation.  You
6290 type in text and Alpine will try to find it in the message you are
6291 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
6292 or end (Ctrl-V) of the message.
6293 That is, to rapidly move to the end of a message, hit the 
6294 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6295 (or Ctrl-W) key followed
6296 by Ctrl-V.  Similarly,
6297 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6298 followed by Ctrl-Y will take you to the beginning of a message.
6301 &lt;End of help on this topic&gt;
6302 </BODY>
6303 </HTML>
6304 ======= h_view_cmd_hilite =======
6305 <HTML>
6306 <HEAD>
6307 <TITLE>View Hilite and Next item/Previous item</TITLE>
6308 </HEAD>
6309 <BODY>
6310 <H1>View Hilite and Next item/Previous item</H1>
6312 Sometimes messages may be in the form of formatted HTML text
6313 or they may contain URLs or Web server hostnames.
6314 When any of the features
6315 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
6316 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
6317 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
6319 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
6320 are enabled, Alpine will represent such selectable items in the text
6321 in bold typeface.  One of the selectable items will be displayed in
6322 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
6323 Press the Return key to view the currently selected item.
6326 The Up and Down Arrows keys can be used to change the selected item
6327 (also see the feature
6328 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
6329 If there are no selectable items in the direction of the arrow you
6330 pressed, Alpine will scroll the display in that direction until one
6331 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
6332 items in the message text, use the Previous and Next item commands,
6333 <!--chtml if pinemode="function_key"-->F5 and F6
6334 <!--chtml else-->^B and ^F<!--chtml endif-->.
6337 &lt;End of help on this topic&gt;
6338 </BODY>
6339 </HTML>
6340 ======= h_view_cmd_viewattch =======
6341 <HTML>
6342 <HEAD>
6343 <TITLE>ViewAttch Command</TITLE>
6344 </HEAD>
6345 <BODY>
6346 <H1>ViewAttch Command</H1>
6349 The View/Save Attachment
6350 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
6351 command allows you to handle MIME attachments to a message you have
6352 received.  Alpine shows you a list of the message attachments -- you just
6353 choose the attachment you want.  You may either view or save the
6354 selected attachment.
6357 Because many attachments require external programs for display, there
6358 is some system configuration that has to happen before you can
6359 actually display attachments.  Hopefully much of that will have been
6360 done already by your system administrator.  MIME configuration is
6361 handled with the &quot;mailcap&quot; configuration file.  (See the section 
6362 on configuration in the
6363 <A HREF="h_news">release notes</A> for more information.)
6366 &lt;End of help on this topic&gt;
6367 </BODY>
6368 </HTML>
6369 ======= h_index_cmd_expunge =======
6370 <HTML>
6371 <HEAD>
6372 <TITLE>Expunge/Exclude Command</TITLE>
6373 </HEAD>
6374 <BODY>
6375 <H1>Expunge/Exclude Command</H1>
6377 Expunge/Exclude
6378 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
6379 is the command Alpine uses to actually remove all messages
6380 marked for deletion.  With regular email files, expunge literally deletes
6381 the text from the current folder.  With newsgroups or shared mailboxes,
6382 you don't have permission to actually remove the message, so it is an
6383 exclude -- Alpine removes the message from your view of the folder even
6384 though it is not technically gone.
6386 <P> A selective expunge command is available in IMAP folders that support 
6387 the UID EXPUNGE extension in <A 
6388 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
6389 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
6390 as a subcommand of the apply command. If some selected messages are marked 
6391 deleted, then the apply command will offer the eXpunge command, which when 
6392 executed will only expunge those messages that are selected and deleted.
6394 <P> 
6395 Observe that the expunge command (when not used from the apply command) 
6396 will expunge/exclude all deleted messages from the folder, and so all 
6397 messages marked deleted will be expunged, regardless of if they are 
6398 selected or not. In other words, there is no protection against 
6399 potentially expunging more messages than only those that have been 
6400 selected and deleted.
6403 The configuration features
6404 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
6406 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
6407 affect the behavior of the Expunge command.
6410 &lt;End of help on this topic&gt;
6411 </BODY>
6412 </HTML>
6413 ======= h_common_compose =======
6414 <HTML>
6415 <HEAD>
6416 <TITLE>Compose Command</TITLE>
6417 </HEAD>
6418 <BODY>
6419 <H1>Compose Command</H1>
6421 The Compose command takes you into the Alpine message composer where you
6422 can start a new message for sending.  This is where you type in the
6423 message's text and specify its recipient list (the &quot;To:&quot;
6424 address), where copies should be directed (e.g., &quot;Fcc&quot;,
6425 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
6426 be attached to the message.
6429 When you type this command, Alpine will also automatically check for any
6430 interrupted (i.e., a message that was being composed when your modem
6431 or network connection was broken) or previously postponed messages and
6432 offer you a chance to continue working on those.
6435 <UL>   
6436 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6437 </UL><P>
6438 &lt;End of help on this topic&gt;
6439 </BODY>
6440 </HTML>
6441 ======= h_common_index =======
6442 <HTML>
6443 <HEAD>
6444 <TITLE>Message Index Command</TITLE>
6445 </HEAD>
6446 <BODY>
6447 <H1>Message Index Command</H1>
6449 The Index command takes you to the MESSAGE INDEX screen that displays a
6450 summary caption for each message in the currently-open folder. One
6451 message will be highlighted; this is the &quot;Current&quot; message.
6452 The message commands available from this screen (e.g. View, Reply,
6453 Forward, Delete, Print, Save, etc) apply to the current message.
6456 &lt;End of help on this topic&gt;
6457 </BODY>
6458 </HTML>
6459 ======= h_common_folders =======
6460 <HTML>
6461 <HEAD>
6462 <TITLE>Folder List Command</TITLE>
6463 </HEAD>
6464 <BODY>
6465 <H1>Folder List Command</H1>
6467 This Folder List command takes you to the FOLDER LIST screen that displays
6468 the names of all your message folders and allows you to view, rename,
6469 delete, and add folders.  You can open (view) a different folder than the
6470 one currently open by highlighting the desired one (using the arrow keys
6471 or their control-key equivalents) and pressing RETURN.
6474 If you have multiple folder collections defined (see the Help text for
6475 the FOLDER LIST screen to learn more about Collections), you may need
6476 to press Return to expand the collection and display all of the
6477 folders in it.
6480 &lt;End of help on this topic&gt;
6481 </BODY>
6482 </HTML>
6483 ======= h_main_addrbook =======
6484 <HTML>
6485 <HEAD>
6486 <TITLE>Address Book Command</TITLE>
6487 </HEAD>
6488 <BODY>
6489 <H1>Address Book Command</H1>
6491 This command, available only from the MAIN MENU, takes you
6492 to the ADDRESS BOOK management screen.  From here, your personal address
6493 book(s) may be updated.
6496 &lt;End of help on this topic&gt;
6497 </BODY>
6498 </HTML>
6499 ======= h_main_setup =======
6500 <HTML>
6501 <HEAD>
6502 <TITLE>Setup Command</TITLE>
6503 </HEAD>
6504 <BODY>
6505 <H1>Setup Command</H1>
6507 The Setup command, available only from the MAIN MENU, prompts you for
6508 one of several configuration screens, including the SETUP CONFIGURATION 
6509 screen, by which you may activate optional Alpine features.
6512 &lt;End of help on this topic&gt;
6513 </BODY>
6514 </HTML>
6515 ======= h_main_release_notes =======
6516 <HTML>
6517 <HEAD>
6518 <TITLE>Release Notes Command</TITLE>
6519 </HEAD>
6520 <BODY>
6521 <H1>Release Notes Command</H1>
6523 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
6524 as well as pointers to further information such as history and legal notes.
6527 &lt;End of help on this topic&gt;
6528 </BODY>
6529 </HTML>
6530 ======= h_main_kblock =======
6531 <HTML>
6532 <HEAD>
6533 <TITLE>Keyboard Lock Command</TITLE>
6534 </HEAD>
6535 <BODY>
6536 <H1>Keyboard Lock Command</H1>
6538 This command allows your Alpine session to be protected
6539 during a temporary absence from your terminal.
6542 &lt;End of help on this topic&gt;
6543 </BODY>
6544 </HTML>
6545 ======= h_main_journal =======
6546 <HTML>
6547 <HEAD>
6548 <TITLE>Journal Command</TITLE>
6549 </HEAD>
6550 <BODY>
6551 <H1>Journal Command</H1>
6553 This command displays a list of all the status messages Alpine has
6554 displayed (on the third line from the bottom of the screen). This may
6555 be useful if a message disappeared before you had a chance to read it.
6558 &lt;End of help on this topic&gt;
6559 </BODY>
6560 </HTML>
6561 ======= h_common_role =======
6562 <HTML>
6563 <HEAD>
6564 <TITLE>Role Command</TITLE>
6565 </HEAD>
6566 <BODY>
6567 <H1>Role Command</H1>
6569 The Role command is similar to the Compose command except that it starts
6570 off by letting you select a <A HREF="h_rules_roles">role</A>
6571 to be used for the composition.
6572 You may set up alternate roles by using Setup/Rules/Roles.
6575 &lt;End of help on this topic&gt;
6576 </BODY>
6577 </HTML>
6578 ======= h_common_conditional_cmds =======
6579 <HTML>
6580 <HEAD>
6581 <TITLE>Conditional Commands</TITLE>
6582 </HEAD>
6583 <BODY>
6584 <H1>Conditional Commands</H1>
6586 The presence or absence of certain commands, particularly in the
6587 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
6588 whether or not specific features are set in your Alpine configuration.  
6589 (You can access the SETUP CONFIGURATION screen, where they are found, from 
6590 Alpine's MAIN MENU.)  To see if a desired command's availability is
6591 conditioned on a feature setting, see the command's help text (highlight
6592 the phrase associated with the command and hit Return).
6595 Also note that some
6596 commands may be administratively disabled by your system manager;
6597 if they don't work, please check with your local help desk.
6600 <UL>   
6601 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6602 </UL><P>
6603 &lt;End of help on this topic&gt;
6604 </BODY>
6605 </HTML>
6606 ======= h_common_pipe =======
6607 <HTML>
6608 <HEAD>
6609 <TITLE>Pipe Command</TITLE>
6610 </HEAD>
6611 <BODY>
6612 <H1>Pipe Command</H1>
6614 Pipe
6615 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
6616 allows you to send a message to a specified Unix command for external
6617 processing.
6618 This command's availability is controlled by the
6619 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
6620 feature.
6621 By default, the processed text of the message is sent to the command
6622 you specify and the output is captured by Alpine and shown to you.
6623 When you run the pipe command, there are some sub-commands which may be
6624 used to alter this behavior.
6625 These sub-commands are described <A HREF="h_pipe_command">here</A>.
6628 &lt;End of help on this topic&gt;
6629 </BODY>
6630 </HTML>
6631 ======= h_common_goto =======
6632 <HTML>
6633 <HEAD>
6634 <TITLE>Goto Command</TITLE>
6635 </HEAD>
6636 <BODY>
6637 <H1>Goto Command</H1>
6639 Goto
6640 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
6641 is the command that lets you bypass Alpine's folder selection screens
6642 and jump directly to a new folder.  You can select any folder in the
6643 world: one in your current collection, one in a different collection or
6644 one in a collection you've never even used before.
6647 Alpine will help you as much as possible to narrow in on the folder you want.
6648 However, if the folder is outside of your defined collections, you are
6649 going to have to enter the exact folder location using the correct
6650 <A HREF="h_valid_folder_names">syntax</A>
6651 for a remote folder and/or fully-qualified path name.
6654 &lt;End of help on this topic&gt;
6655 </BODY>
6656 </HTML>
6657 ======= h_common_nextnew =======
6658 <HTML>
6659 <HEAD>
6660 <TITLE>NextNew Command</TITLE>
6661 </HEAD>
6662 <BODY>
6663 <H1>NextNew Command</H1>
6665 When you press the TAB key, Alpine advances to the next
6666 &quot;interesting&quot; message.
6667 This will be the next message you have not seen before, or the next message
6668 you have flagged Important, whichever comes first.
6669 Unread messages that have been deleted are not considered interesting.
6670 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
6671 articles after you have read them if you want to remove them from future
6672 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
6673 more information.)
6676 The NextNew command is affected by the feature
6677 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
6678 which causes Alpine to only consider Unread messages interesting, not messages
6679 flagged Important.
6682 This command behaves a little differently when it finds there are no more
6683 interesting messages left in the current folder.
6684 If the current folder is one of your Incoming Message Folders
6685 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
6686 or it is a newsgroup, then Alpine will try to find the next folder or
6687 newsgroup that contains <EM>Recent</EM> messages and will ask you
6688 if you want to open that folder.
6689 This behavior may be modified by using the
6690 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
6691 feature that causes Alpine to look for Unseen messages instead of Recent
6692 messages.
6693 The NextNew command's behavior is also affected by the configuration features
6694 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
6696 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
6699 &lt;End of help on this topic&gt;
6700 </BODY>
6701 </HTML>
6702 ======= h_common_jump =======
6703 <HTML>
6704 <HEAD>
6705 <TITLE>Jump Command</TITLE>
6706 </HEAD>
6707 <BODY>
6708 <H1>Jump Command</H1>
6710 This is Alpine's way of allowing you to go straight to a specific message.
6711 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
6712 configured such that typing in any number automatically jumps you to that
6713 message 
6714 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
6715 in the SETUP CONFIGURATION).
6718 &lt;End of help on this topic&gt;
6719 </BODY>
6720 </HTML>
6721 ======= h_common_flag =======
6722 <HTML>
6723 <HEAD>
6724 <TITLE>Flag Command</TITLE>
6725 </HEAD>
6726 <BODY>
6727 <H1>Flag Command</H1>
6729 Flag
6730 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6731 is the command that allows users to manipulate the status flags that
6732 appear on the left side of the MESSAGE INDEX screen.  The most common
6733 use of this is to mark a message as important. This is something of a
6734 note to yourself to get back to that message.  You may also use the
6735 flag command to set (or unset) the flags that indicate that a message
6736 is new, answered, deleted, or forwarded.<P>
6738 Provided the mail server supports it,
6739 you may also manipulate user-defined keywords
6740 for a message using the flag command.
6741 These keywords will be available if you use the Flag Details screen that you
6742 can get to after typing the
6743 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6744 command.
6745 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
6746 which are always present.
6747 You may add new keywords by using the Add KW command from the Flag Details screen
6748 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
6750 The availability of the flag command is determined by the
6751 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
6752 feature in your Alpine configuration. Also, it is possible that Flag could be
6753 administratively disabled by your system manager; if it doesn't work,
6754 please check with your local help desk before reporting a bug.
6755 The behavior of the flag command may be modified by the
6756 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
6757 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
6760 &lt;End of help on this topic&gt;
6761 </BODY>
6762 </HTML>
6763 ======= h_common_hdrmode =======
6764 <HTML>
6765 <HEAD>
6766 <TITLE>HdrMode Command</TITLE>
6767 </HEAD>
6768 <BODY>
6769 <H1>HdrMode Command</H1>
6771 Every email message comes with some header lines that you normally
6772 don't see (and don't want to see).
6773 These include anywhere from 3-20 lines (or more) added by the
6774 Internet mail transport system to record the route your message took,
6775 for diagnostic purposes.
6776 These are normally of no import and simply
6777 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
6778 This also includes other non-standard headers the message may contain.
6779 If you want to see these headers, there is a way to reveal them.
6782 The Header Mode
6783 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6784 command is a toggle that controls Alpine's handling of these header
6785 lines.  Normally, full headers is &quot;off&quot; and you only see a
6786 few lines about who a message is to and who it is from.  When you
6787 press
6788 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6789 to turn full headers on, Alpine will show you
6790 the normal header lines as well as delivery headers, comment headers,
6791 MIME headers, and any other headers present.
6794 Several different Alpine commands honor the header mode -- it affects how
6795 messages are displayed, how they appear in forward and reply email, how
6796 they are printed, how they are saved, and how they are exported.
6797 <!--chtml if pinemode="os_windows"-->
6798 <!--chtml else--> 
6799 The pipe command is also affected.
6800 <!--chtml endif-->
6803 The presence or absence of the Header Mode command is determined by the
6804 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6805 Feature-List option in your Alpine configuration.
6808 If you have also turned on the
6809 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
6810 option then the HdrMode command actually rotates through three states
6811 instead of just two.
6812 The first is the normal view with long quotes suppressed.
6813 The second is the normal view but with the long quotes included.
6814 The last enables the display of all headers in the message.
6815 When using Export, Pipe, Print, Forward, or Reply the quotes are
6816 never suppressed, so the first two states are identical.
6819 The behavior of the Header Mode command may be altered slightly by
6820 turning on the
6821 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
6822 Feature-List option in your Alpine configuration.
6823 In particular, it will cause the Header Mode to be persistent when moving
6824 from message to message instead of resetting to the default for each message.
6827 <UL>   
6828 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6829 </UL><P>
6830 &lt;End of help on this topic&gt;
6831 </BODY>
6832 </HTML>
6833 ======= h_common_print =======
6834 <HTML>
6835 <HEAD>
6836 <TITLE>Print Command</TITLE>
6837 </HEAD>
6838 <BODY>
6839 <H1>Print Command</H1>
6841 The Print
6842 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
6843 command allows you to print a copy of a message.
6844 There are many SETUP CONFIGURATION features that affect the
6845 Print command, including
6846 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
6847 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
6848 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
6849 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
6850 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
6851 You set up for printing by using the Printer option of the Setup command
6852 on the MAIN MENU.
6856 &lt;End of help on this topic&gt;
6857 </BODY>
6858 </HTML>
6859 ======= h_common_take =======
6860 <HTML>
6861 <HEAD>
6862 <TITLE>TakeAddr Command</TITLE>
6863 </HEAD>
6864 <BODY>
6865 <H1>TakeAddr Command</H1>
6868 With the Take Address
6869 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
6870 command, you can extract email addresses from an
6871 incoming message and save them in an address book.  This is an easy way
6872 to add to your address book and avoid having to remember the email
6873 addresses of the people who write to you.
6876 If the message is just to you individually, then you will only need to
6877 provide a nickname.  If the message contains more than one email address,
6878 then you will see an address
6879 selection screen that lets you choose the address you want to save into
6880 your address book, or lets you choose several of them add to a
6881 personal distribution list.
6884 Once you've added an entry to your address book, you can use it from the
6885 message composer by typing the nickname of the entry into one of the
6886 header fields (for example, into the To: field), or you can use ^T from
6887 the header field to select the entry from your address book.
6890 If the configuration feature
6891 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
6892 is set, the behavior of the Take command is altered slightly.
6895 &lt;End of help on this topic&gt;
6896 </BODY>
6897 </HTML>
6898 ======= h_ge_import =======
6899 <HTML>
6900 <HEAD>
6901 <TITLE>Import File Selection</TITLE>
6902 </HEAD>
6903 <BODY>
6904 <H1>Import File Selection</H1>
6906 You are importing a file that you previously
6907 exported from Alpine.
6908 You are now being asked for the name of that file.
6909 The easiest way to select a file is probably with the &quot;^T&quot;
6910 &quot;To Files&quot; command.
6911 Alternatively, you may type in a file name.
6912 It may be an absolute pathname.
6913 Otherwise, it is a file located in your home directory
6914 or current working directory
6915 <!--chtml if pinemode="running"-->
6916 (which, at least for your current Alpine &quot;session,&quot; 
6917 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
6918 <!--chtml endif-->, depending on the
6919 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
6920 In any case, you finish by typing a carriage return to accept the
6921 file name that is displayed.
6922 When the feature
6923 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
6924 is turned on you may use TAB to complete partially typed in names.
6926 You may cancel the import operation by typing &quot;^C&quot; after exiting
6927 this help.
6929 &lt;End of help on this topic&gt;
6930 </BODY>
6931 </HTML>
6932 ======= h_ge_allparts =======
6933 <HTML>
6934 <HEAD>
6935 <TITLE>Export Message File Selection</TITLE>
6936 </HEAD>
6937 <BODY>
6938 <H1>Export Message File Selection</H1>
6940 You are Exporting a message from an Alpine mail folder
6941 to a plain text file.
6942 You also have the option of exporting all of the attachments associated
6943 with the message.
6944 You are now being asked for the name of the file to export <EM>to</EM>.
6945 The easiest way to select a file is probably with the &quot;^T&quot;
6946 &quot;To Files&quot; subcommand.
6947 After returning from that subcommand you will still be allowed to
6948 edit the name you have selected.
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 The message you are exporting appears to have some attachments.
6965 If you wish to save <EM>all</EM> of the attachments at once,
6966 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
6967 saving of the attachments.
6968 You may turn it back off by typing &quot;^P&quot; again, which will now
6969 be labeled &quot;NoAllParts&quot; instead.
6970 If you want to save the parts the command displayed should be
6971 &quot;NoAllParts&quot;!
6972 When you choose to save attachments like this, the attachments will be saved
6973 in a newly created directory.
6974 That directory will have the same name as the file name you choose here,
6975 with the letters &quot;.d&quot; appended.
6976 If that directory already exists, then the letters &quot;.d_1&quot; will
6977 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
6978 is found.
6979 For example, if you select the file name
6981 <CENTER><SAMP>filename</SAMP></CENTER>
6983 to export the message to, then the directory used for the attachments will be
6985 <CENTER><SAMP>filename.d</SAMP></CENTER>
6987 or perhaps
6989 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
6991 The attachments will then be put into files inside that directory.
6992 The names for the attachment files will be derived from the attachments
6993 if possible.
6994 This is done in the same way as the default values are derived if you
6995 save them one at a time.
6996 (The &quot;filename&quot; parameter from the Content-Disposition header
6997 is the first choice. If that doesn't exist, the &quot;name&quot;
6998 parameter from the Content-Type header is used.)
6999 If a name for a particular attachment is not available, then the
7000 part number of the attachment is used, with the characters &quot;part_&quot;
7001 prepended.
7002 An example of that would be
7004 <CENTER><SAMP>part_2.1</SAMP></CENTER>
7006 If you want to save only some of the attachments or if you want more control
7007 over the directory and filename where an attachment is saved you may
7008 cancel out of this command and View the attachment list.
7009 From there you can save each attachment individually.
7011 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7012 this help.
7014 &lt;End of help on this topic&gt;
7015 </BODY>
7016 </HTML>
7017 ======= h_ge_export =======
7018 <HTML>
7019 <HEAD>
7020 <TITLE>Export File Selection</TITLE>
7021 </HEAD>
7022 <BODY>
7023 <H1>Export File Selection</H1>
7025 You are Exporting or Saving something from within the Alpine world
7026 (a message, an attachment, etc.)
7027 to a plain text file.
7028 You are now being asked for the name of the file to export <EM>to</EM>.
7029 The easiest way to select a file is probably with the &quot;^T&quot;
7030 &quot;To Files&quot; subcommand.
7031 After returning from that subcommand you will still be allowed to
7032 edit the name you have selected.
7033 Alternatively, you may type in a file name.
7034 It may be an absolute pathname.
7035 Otherwise, it is a file located in your home directory
7036 or current working directory
7037 <!--chtml if pinemode="running"-->
7038 (which, at least for your current Alpine &quot;session,&quot; 
7039 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7040 <!--chtml endif-->, depending on the
7041 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7042 In any case, you finish by typing a carriage return to accept the
7043 file name that is displayed.
7044 When the feature
7045 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7046 is turned on you may use TAB to complete partially typed in names.
7048 If the object you are exporting is a message with some attachments,
7049 you may wish to save all of the attachments by typing the &quot;^P&quot;
7050 &quot;AllParts&quot; command to turn on saving of the attachments.
7051 This subcommand will only be visible if the message actually has attachments.
7052 You may also View the attachment list and save individual attachments from
7053 there.
7055 If you are SAVING a text part (text/plain, text/html, etc.) you can use
7056 the Control-R subcommand to toggle if saving will be done in binary mode,
7057 meaning that the attachment will be decoded, but will not be transformed
7058 to UTF-8 for further processing (either in internal filters, or user
7059 supplied filters.) This is useful in case you either want to preserve
7060 the text as it was encoded originally to you, or the attachment was
7061 incorrectly attached (the attachment is not of text type) and you need
7062 the original text to process the attachment.
7064 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7065 this help.
7067 &lt;End of help on this topic&gt;
7068 </BODY>
7069 </HTML>
7070 ======= h_common_save =======
7071 <HTML>
7072 <HEAD>
7073 <TITLE>Save and Export Commands</TITLE>
7074 </HEAD>
7075 <BODY>
7076 <H1>Save and Export Commands</H1>
7078 Save
7079 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
7080 and Export
7081 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
7082 are the two alternatives Alpine gives you to keep a copy of the message
7083 you are reading. If you want to keep the message within Alpine's email
7084 world, use &quot;Save&quot;; if you want to use the message in another
7085 program, use &quot;Export&quot;.
7088 When you Save a message, it is put into an existing folder or into a new
7089 folder in one of your existing folder collections.  The message stays in
7090 email format and can be read by Alpine again.  Alpine may use a special format
7091 for its mail folders -- never edit an Alpine folder by hand or with any
7092 program other than Alpine.  The exact behavior of the Save command can be
7093 configured with the
7094 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
7095 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
7096 and 
7097 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
7098 feature list settings.
7099 The name of the folder offered as a default is controlled by the option
7100 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
7103 When you use Export, the message is placed in a plain text file in your
7104 home directory 
7105 <!--chtml if pinemode="running"-->
7106 (which, in the present configuration of your system, is
7107  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7108 <!--chtml endif-->
7109 or current working directory
7110 <!--chtml if pinemode="running"-->
7111 (which, at least for your current Alpine &quot;session,&quot; 
7112 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7113 <!--chtml endif-->, depending on the
7114 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7115 configuration setting.  In the normal case, only minimal
7116 headers are exported with the message; however, if the full header mode 
7117 (whose availability may be disabled  by setting the feature 
7118 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
7119 in SETUP CONFIGURATION) is
7120 toggled on, then complete headers are exported along with the message
7121 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
7122 defined, they may affect the contents of the exported file.)
7125 &lt;End of help on this topic&gt;
7126 </BODY>
7127 </HTML>
7128 ======= h_common_bounce =======
7129 <HTML>
7130 <HEAD>
7131 <TITLE>Bounce Command</TITLE>
7132 </HEAD>
7133 <BODY>
7134 <H1>Bounce Command</H1>
7136 The Bounce 
7137 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
7138 command allows you to re-send, or &quot;remail&quot;, a
7139 message, as if you were never in the loop.  It is analogous to crossing
7140 out your address on a postal letter, writing a different address on the
7141 envelope, and putting it into the mailbox. Bounce is used primarily to
7142 redirect email that was sent to you in error.
7143 Also, some owners of email
7144 lists need the bounce command to handle list traffic.
7145 Bounce is not anonymous.
7146 A ReSent-From header is added to the message so that the recipient may
7147 tell that you Bounced it to them.
7150 The presence or absence of the Bounce command is determined by the
7151 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
7152 feature in your Alpine configuration.
7153 The feature
7154 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
7155 affects the behavior of the Bounce command.
7156 Also, it is possible that Bounce could be
7157 administratively disabled by your system manager; if it doesn't work,
7158 please check with your local help desk before reporting a bug.
7161 &lt;End of help on this topic&gt;
7162 </BODY>
7163 </HTML>
7164 ======= h_common_reply =======
7165 <HTML>
7166 <HEAD>
7167 <TITLE>Reply and Forward Commands</TITLE>
7168 </HEAD>
7169 <BODY>
7171 <H1>Reply and Forward Commands</H1>
7173 Replying 
7174 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
7175 and Forwarding 
7176 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
7177 are your two alternatives for following up on the
7178 message you are reading.  You would use reply if you want to get email
7179 back to the author of the message and/or the other people who have
7180 already seen it.  You use forward if you want somebody new to see the
7181 message.
7184 In the normal case, the only thing that you must supply when forwarding a
7185 message is the name/email address of the new recipient.
7186 Alpine will include the text of the forwarded message.
7187 Alpine will also include any attachments to the message.
7188 There is space above the forwarded text for you to include additional comments.
7191 When replying, you usually have to answer some questions.
7192 If the message is to multiple people and/or specified with a Reply-To: header,
7193 then you will have to decide who should get the reply.
7194 You also need to decide whether or not to include the previous
7195 message in your reply.
7196 Some of this is configurable.
7197 Specifically, see the
7198 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
7199 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
7200 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
7202 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
7203 configuration features.
7206 Both the Reply and Forward commands react to the full header mode toggle.
7207 If the full header mode is on, then all the header and delivery lines are
7208 included with the text of the message in your reply/forward.
7211 Other configuration features that affect the Reply command are
7212 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
7213 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
7214 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
7217 &lt;End of help on this topic&gt;
7218 </BODY>
7219 </HTML>
7220 ======= h_common_delete =======
7221 <HTML>
7222 <HEAD>
7223 <TITLE>Delete and Undelete Commands</TITLE>
7224 </HEAD>
7225 <BODY>
7226 <H1>Delete and Undelete Commands</H1>
7228 Delete 
7229 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
7230 and Undelete 
7231 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
7232 allow you to change the Deleted flag for the current message.
7233 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
7234 removes the mark.
7235 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
7236 at the left hand edge of the index line.
7237 When viewing a deleted message, the letters &quot;DEL&quot; will be present
7238 in the upper right hand corner of the screen.
7239 Delete simply <EM>marks</EM> a message Deleted, it does not actually
7240 get rid of the message.
7241 The eXpunge command (available from the MESSAGE INDEX screen) actually
7242 removes all of the deleted messages in a folder.
7243 Once a message is eXpunged, it can't be retrieved.
7246 The Delete command is affected by the setting of the configuration feature
7247 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
7250 &lt;End of help on this topic&gt;
7251 </BODY>
7252 </HTML>
7253 ======= h_common_postpone =======
7254 <HTML>
7255 <HEAD>
7256 <TITLE>Postpone Command</TITLE>
7257 </HEAD>
7258 <BODY>
7259 <H1>Postpone Command</H1>
7261 The postpone
7262 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
7263 command allows you to temporarily stop working on the current
7264 message so you may read
7265 other messages or compose another message.  When you want to resume a
7266 message later, start to compose and answer &quot;yes&quot; to the
7267 &quot;Continue postponed composition?&quot; question.  You may
7268 postpone as many messages as you like.
7271 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
7272 in the Setup/Config screen, then the Postpone command will prompt you for
7273 the folder in which to store your outgoing message.
7276 &lt;End of help on this topic&gt;
7277 </BODY>
7278 </HTML>
7279 ======= h_compose_cancel =======
7280 <HTML>
7281 <HEAD>
7282 <TITLE>Cancel Command</TITLE>
7283 </HEAD>
7284 <BODY>
7285 <H1>Cancel Command</H1>
7287 Cancel
7288 <!--chtml if pinemode="function_key"-->
7289 (F2)
7290 <!--chtml else-->
7291 (^C) 
7292 <!--chtml endif-->
7294 The Cancel command returns you to Alpine's normal mail processing and
7295 causes the message currently under composition to be thrown out.
7296 The message text <EM>will be lost</EM>.
7299 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
7300 will be preserved in the file named
7301 <!--chtml if pinemode="os_windows"-->
7302 &quot;DEADLETR&quot;.
7303 <!--chtml else-->
7304 &quot;dead.letter&quot; in your home directory.
7305 <!--chtml endif-->
7306 If you unintentionally cancel a message, look there for its text.
7309 &lt;End of help on this topic&gt;
7310 </BODY>
7311 </HTML>
7312 ======= h_compose_addrcomplete =======
7313 <HTML>
7314 <HEAD>
7315 <TITLE>Address Completion</TITLE>
7316 </HEAD>
7317 <BODY>
7318 <H1>Address Completion</H1>
7320 When entering addresses in the address fields of the composer (To, Cc, etc.)
7321 the TAB key may be used to help complete the address.
7322 Type a partial nickname and tap the TAB key to complete the typing.
7323 The unambiguous part of the name will be filled in automatically.
7324 Typing TAB twice in succession will bring up a selection list of possibilities,
7325 making it easy to find and choose the correct address.
7328 The matching algorithm is rather ad hoc.
7329 The search starts with a search of your address book.
7330 It counts as a match if the nickname, address, or fullname field of an
7331 entry begins with the text typed in so far. It is also a match if
7332 a later word in the fullname (for example, the middle name or last name)
7333 begins with the entered text.
7335 Next comes an LDAP search.
7336 The search will happen for any servers that have the
7337 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
7338 feature set. You can set or unset the feature for each server independently
7339 in the Setup/Directory screen.
7341 Finally, if you are replying to or forwarding a message, that message is
7342 searched for likely candidate addresses that match the typed-in text.
7345 &lt;End of help on this topic&gt;
7346 </BODY>
7347 </HTML>
7348 ======= h_compose_richhdr =======
7349 <HTML>
7350 <HEAD>
7351 <TITLE>Rich Header Command</TITLE>
7352 </HEAD>
7353 <BODY>
7354 <H1>Rich Header Command</H1>
7356 The Rich Header command allows you to toggle between the list of 
7357 all message headers available for editing and those that are most
7358 common.
7361 Use this toggle to expose headers that are not normally visible by
7362 default.
7363 This set usually includes the
7364 &quot;Bcc:&quot;,
7365 &quot;Fcc:&quot;,
7366 &quot;Lcc:&quot;,
7367 and &quot;Newsgroups&quot;
7368 headers.
7369 If you are posting to a newsgroup the set of defaults is a little different.
7370 Obviously, in that case, the Newsgroups header is of interest so is not
7371 hidden.
7372 For news posting the hidden set includes the
7373 &quot;To:&quot;,
7374 &quot;Cc:&quot;,
7375 &quot;Bcc:&quot;,
7376 &quot;Fcc:&quot;,
7377 and &quot;Lcc:&quot;
7378 headers.
7379 You won't normally want to edit these, which is why they are hidden,
7380 but it is sometimes useful to be able to set them manually.
7383 The default sets of headers listed above can be altered.
7384 Any header that you have added to the
7385 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
7386 option, but not to the
7387 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
7388 option will appear when you use the Rich Headers command to
7389 make the Rich Headers visible.
7390 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
7391 even without toggling the Rich Headers command.)
7394 &lt;End of help on this topic&gt;
7395 </BODY>
7396 </HTML>
7397 ======= h_compose_send =======
7398 <HTML>
7399 <HEAD>
7400 <TITLE>Send Command</TITLE>
7401 </HEAD>
7402 <BODY>
7403 <H1>Send Command</H1>
7405 The Send command
7406 <!--chtml if pinemode="function_key"-->
7407 (F3)
7408 <!--chtml else-->
7409 (^X) 
7410 <!--chtml endif-->
7411 tells Alpine you are finished composing.
7412 Before actually sending it, though, Alpine will ask you to confirm 
7413 your intention, and, at the same time, redisplayed the message text
7414 with the recipients at the top of the screen to give you the opportunity
7415 to review and verify that the message is addressed to the people
7416 you intended.
7418 If the feature
7419 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
7420 then this confirmation prompt and any options it allows are skipped.
7423 This confirmation prompt may also offer, depending
7424 on your particular Setup/Config, options allowing you to set
7425 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
7426 include attachments in the &quot;Fcc&quot; (if you had previously
7427 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
7428 observe details of the
7429 <A HREF="h_config_verbose_post">message submission process</A>,
7430 choose the filter through which the
7431 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
7432 or turn of flowed text generation.
7435 &lt;End of help on this topic&gt;
7436 </BODY>
7437 </HTML>
7438 ======= h_compose_markcutpaste =======
7439 <HTML>
7440 <HEAD>
7441 <TITLE>Mark, Cut and Paste Commands</TITLE>
7442 </HEAD>
7443 <BODY>
7444 <H1>Mark, Cut and Paste Commands</H1>
7446 You can define a &quot;block&quot; of text, which can subsequently
7447  be deleted or
7448 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
7449 then moving the cursor to the end of the desired text block.  You can then
7450 &quot;cut&quot; the block out 
7451 <!--chtml if pinemode="function_key"-->
7452 &quot;F9&quot;,
7453 <!--chtml else-->
7454 &quot;Ctrl-K&quot;,
7455 <!--chtml endif-->
7456 move the cursor, and &quot;paste&quot; it
7457 <!--chtml if pinemode="function_key"-->
7458 &quot;F10&quot;,
7459 <!--chtml else-->
7460 &quot;Ctrl-U&quot;,
7461 <!--chtml endif-->
7462 in the new location.  Also, you can paste more than once, allowing you
7463 to use this feature to copy a block of text.<P>
7465 If you press 
7466 <!--chtml if pinemode="function_key"-->
7467 &quot;F9&quot;
7468 <!--chtml else-->
7469 &quot;^K&quot;
7470 <!--chtml endif-->
7471 without having marked anything, Alpine will delete
7472 a single line.  If you delete a group of lines together, Alpine keeps them
7473 in the same buffer, so 
7474 <!--chtml if pinemode="function_key"-->
7476 <!--chtml else-->
7478 <!--chtml endif-->
7479 will restore them as a block.  About
7480 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
7481 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
7482 &quot;type the character ^&quot;.
7485 &lt;End of help on this topic&gt;
7486 </BODY>
7487 </HTML>
7488 ======= h_compose_justify =======
7489 <HTML>
7490 <HEAD>
7491 <TITLE>Justify Command</TITLE>
7492 </HEAD>
7493 <BODY>
7494 <H1>Justify Command</H1>
7496 The Justify
7497 <!--chtml if pinemode="function_key"-->
7498 (F4)
7499 <!--chtml else-->
7500 (^J) 
7501 <!--chtml endif-->
7502 command reformats the text in the paragraph the cursor is in.
7503 Paragraphs are separated by one blank line or a line beginning with a space.
7504 This is useful when you have been editing a paragraph and the lines become
7505 uneven.  The text is left aligned or justified and the right is ragged.  If
7506 the text is already justified as typed with auto-wrap, no justification will
7507 be done.
7510 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
7511 block of text, the Justify command is modified.
7512 Instead of automatically justifying the current paragraph you will be
7513 asked if you want to justify the paragraph, justify the selected region,
7514 or adjust the quote level of the selected region.
7515 Adjusting the quote level only works if you are using standard
7516 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
7517 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
7520 When composing a reply containing included text, the justify command
7521 will reformat text to the right of the 
7522 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
7523 adding or removing indented lines as needed.  Paragraphs are separated
7524 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
7525 line containing the indent string and one or more blank spaces.
7526 Included text that was previously indented (or &quot;quoted&quot;) is
7527 not preserved.
7530 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
7531 in 1999 and its wide-spread adoption since then, you will usually be better off if you
7532 use the standard
7533 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
7536 &lt;End of help on this topic&gt;
7537 </BODY>
7538 </HTML>
7539 ======= h_compose_spell =======
7540 <HTML>
7541 <HEAD>
7542 <TITLE>Spell Check Command</TITLE>
7543 </HEAD>
7544 <BODY>
7545 <H1>Spell Check Command</H1>
7547 The &quot;To Spell&quot;
7548 <!--chtml if pinemode="function_key"-->
7549 (F12)
7550 <!--chtml else-->
7551 (^T) 
7552 <!--chtml endif-->
7553 command calls an external spell checking program to look over the
7554 message you are composing.  By default, Alpine uses
7556 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
7558 if it knows where to find &quot;aspell&quot;.
7559 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
7560 then the command used is
7562 <CENTER><SAMP>ispell -l</SAMP></CENTER>
7564 Otherwise, the ancient &quot;spell&quot; command is used.
7566 For PC-Alpine, you must install the aspell library code that you
7567 may get from
7568 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
7571 &lt;End of help on this topic&gt;
7572 </BODY>
7573 </HTML>
7574 ======= h_compose_alted =======
7575 <HTML>
7576 <HEAD>
7577 <TITLE>Alt Editor Command</TITLE>
7578 </HEAD>
7579 <BODY>
7580 <H1>Alt Editor Command</H1>
7582 The &quot;Alt Editor&quot; command's availability depends on the
7583 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
7586 When the variable specifies a valid editor on your system, this
7587 command will launch it with the current text of your message
7588 already filled in.
7591 &lt;End of help on this topic&gt;
7592 </BODY>
7593 </HTML>
7594 ======= h_compose_readfile =======
7595 <HTML>
7596 <HEAD>
7597 <TITLE>Read File Command</TITLE>
7598 </HEAD>
7599 <BODY>
7600 <H1>Read File Command</H1>
7602 The &quot;Read File&quot;
7603 <!--chtml if pinemode="function_key"-->
7604 (F5)
7605 <!--chtml else-->
7606 (^R) 
7607 <!--chtml endif-->
7608 command allows you to copy in text from an existing file. You will be
7609 prompted for the name of a file to be inserted into the message.  The file
7610 name is relative to your home directory 
7611 <!--chtml if pinemode="running"-->
7612 (which, in the present configuration of your system, is
7613  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7614 <!--chtml endif-->
7615 or current working directory
7616 <!--chtml if pinemode="running"-->
7617 (which, at least for your current Alpine &quot;session,&quot; 
7618 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7619 <!--chtml endif-->, depending on the
7620 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7621 configuration setting; or, the file name must be specified as a full path name 
7622 <!--chtml if pinemode="os_windows"-->
7623 -- for example: &quot;A:&#92;PAPER.TXT&quot;
7624 <!--chtml else-->
7625 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
7626 <!--chtml endif-->
7627 (without the quotation marks).
7630 The file will be inserted where the cursor is located.  <B>The
7631 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
7632 Unix machine but have files on a PC or Mac, the files must be transferred
7633 to the system Alpine is running on before they can be read.  Please ask your
7634 local computer support people about the correct way to transfer a file to 
7635 your Alpine system.
7638 &lt;End of help on this topic&gt;
7639 </BODY>
7640 </HTML>
7641 ======= h_config_tray_icon =======
7642 <HTML>
7643 <HEAD>
7644 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
7645 </HEAD>
7646 <BODY>
7647 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
7649 PC-Alpine only.
7651 This option restores a behavior of previous versions of PC-Alpine.
7652 These
7653 versions, when started, installed a PC-Alpine icon in the notification 
7654 tray of Window's Taskbar.  The primary use of this icon was to indicate
7655 new mail arrival by turning red (while the Taskbar icon remained green).
7656 Additionally, the icon now changes to yellow to signify that a mail folder
7657 has been closed unexpectedly.
7660 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
7661 color its Taskbar entry's icon red (as well as the icon in the Window
7662 Title).  This feature is only provided for backwards compatibility.
7665 &lt;End of help on this topic&gt;
7666 </BODY>
7667 </HTML>
7668 ======= h_common_suspend =======
7669 <HTML>
7670 <HEAD>
7671 <TITLE>Suspend Command</TITLE>
7672 </HEAD>
7673 <BODY>
7674 <H1>Suspend Command</H1>
7676 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
7677 enabled, you can, at almost any time, temporarily halt your Alpine session,
7678 <!--chtml if pinemode="os_windows"-->
7679 minimizing it into an icon.
7680 <!--chtml else-->
7681 and return to your system prompt.
7682 <!--chtml endif-->
7685 &lt;End of help on this topic&gt;
7686 </BODY>
7687 </HTML>
7688 ======= h_pipe_command =======
7689 <HTML>
7690 <HEAD>
7691 <TITLE>Pipe Command SubOptions</TITLE>
7692 </HEAD>
7693 <BODY>
7694 <H1>Pipe Command SubOptions</H1>
7696 By default, when you use the Pipe command, the processed text of the
7697 message is sent to the Unix command
7698 you specify and the output is captured by Alpine and shown to you.
7699 (This command is available in PC-Alpine, as well, but there aren't many
7700 Windows commands that work well with piping.)
7701 There are some sub-commands that may be used to alter this behavior.
7702 These are toggles that switch the behavior between two possibilities.
7703 They can be combined in any way you wish.
7705 By default, the prompt at the bottom of the screen looks like
7707 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
7711 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
7713 if you are piping more than one message.
7715 The sub-command options are:
7716 <DL>
7717    <DT>Shown Text or Raw Text</DT>
7718    <DD>This option toggles between sending the shown (processed) text
7719 of the message to the Unix command, and sending the
7720 raw (unprocessed) text of the message to the Unix command.
7721 The default is to send the shown text.
7722 The raw version of the message will contain all of the headers and any
7723 MIME encoding that the message contains.
7724 If you've selected the Raw Text then the prompt will have the additional word
7725 &quot;RAW&quot; in it, like
7727 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
7729 You can experiment with this option by piping to something simple like the
7730 Unix &quot;cat&quot; command.
7731    </DD>
7732    <DT>Captured Output or Free Output</DT>
7733    <DD>This option toggles between having Alpine capture the output of
7734 the Unix pipe command for display, and not capturing it.
7735 If the command you are piping to is a filter that will produce output
7736 you want to view, then you want to capture that output
7737 for display (the default).
7738 If the Unix command doesn't produce output or handles the display itself,
7739 then you want free output.
7740 When you've selected the Free Output option the prompt will change to
7742 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
7744    </DD>
7745    <DT>No Delimiter or With Delimiter</DT>
7746    <DD>This option controls whether or not a Unix mailbox style delimiter
7747 will come before the text of the message.
7748 This is the delimiter used in the common Unix mailbox format.
7749 It's the single line that begins with the five characters
7750 &quot;From&quot; followed by a &lt;SPACE&gt; character.
7751 You'll usually only want to include this if the Unix command requires
7752 input in the format of a traditional Unix mailbox file.
7753 When you've selected the With Delimiter option the prompt will change to
7755 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
7757    </DD>
7758    <DT>To Same Pipe or To Individual Pipes</DT>
7759    <DD>This option only shows up if you are running an aggregate
7760 pipe command.
7761 That is, the command was Apply Pipe, not just Pipe.
7762 You have the option of piping all of the selected messages through a
7763 single pipe to a single instance of the Unix command,
7764 or piping each individual message through a separate pipe to separate
7765 instances of the Unix command.
7766 The default is that all of the output will go through a single pipe
7767 to a single instance of the command.
7768 You can try this option with a command like &quot;less&quot;, with Free
7769 Output enabled.
7770 When you've selected the Individual Pipes option the prompt will change to
7772 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
7774    </DD>
7775 </DL>
7778 As mentioned earlier, the options can be combined in any way you wish.
7779 You may leave them all off, turn them all on, or turn some of them on
7780 and some of them off.
7781 If you use the pipe command a second time in the same session the default
7782 options will be what you used the last time.
7785 &lt;End of help on this topic&gt;
7786 </BODY>
7787 </HTML>
7788 ========== h_emptydir_subfolder_name =========
7789 <HTML>
7790 <HEAD>
7791 <TITLE>ENTER SUBFOLDER NAME</TITLE>
7792 </HEAD>
7793 <BODY>
7794 <H1>Enter Subfolder Name</H1>
7796 <P> 
7797 This is the name of a new subfolder in the directory you are creating.
7798 Because empty directories are hidden and therefore not useful, you must also
7799 create a subfolder in the directory you are creating in order that the
7800 directory remains visible.
7802 Alternatively, you may turn off the configuration feature
7803 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
7804 so that empty directories remain visible.
7805 If you do that, you will not be required to create the subfolder when you
7806 create a directory.
7809 &lt;End of help on this topic&gt;
7810 </BODY>
7811 </HTML>
7812 ========== h_incoming_add_folder_name =========
7813 <HTML>
7814 <HEAD>
7815 <TITLE>ENTER FOLDER NAME</TITLE>
7816 </HEAD>
7817 <BODY>
7818 <H1>Enter Folder Name</H1>
7820 <P> 
7821 This is the name of the folder on the previously specified server.
7822 By default the folder name is interpreted as defining a section of your personal
7823 folder area.  This area and how you specify it are defined by the
7824 server, if one is specified.
7827 To define a folder outside the default area, prefix
7828 the path with the namespace to use when interpreting the
7829 given path.  If a namespace is specified, the folder name begins with the
7830 sharp (#) character followed by the name of the namespace
7831 and then the namespace's path-element-delimiter.  Aside from the
7832 name's format, namespaces can also imply access rights, content
7833 policy, audience, location, and, occasionally, access methods.
7836 Each server exports its own set (possibly of size one) of 
7837 namespaces.
7838 For a more detailed explanation read about
7839 <A HREF="h_folder_name_namespaces">Namespaces</A>.
7842 To specify the default for INBOX on the server you can usually just enter
7843 &quot;INBOX&quot;, and the server will understand the special meaning of
7844 that word.
7847 &lt;End of help on this topic&gt;
7848 </BODY>
7849 </HTML>
7850 ========== h_incoming_add_folder_host =========
7851 <HTML>
7852 <HEAD>
7853 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
7854 </HEAD>
7855 <BODY>
7856 <H1>Enter Incoming Folder Server</H1>
7858 You are being asked for the name of the server for use with this incoming
7859 folder.
7860 If the folder is on the machine where Alpine is running, then just enter
7861 RETURN without typing a server name.
7864 If the folder is on an IMAP server then type the server's name followed
7865 by RETURN.
7866 You may use the ^X command if the server is the same as the server that
7867 the INBOX is on.
7870 You may have to add optional extra information to the server name.
7871 For example, if the IMAP server is using a non-standard port number you
7872 would specify that by appending a colon (:) followed by the port number
7873 to the server name
7876 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7879 or you may need to specify a different protocol if the server is not an
7880 IMAP server. For example:
7883 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7886 for a POP server or
7889 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
7892 for an NNTP news server.
7893 For an explanation of all of the possibilities, see
7894 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7895 for folders.
7898 There is a special command (^W) if you want to set up a folder that gets its
7899 mail from a
7900 <A HREF="h_maildrop">Mail Drop</A>.
7901 If you type that command, you will be prompted for the information for
7902 both the Mail Drop folder and the destination folder.
7905 &lt;End of help on this topic&gt;
7906 </BODY>
7907 </HTML>
7908 ========== h_incoming_add_inbox =========
7909 <HTML>
7910 <HEAD>
7911 <TITLE>ENTER INBOX SERVER</TITLE>
7912 </HEAD>
7913 <BODY>
7914 <H1>Enter INBOX Server</H1>
7916 You are being asked for the name of the server for use with
7917 the INBOX folder.
7918 Type the server's name followed by RETURN.
7921 You may have to add optional extra information to the server name.
7922 For example, if the server is using a non-standard port number you
7923 would specify that by appending a colon (:) followed by the port number
7924 to the server name
7927 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7930 or you may need to specify a different protocol if the server is not an
7931 IMAP server. For example:
7934 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
7937 for a POP server.
7940 For an explanation of all of the possibilities, see
7941 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7942 for folders.
7945 If the INBOX folder is on the machine where Alpine is running, then just enter
7946 RETURN without typing a server name.
7949 There is a special command (^W) if you want to set up a folder that gets its
7950 mail from a
7951 <A HREF="h_maildrop">Mail Drop</A>.
7952 If you type that command, you will be prompted for the information for
7953 both the Mail Drop folder and the destination folder, which will be used
7954 as your INBOX folder.
7957 &lt;End of help on this topic&gt;
7958 </BODY>
7959 </HTML>
7960 ========== h_incoming_add_maildrop_destn =========
7961 <HTML>
7962 <HEAD>
7963 <TITLE>ENTER DESTINATION SERVER</TITLE>
7964 </HEAD>
7965 <BODY>
7966 <H1>Enter Destination Server</H1>
7968 You are being asked for the name of the server where the destination
7969 folder is for use with this Mail Drop incoming folder.
7970 That is, you are using a Mail Drop for this incoming folder and
7971 you've already entered
7972 the server and folder name for the Mail Drop.
7973 Now you need to enter the server for the destination folder
7974 where the mail should be copied to.
7975 Mail will come from the Mail Drop and be copied to the destination folder.
7978 Type the server's name followed by RETURN.
7979 If the folder is local to this computer, just type RETURN without entering
7980 a server name.
7983 You may have to add optional extra information to the server name.
7984 For example, if the server is using a non-standard port number you
7985 would specify that by appending a colon (:) followed by the port number
7986 to the server name
7989 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
7992 For an explanation of all of the possibilities, see
7993 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
7994 for folders.
7997 &lt;End of help on this topic&gt;
7998 </BODY>
7999 </HTML>
8000 ========== h_inbox_add_maildrop_destn =========
8001 <HTML>
8002 <HEAD>
8003 <TITLE>ENTER DESTINATION SERVER</TITLE>
8004 </HEAD>
8005 <BODY>
8006 <H1>Enter Destination Server</H1>
8008 You are being asked for the name of the server where the destination
8009 folder is for use with your Mail Drop INBOX.
8010 That is, you are using a Mail Drop for your INBOX and you've already entered
8011 the server and folder name for the Mail Drop.
8012 Now you need to enter the server for the destination folder
8013 where the mail should be copied to.
8014 Mail will come from the Mail Drop and be copied to the destination folder.
8017 Type the server's name followed by RETURN.
8018 If the folder is local to this computer, just type RETURN without entering
8019 a server name.
8022 You may have to add optional extra information to the server name.
8023 For example, if the server is using a non-standard port number you
8024 would specify that by appending a colon (:) followed by the port number
8025 to the server name
8028 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8031 For an explanation of all of the possibilities, see
8032 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8033 for folders.
8036 &lt;End of help on this topic&gt;
8037 </BODY>
8038 </HTML>
8039 ========== h_inbox_add_maildrop =========
8040 <HTML>
8041 <HEAD>
8042 <TITLE>ENTER MAILDROP SERVER</TITLE>
8043 </HEAD>
8044 <BODY>
8045 <H1>Enter Mail Drop Server</H1>
8047 You are being asked for the name of the Mail Drop server for use with
8048 your INBOX.
8051 Type the server's name followed by RETURN.
8054 You may have to add optional extra information to the server name.
8055 For example, if the server is using a non-standard port number you
8056 would specify that by appending a colon (:) followed by the port number
8057 to the server name
8060 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8063 or you may need to specify a different protocol if the server is not an
8064 IMAP server. For example:
8067 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8070 for a POP server or
8073 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8076 for an NNTP news server.
8077 For an explanation of all of the possibilities, see
8078 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8079 for folders.
8082 &lt;End of help on this topic&gt;
8083 </BODY>
8084 </HTML>
8085 ========== h_incoming_add_maildrop =========
8086 <HTML>
8087 <HEAD>
8088 <TITLE>ENTER MAILDROP SERVER</TITLE>
8089 </HEAD>
8090 <BODY>
8091 <H1>Enter Mail Drop Server</H1>
8093 You are being asked for the name of the Mail Drop server for use with
8094 this incoming folder.
8097 Type the server's name followed by RETURN.
8098 You may use the ^X command if the server is the same as the server that
8099 the INBOX is on.
8102 You may have to add optional extra information to the server name.
8103 For example, if the server is using a non-standard port number you
8104 would specify that by appending a colon (:) followed by the port number
8105 to the server name
8108 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8111 or you may need to specify a different protocol if the server is not an
8112 IMAP server. For example:
8115 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8118 for a POP server or
8121 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8124 for an NNTP news server.
8125 For an explanation of all of the possibilities, see
8126 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8127 for folders.
8130 If the Mail Drop folder is on the machine where Alpine is running, then just enter
8131 RETURN without typing a server name.
8134 &lt;End of help on this topic&gt;
8135 </BODY>
8136 </HTML>
8137 ========== h_maildrop =========
8138 <HTML>
8139 <HEAD>
8140 <TITLE>WHAT IS A MAIL DROP?</TITLE>
8141 </HEAD>
8142 <BODY>
8143 <H1>What is a Mail Drop?</H1>
8145 In some situaions it may make sense to have your mail delivered to one
8146 folder (the Mail Drop) and then when you want to read mail that has been
8147 delivered to the Mail Drop folder Alpine will move it to another
8148 destination folder.
8149 Often the Mail Drop will be a remote folder and messages will be moved from
8150 there to a local destination folder.
8153 One example where this might make sense is if the Mail Drop folder is accessible
8154 only with the POP protocol.
8155 You could designate your POP inbox as the Mail Drop folder and have Alpine move
8156 mail from there to a local (on the same machine Alpine is running on)
8157 destination folder, where you'll read it.
8160 A Mail Drop may only be used as your Inbox or as an
8161 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
8164 There is no attempt to synchronize the contents of the destination folder
8165 with the contents of the Mail Drop folder.
8166 All that happens is that all of the messages in the Mail Drop folder are
8167 copied to the destination folder and then they are deleted and expunged (if possible)
8168 from the Mail Drop folder.
8169 The next time a check for new mail is made, any messages in the Mail 
8170 Drop folder are once again copied to the destination folder and deleted
8171 and expunged from the Mail Drop folder.
8172 (If the Mail Drop folder is a news group, then the messages can't be
8173 expunged from the newsgroup. Instead, only Recent messages are copied from
8174 the newsgroup to the destination folder.)
8177 Configuration of a Mail Drop is a little different from configuration of
8178 a folder that does not use a Mail Drop because you have to specify two
8179 folder names instead of one.
8180 The two folders may be any types of folders that Alpine can normally use.
8181 They don't have to be a remote folder and a local folder, that is
8182 simply the most common usage.
8183 When you use a Mail Drop folder Alpine will periodically re-open the Mail
8184 Drop to check for new mail.
8185 The new-mail checks will happen at the frequency set with the
8186 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
8187 but with a minimum time
8188 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
8189 between checks.
8190 Because of this minimum you may notice that new mail does not
8191 appear promptly when you expect it.
8192 The reason for this is to protect the server from over-zealous opening and
8193 closing of the Mail Drop folder.
8194 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
8195 the end of the folder index, then the check will happen, regardless of how
8196 long it has been since the previous check.
8198 If there is new mail, that mail will be copied to the destination folder
8199 and then will be deleted from the Mail Drop.
8200 Note that using a Mail Drop with a local destination folder does not make
8201 sense if you read mail from more than one machine, because the mail is
8202 downloaded to the destination folder (which is accessible from only one
8203 machine) and deleted from the Mail Drop.
8205 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
8208 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
8211 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
8213 The brackets are not literal.
8215 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
8217 is a single character that does not appear in the MailDropFolder name.
8218 If the name doesn't contain spaces then it can be a space character.
8219 The two folder names are full technical
8220 <A HREF="h_valid_folder_names">folder names</A>
8221 as used by Alpine.
8222 Here are a couple examples to give you an idea what is being talked about:
8225 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
8227 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
8230 A #move folder may only be used as an
8231 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
8232 an Inbox.
8233 When you are in the FOLDER LIST of Incoming Message Folders (after turning
8234 on the
8235 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8236 option)
8237 the Add command has a subcommand &quot;Use Mail Drop&quot;
8238 which may be helpful for defining the folder in your Alpine configuration.
8239 The same is true when you edit the
8240 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
8241 option in Setup/Config.
8242 Each of these configuration methods will also create the DestinationFolder
8243 if it doesn't already exist.
8244 If you are having problems, make sure the DestinationFolder exists.
8247 &lt;End of help on this topic&gt;
8248 </BODY>
8249 </HTML>
8250 ========== h_save =========
8251 <HTML>
8252 <HEAD>
8253 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
8254 </HEAD>
8255 <BODY>
8256 <H1>Choose a Folder to Save Into</H1>
8258 After Exiting from this help text,
8259 type the name of the folder you want to save into and press RETURN.
8261 Press ^T to get a list of your folders to choose from.
8262 Press ^C to cancel the Save.
8264 If you have Folder Collections defined you may use
8265 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
8266 the collection being saved to.
8268 If Tab Completion is enabled (it is enabled by default)
8269 you may type a Tab character to have Alpine complete the folder name for you.
8271 If Partial Match Lists is enabled (it is enabled by default) you may type
8272 Ctrl-X to get a list of matches to the prefix you've typed in so far.
8274 If the Ctrl-R subcommand is present that means you can decide to Delete or
8275 not Delete the message you are saving after you save it.
8276 The label on that key gives the action to switch to.
8277 If it says Delete and you type Ctrl-R the label displayed will change to
8278 No Delete and the source message will be deleted after the save. If it
8279 says No Delete and you type Ctrl-R the label displayed will change to
8280 Delete and the message will not be deleted.
8281 You can control the default for the Delete parameter with the
8282 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
8284 Similarly, if the Ctrl-W subcommand is present that means you can decide
8285 to Preserve the order of the messages being saved or not.
8286 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
8287 will be in the same order as you see them in the source folder now.
8288 The opposite action (which is usually the default) is that you don't care
8289 about the order.
8290 The Saved messages may or may not be in the same order in the destination folder.
8291 There may be a performance penalty for choosing to save the messages in order.
8292 You can control the default for the Preserve Order parameter with the
8293 configuration feature
8294 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
8297 If you haven't disabled the Save Input History and you've already done a
8298 Save earlier in this session then you may use the Up and Down arrows to retrieve
8299 a folder name used in a previous Save.
8302 &lt;End of help on this topic&gt;
8303 </BODY>
8304 </HTML>
8305 ============= h_simple_index ========================
8306 <HTML>
8307 <HEAD>
8308 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
8309 </HEAD>
8310 <BODY>
8311 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
8312 <!--chtml if pinemode="function_key"-->
8313 <PRE>
8314 Navigating the List of Messages               General Alpine Commands
8315 -------------------------------               -----------------------
8316  F5   Move to previous message                 F1   Show this help text
8317  F6   Move to next message
8318  F7   Show previous screen of messages
8319  F8   Show next screen of messages
8321 Message Selection Commands
8322 --------------------------
8323  F3   Exit the Message Select menu (canceling Send command)
8324  F4   Select the currently highlighted message
8325  F9   Mark the currently highlighted message as deleted
8326  F10  Undelete (remove deletion mark from) the highlighted message
8327 </PRE>
8328 <!--chtml else-->
8329 <PRE>
8330 Navigating the List of Messages               General Alpine Commands
8331 -------------------------------               -----------------------
8332   P  Move to previous message                  ?  Show this help text
8333   N  Move to next message
8334   -  Show previous screen of messages
8335  Spc (space bar) Show next screen of messages
8337 Message Selection Commands
8338 --------------------------
8339   E  Exit the Message Select menu (canceling Send command)
8340   S  Select the currently highlighted message
8341   D  Mark the currently highlighted message as deleted
8342   U  Undelete (remove deletion mark from) the highlighted message
8343 </PRE>
8344 <!--chtml endif-->
8346 <H2>Description of the Select Postponed Message Screen</H2>
8348 This screen allows you to select one of several previously postponed
8349 messages in order to continue composition.  Your options are very limited
8350 -- the screen is not meant to let you manipulate these messages.  However,
8351 you may now delete messages from this list.  Once you choose a message,
8352 Alpine reads it in and puts you into the regular message composer.
8355 Messages do not stay in this postponed state automatically.  If you select
8356 a message and then want to postpone it again, use the normal postpone
8357 (Ctrl-O) command in the composer.
8360 If you exit this screen without selecting a message, the Compose command
8361 that got you here is canceled.  Other than messages explicitly marked
8362 &quot;Deleted&quot;, no messages will be removed.
8365 &lt;End of help on this topic&gt;
8366 </BODY>
8367 </HTML>
8368 ============= h_collection_screen ========================
8369 <HTML>
8370 <HEAD>
8371 <TITLE>COLLECTION LIST screen</TITLE>
8372 </HEAD>
8373 <BODY>
8374 <H1>COLLECTION LIST screen</H1>
8376 The COLLECTION LIST screen is used to select one of your  
8377 collection definitions to display the folders they contain.  See
8378 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
8379 detailed explanation of collections.<P>
8381 To manage your collection definitions (Add, Change, Delete, etc.), use
8382 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
8383 MAIN MENU.
8386 &lt;End of help on this topic&gt;
8387 </BODY>
8388 </HTML>
8389 ============= h_collection_maint ========================
8390 <HTML>
8391 <HEAD>
8392 <TITLE>SETUP COLLECTION LIST screen</TITLE>
8393 </HEAD>
8394 <BODY>
8395 <H1>SETUP COLLECTION LIST screen</H1>
8397 The SETUP COLLECTION LIST screen lets you manage your collection
8398 definitions.  See 
8399 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
8400 for detailed explanation of collections.<P>
8402 Maintenance commands include:
8403 <DL>
8404 <DT>Change
8405 <!--chtml if pinemode="function_key"-->
8406 (F4)
8407 <!--chtml else-->
8409 <!--chtml endif-->
8410 </DT>
8412 <DD>Modify attributes of the selected collection definition.
8414 <DT>Add Cltn
8415 <!--chtml if pinemode="function_key"-->
8416 (F9)
8417 <!--chtml else-->
8419 <!--chtml endif-->
8420 </DT>
8422 <DD>Create a new collection definition.
8423 </DD>
8425 <DT>Del Cltn
8426 <!--chtml if pinemode="function_key"-->
8427 (F10)
8428 <!--chtml else-->
8430 <!--chtml endif-->
8431 </DT>
8433 <DD>Delete the selected collection definition.<BR>
8434 NOTE: The folders and directories referred to by the
8435 collection definition are <EM>NOT</EM> deleted.  Folders must
8436 be deleted, if that's what you wish to do, from the 
8437 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
8438 individual folders in a collection.
8439 </DD>
8441 <DT>Shuffle
8442 <!--chtml if pinemode="function_key"-->
8443 (F11)
8444 <!--chtml else-->
8446 <!--chtml endif-->
8447 </DT>
8449 <DD>Change the order of the displayed collections.  Alpine will offer
8450 to move the currently selected collection one position UP
8451 or DOWN.
8452 </DD>
8453 </DL>
8456 &lt;End of help on this topic&gt;
8457 </BODY>
8458 </HTML>
8459 ============ h_what_are_collections ==========
8460 <HTML>
8461 <HEAD>
8462 <TITLE>Folder Collections Explained</TITLE>
8463 </HEAD>
8464 <BODY>
8465 <H1>Folder Collections Explained</H1>
8468 Those of you with simple mail configurations will just see a list of all the
8469 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
8470 The special folders for INBOX, sent mail and saved messages
8471 will appear at the top of the list.  All others are in alphabetical order.
8473 If you
8474 or your system administrator have defined more than one collection or if
8475 you have a collection (for newsgroups or email folders) defined on your 
8476 system, then you will see the COLLECTION LIST screen first when choosing 
8477 FOLDER LIST from Alpine's MAIN MENU.
8479 <H2>Why have multiple folder collections?</H2>
8481 For Alpine users who only maintain email folders (and not too many) on one host, 
8482 a single folder collection is probably sufficient.<P>
8484 However, people who have more than one email account - for example, one 
8485 at their university, and one with their personal Internet Service Provider - 
8486 will have different sets of folders on different hosts, and they may want to
8487 access them all from the same installation of Alpine, rather than use different 
8488 software and/or log into other hosts to manipulate messages in different 
8489 accounts.  (If in doubt whether one of your email accounts can be accessed 
8490 with Alpine, contact the technical support people for that account.)  Even people
8491 who have only one email account on one host, but have dozens or
8492 hundreds of email folders, may want to arrange these folders together in a 
8493 meaningful way.<BR>
8494 That is where multiple collections come in.
8496 <H2>Types of Collections</H2>
8497 <DL>
8498 <DT>INCOMING FOLDERS</DT>
8499 <DD>&quot;Incoming Message Folders&quot; 
8500 is a special collection typically used to supplement your single INBOX.  
8501 All the folders here are meant to be ones that receive incoming messages, 
8502 which you intend to check more or less frequently.  
8503 You may have multiple folders like this because you or your systems 
8504 administrator have set up an external program or you may have set up
8505 Alpine to filter incoming 
8506 messages into different folders, based on certain criteria such as 
8507 sender, recipient, or subject; or because you have multiple accounts and 
8508 wish to check their INBOXes easily.  This collection is established by 
8509 setting the 
8510 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8511 feature in the SETUP CONFIGURATION screen, which is accessed from the 
8512 MAIN MENU.
8513 </DD>
8515 <DT>NEWS</DT>
8516 <DD>You can also define a collection specifically for
8517 newsgroups.  Alpine does this for you implicitly when you 
8518 <A HREF="h_config_nntp_server">define an NNTP Server</A>
8519 in your Alpine configuration.  The news collection appears last in the 
8520 COLLECTION LIST (though you can shuffle it up in the order of presentation),
8521 and Alpine knows not to save messages there.
8522 </DD>
8524 <DT>DEFAULT COLLECTION</DT>
8525 <DD>This is the default collection for your saved and sent messages folders.
8526 </DD>
8527 </DL>
8531 <H2>Defining Collections</H2>
8533 In the absence of any folder-collection definitions, Alpine will assume a
8534 single default folder collection.
8535 <!--chtml if pinemode="os_windows"-->
8536 <!--chtml else-->
8537 If necessary, Alpine will create the directory
8538 &quot;mail&quot; in your Unix home directory 
8539 to hold your folders.
8540 <!--chtml endif-->
8542 You can use the 
8543 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
8544 the MAIN MENU, to manage your collection list.  
8546 &lt;End of help on this topic&gt;
8547 </BODY>
8548 </HTML>
8549 ===== h_select_address_screen =====
8550 <HTML>
8551 <HEAD>
8552 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
8553 </HEAD>
8554 <BODY>
8555 <H1>SELECT AN ADDRESS SCREEN</H1>
8556 <H2>COMMANDS</H2>
8557 <!--chtml if pinemode="function_key"-->
8558 <PRE>
8559 Available  Commands                        
8560 -------------------------------            
8561 F1  Show Help Text
8562 F3  Exit without selecting anything
8563 F4  Select the highlighted address
8564 F5  Move highlight to previous address
8565 F6  Move highlight to next address
8566 F7  Previous page of addresses
8567 F8  Next page of addresses
8568 F11 Print
8569 F12 WhereIs
8570 </PRE>
8571 <!--chtml else-->
8572 <PRE>
8573 Navigation                     General Alpine Commands
8574 -------------------------      -----------------------
8575  P  Prev Address                ?  Display this help text
8576  N  Next Address                E  Exit without selecting anything
8577  -  Previous page               %  Print
8578 Spc (space bar) Next page
8579  W  WhereIs
8581 Select Command
8582 ------------------------------------------------
8583  S  Select the highlighted address
8584 </PRE>
8585 <!--chtml endif-->
8587 <H2>Description of the Select Address Screen</H2>
8589 This screen gives you an easy way to select an address from all of
8590 the address book entries that match the prefix typed so far.
8592 <P><UL>
8593 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8594 </UL>
8596 &lt;End of help on this topic&gt;
8597 </BODY>
8598 </HTML>
8599 ===== h_select_rule_screen =====
8600 <HTML>
8601 <HEAD>
8602 <TITLE>SELECT A RULE SCREEN</TITLE>
8603 </HEAD>
8604 <BODY>
8605 <H1>SELECT A RULE SCREEN</H1>
8606 <H2>COMMANDS</H2>
8607 <!--chtml if pinemode="function_key"-->
8608 <PRE>
8609 Available  Commands                        
8610 -------------------------------            
8611 F1  Show Help Text
8612 F3  Exit without selecting anything
8613 F4  Select the highlighted rule
8614 F5  Move highlight to previous rule
8615 F6  Move highlight to next rule
8616 F7  Previous page of rules
8617 F8  Next page of rules
8618 F11 Print
8619 F12 WhereIs
8620 </PRE>
8621 <!--chtml else-->
8622 <PRE>
8623 Navigation                     General Alpine Commands
8624 -------------------------      -----------------------
8625  P  Prev Rule                   ?  Display this help text
8626  N  Next Rule                   E  Exit without selecting anything
8627  -  Previous page               %  Print
8628 Spc (space bar) Next page
8629  W  WhereIs
8631 Select Command
8632 ------------------------------------------------
8633  S  Select the highlighted rule
8634 </PRE>
8635 <!--chtml endif-->
8637 <H2>Description of the Select Rule Screen</H2>
8639 This screen just gives you an easy way to select a rule from all of your
8640 defined rules.
8641 The list of rules presented is the list of nicknames of all of the rules
8642 defined using Setup/Rules.
8643 For selecting messages, it is likely that the Indexcolor rules and possibly
8644 the Roles rules will be most useful.
8645 The others are there also, in case you find a use for them.
8647 In order for this to be useful for selecting messages, the nicknames of
8648 the rules have to be different.
8649 Alpine actually just gets the nickname of the rule that you select and then
8650 looks up that rule using the nickname.
8651 So if there are duplicate nicknames, the first rule that has that
8652 nickname will be used.
8654 <P><UL>
8655 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8656 </UL>
8658 &lt;End of help on this topic&gt;
8659 </BODY>
8660 </HTML>
8661 ===== h_select_priority_screen =====
8662 <HTML>
8663 <HEAD>
8664 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
8665 </HEAD>
8666 <BODY>
8667 <H1>SELECT A PRIORITY SCREEN</H1>
8668 <H2>COMMANDS</H2>
8669 <!--chtml if pinemode="function_key"-->
8670 <PRE>
8671 Available  Commands                        
8672 -------------------------------            
8673 F1  Show Help Text
8674 F3  Exit without selecting anything
8675 F4  Select the highlighted priority
8676 F5  Move highlight to previous priority
8677 F6  Move highlight to next priority
8678 F7  Previous page of priorities
8679 F8  Next page of priorities
8680 F11 Print
8681 F12 WhereIs
8682 </PRE>
8683 <!--chtml else-->
8684 <PRE>
8685 Navigation                     General Alpine Commands
8686 -------------------------      -----------------------
8687  P  Prev Priority               ?  Display this help text
8688  N  Next Priority               E  Exit without selecting anything
8689  -  Previous page               %  Print
8690 Spc (space bar) Next page
8691  W  WhereIs
8693 Select Command
8694 ------------------------------------------------
8695  S  Select the highlighted priority
8696 </PRE>
8697 <!--chtml endif-->
8699 <H2>Description of the Select Priority Screen</H2>
8701 This screen gives you a way to select a priority for the message you are sending.
8702 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
8703 Some mail programs will display an indication of the priority level to
8704 the recipient of the message, some will ignore it.
8705 Even in cases where the mail programs of both the sender and the recipient
8706 agree on the meaning of this header, keep in mind that it is
8707 something that the sender sets so it is only an indication
8708 of the priority that the sender attaches to the mail.
8709 Alpine can be made to display an indication of this priority in incoming
8710 messages by use of one of the tokens
8711 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
8712 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
8713 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
8715 <P><UL>
8716 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8717 </UL>
8719 &lt;End of help on this topic&gt;
8720 </BODY>
8721 </HTML>
8722 ===== h_select_keyword_screen =====
8723 <HTML>
8724 <HEAD>
8725 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
8726 </HEAD>
8727 <BODY>
8728 <H1>SELECT A KEYWORD SCREEN</H1>
8729 <H2>COMMANDS</H2>
8730 <!--chtml if pinemode="function_key"-->
8731 <PRE>
8732 Available  Commands                        
8733 -------------------------------            
8734 F1  Show Help Text
8735 F3  Exit without selecting anything
8736 F4  Select the highlighted keyword
8737 F5  Move highlight to previous keyword
8738 F6  Move highlight to next keyword
8739 F7  Previous page of keywords
8740 F8  Next page of keywords
8741 F11 Print
8742 F12 WhereIs
8743 </PRE>
8744 <!--chtml else-->
8745 <PRE>
8746 Navigation                     General Alpine Commands
8747 -------------------------      -----------------------
8748  P  Prev Keyword                ?  Display this help text
8749  N  Next Keyword                E  Exit without selecting anything
8750  -  Previous page               %  Print
8751 Spc (space bar) Next page
8752  W  WhereIs
8754 Select Command
8755 ------------------------------------------------
8756  S  Select the highlighted keyword
8757 </PRE>
8758 <!--chtml endif-->
8760 <H2>Description of the Select Keyword Screen</H2>
8762 This screen just gives you an easy way to select a keyword.
8763 The list of keywords presented is the list of all keywords defined in your 
8764 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8765 If you have given a keyword a nickname, that nickname is displayed
8766 instead of the actual keyword.
8768 <P><UL>
8769 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8770 </UL>
8772 &lt;End of help on this topic&gt;
8773 </BODY>
8774 </HTML>
8775 ===== h_select_charset_screen =====
8776 <HTML>
8777 <HEAD>
8778 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
8779 </HEAD>
8780 <BODY>
8781 <H1>SELECT A CHARACTER SET SCREEN</H1>
8782 <H2>COMMANDS</H2>
8783 <!--chtml if pinemode="function_key"-->
8784 <PRE>
8785 Available  Commands                        
8786 -------------------------------            
8787 F1  Show Help Text
8788 F3  Exit without selecting anything
8789 F4  Select the highlighted character set
8790 F5  Move highlight to previous character set
8791 F6  Move highlight to next character set
8792 F7  Previous page of character sets
8793 F8  Next page of character sets
8794 F11 Print
8795 F12 WhereIs
8796 </PRE>
8797 <!--chtml else-->
8798 <PRE>
8799 Navigation                     General Alpine Commands
8800 -------------------------      -----------------------
8801  P  Prev Character Set          ?  Display this help text
8802  N  Next Character Set          E  Exit without selecting anything
8803  -  Previous page               %  Print
8804 Spc (space bar) Next page
8805  W  WhereIs
8807 Select Command
8808 ------------------------------------------------
8809  S  Select the highlighted character set
8810 </PRE>
8811 <!--chtml endif-->
8813 <H2>Description of the Select A Character Set Screen</H2>
8815 This screen just gives you an easy way to select a character set from the
8816 set of character sets Alpine knows about.
8817 The list presented will vary slightly depending on what option you are
8818 selecting the character set for.
8820 <P><UL>
8821 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8822 </UL>
8824 &lt;End of help on this topic&gt;
8825 </BODY>
8826 </HTML>
8827 ===== h_select_multcharsets_screen =====
8828 <HTML>
8829 <HEAD>
8830 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
8831 </HEAD>
8832 <BODY>
8833 <H1>SELECT CHARACTER SETS SCREEN</H1>
8834 <H2>COMMANDS</H2>
8835 <!--chtml if pinemode="function_key"-->
8836 <PRE>
8837 Available  Commands
8838 -------------------------------            
8839 F1  Show Help Text
8840 F3  Exit without selecting anything
8841 F4  Select the highlighted charset (or chosen charsets in ListMode)
8842 F5  Move highlight to previous charset
8843 F6  Move highlight to next charset
8844 F7  Previous page of charsets
8845 F8  Next page of charsets
8846 F9  Toggle choices when using ListMode
8847 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
8848 F11 Print
8849 F12 WhereIs
8850 </PRE>
8851 <!--chtml else-->
8852 <PRE>
8853 Navigation                     General Alpine Commands
8854 -------------------------      -----------------------
8855  P  Prev Charset                ?  Display this help text
8856  N  Next Charset                E  Exit without selecting anything
8857  -  Previous page               %  Print
8858 Spc (space bar) Next page
8859  W  WhereIs
8861 Select Command
8862 ------------------------------------------------
8863  S  Select the highlighted charset (or chosen charsets in ListMode)
8864  L  Turn on ListMode (makes it easy to choose multiple charsets)
8865  1  Turn off ListMode
8866  X  Toggle choices when using ListMode
8867 </PRE>
8868 <!--chtml endif-->
8870 <H2>Description of the Select Character Set Screen</H2>
8872 This screen just gives you an easy way to select a character set or a list of
8873 character sets.
8874 The list of character sets presented is the list of all character sets known to
8875 Alpine.
8876 You may select other character sets by typing them in directly.
8878 <P><UL>
8879 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8880 </UL>
8882 &lt;End of help on this topic&gt;
8883 </BODY>
8884 </HTML>
8885 ===== h_select_multkeyword_screen =====
8886 <HTML>
8887 <HEAD>
8888 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
8889 </HEAD>
8890 <BODY>
8891 <H1>SELECT KEYWORDS SCREEN</H1>
8892 <H2>COMMANDS</H2>
8893 <!--chtml if pinemode="function_key"-->
8894 <PRE>
8895 Available  Commands
8896 -------------------------------            
8897 F1  Show Help Text
8898 F3  Exit without selecting anything
8899 F4  Select the highlighted keyword (or chosen keywords in ListMode)
8900 F5  Move highlight to previous keyword
8901 F6  Move highlight to next keyword
8902 F7  Previous page of keywords
8903 F8  Next page of keywords
8904 F9  Toggle choices when using ListMode
8905 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
8906 F11 Print
8907 F12 WhereIs
8908 </PRE>
8909 <!--chtml else-->
8910 <PRE>
8911 Navigation                     General Alpine Commands
8912 -------------------------      -----------------------
8913  P  Prev Keyword                ?  Display this help text
8914  N  Next Keyword                E  Exit without selecting anything
8915  -  Previous page               %  Print
8916 Spc (space bar) Next page
8917  W  WhereIs
8919 Select Command
8920 ------------------------------------------------
8921  S  Select the highlighted keyword (or chosen keywords in ListMode)
8922  L  Turn on ListMode (makes it easy to choose multiple keywords)
8923  1  Turn off ListMode
8924  X  Toggle choices when using ListMode
8925 </PRE>
8926 <!--chtml endif-->
8928 <H2>Description of the Select Keyword Screen</H2>
8930 This screen just gives you an easy way to select a keyword or a list of
8931 keywords.
8932 The list of keywords presented is the list of all keywords defined in your 
8933 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8934 If you have given a keyword a nickname, that nickname is displayed
8935 instead of the actual keyword.
8937 <P><UL>
8938 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8939 </UL>
8941 &lt;End of help on this topic&gt;
8942 </BODY>
8943 </HTML>
8944 ===== h_select_incoming_to_monitor =====
8945 <HTML>
8946 <HEAD>
8947 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
8948 </HEAD>
8949 <BODY>
8950 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
8951 <H2>COMMANDS</H2>
8952 <!--chtml if pinemode="function_key"-->
8953 <PRE>
8954 Available  Commands
8955 -------------------------------            
8956 F1  Show Help Text
8957 F3  Exit without selecting anything
8958 F4  Select the marked folders
8959 F5  Move highlight to previous folder
8960 F6  Move highlight to next folder
8961 F7  Previous page of folders
8962 F8  Next page of folders
8963 F9  Toggle choices on or off
8964 F11 Print
8965 F12 WhereIs
8966 </PRE>
8967 <!--chtml else-->
8968 <PRE>
8969 Navigation                     General Alpine Commands
8970 -------------------------      -----------------------
8971  P  Prev Folder                 ?  Display this help text
8972  N  Next Folder                ^C  exit without changing anything
8973  -  Previous page               %  Print
8974 Spc (space bar) Next page
8975  W  WhereIs
8977 Select Command
8978 ------------------------------------------------
8979  S  Select the marked folders
8980  X  Toggle choices on or off
8981 </PRE>
8982 <!--chtml endif-->
8984 <H2>Description of the Select Folders to Check Screen</H2>
8986 This screen is only useful if the feature
8987 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
8988 is set.
8989 By default, when you set that feature all of your incoming folders
8990 will be checked periodically for Unseen messages.
8991 By using this screen, you may restrict the set of monitored folders to
8992 a subset of all of the incoming folders.
8994 Mark the folders you want to monitor for Unseen messages with
8995 an &quot;X&quot;.
8996 When you've finished marking all your selections use the Select
8997 command to register your choices.
8998 To return to the default of checking all incoming folders
8999 delete all folders or unmark all folders.
9001 <P><UL>
9002 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9003 </UL>
9005 &lt;End of help on this topic&gt;
9006 </BODY>
9007 </HTML>
9008 ===== h_role_select =====
9009 <HTML>
9010 <HEAD>
9011 <TITLE>ROLES SCREEN</TITLE>
9012 </HEAD>
9013 <BODY>
9014 <H1>ROLES SCREEN</H1>
9015 <H2>ROLES COMMANDS</H2>
9016 <!--chtml if pinemode="function_key"-->
9017 <PRE>
9018 Available  Commands                        
9019 -------------------------------            
9020 F1  Show Help Text
9021 F3  Exit without a selection
9022 F4  Select a role to use in composition
9023 F5  Move to previous role
9024 F6  Move to next role
9025 F7  Previous page of roles
9026 F8  Next page of roles
9027 F11 Change Default Role
9028 F12 Whereis (search role nicknames)
9029 </PRE>
9030 <!--chtml else-->
9031 <PRE>
9032 Navigation                     General Alpine Commands
9033 -------------------------      -----------------------
9034  P  Prev Role                     ?  Display this help text
9035  N  Next Role                     E  Exit without a selection
9036  -  Previous page
9037 Spc (space bar) Next page
9038  W  WhereIs (search for word in role nicknames)
9040 Select Role Commands
9041 ------------------------------------------------
9042  [Return]  Select highlighted role
9043  D         Change Default Role
9044 </PRE>
9045 <!--chtml endif-->
9047 <H2>Description of the Roles Screen</H2>
9049 With this screen you select a role to be used in the composition of a
9050 message.
9051 Use the Previous and Next commands to highlight the role you wish to
9052 use.
9053 When you type carriage return you will be placed in the composer using the highlighted role.
9055 You don't have any non-default <A HREF="h_rules_roles">roles</A>
9056 available unless you set them up.
9057 You may do so by using the Setup/Rules command on the MAIN MENU.
9059 By using the D command, you may set a default role that will persist until
9060 you change it or until you exit Alpine.
9061 The D command toggles through three states: set the default role, unset the
9062 default role, and leave the default role as it is.
9063 <P><UL>
9064 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9065 </UL>
9067 &lt;End of help on this topic&gt;
9068 </BODY>
9069 </HTML>
9070 ===== h_role_abook_select =====
9071 <HTML>
9072 <HEAD>
9073 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
9074 </HEAD>
9075 <BODY>
9076 <H1>SELECT ADDRESS BOOK SCREEN</H1>
9077 <H2>COMMANDS</H2>
9078 <!--chtml if pinemode="function_key"-->
9079 <PRE>
9080 Available  Commands                        
9081 -------------------------------            
9082 F1  Show Help Text
9083 F3  Exit screen without selecting anything
9084 F4  Select highlighted address book
9085 F5  Move to previous address book
9086 F6  Move to next address book
9087 F7  Previous page of address books
9088 F8  Next page of address books
9089 F12 Whereis
9090 </PRE>
9091 <!--chtml else-->
9092 <PRE>
9093 Navigation                     General Alpine Commands
9094 -------------------------      -----------------------
9095  P  Previous addrbook          ?  Display this help text
9096  N  Next addrbook
9097  -  Previous page
9098 Spc (space bar) Next page
9099  W  WhereIs
9101 Select Role Commands
9102 ------------------------------------------------
9103  S  Select highlighted address book
9104  E  Exit screen without selecting anything
9105 </PRE>
9106 <!--chtml endif-->
9108 <H2>Description of the Select Address Book Screen</H2>
9110 This screen helps you select one of your address books.
9111 Use the Previous and Next commands to highlight the address book you wish to
9112 select.
9113 <P><UL>
9114 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9115 </UL>
9117 &lt;End of help on this topic&gt;
9118 </BODY>
9119 </HTML>
9120 ======== h_rule_patterns =============
9121 <HTML>
9122 <HEAD>
9123 <TITLE>PATTERNS</TITLE>
9124 </HEAD>
9125 <BODY>
9126 <H1>PATTERNS</H1>
9127 Patterns are used with Roles, Filtering, Index Coloring,
9128 Scoring, Other Rules, and Search Rules.
9129 Patterns are compared with a message to see if there is a match.
9130 For Filtering, the messages being checked are all the messages in the
9131 folder, one at a time.
9132 For Index Line Coloring, each message that is visible on the screen is
9133 checked for matches with the Index Coloring Patterns.
9134 Roles are used with the Reply, Forward, and Compose commands.
9135 For Reply, the message used to compare the Pattern with is the message
9136 being replied to;
9137 for Forward, the message used to compare the Pattern with is the message
9138 being forwarded;
9139 and for Compose, there is no message, so the parts of the Pattern that depend
9140 on a message (everything other than Current Folder Type and the
9141 Beginning of Month and Year)
9142 are not used.
9143 Only the Current Folder Type matters for Compose (plus the Beginning of
9144 Month or Year, which you wouldn't usually use for a Role).
9145 For Scoring, the message being scored is compared with all of the Score
9146 Patterns, and the Score Values from the ones that match are added together to 
9147 get the message's score.
9148 For Other Rules, there is no message. Only the Current Folder Type is checked
9149 for Other Rules.
9151 Each Pattern has several possible parts, all of which are optional.
9152 In order for there to be a match, <EM>ALL</EM> of the
9153 <EM>defined</EM> parts of the Pattern must match the message.
9154 If a part is not defined it is considered a match, but note that a filtering
9155 Pattern must have at least one defined part or it will be ignored.
9156 For example, if the To pattern is not defined it will be
9157 displayed as
9159 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
9161 That is considered a match because it is not defined.
9162 This means that the Pattern with nothing defined is a match if the
9163 Current Folder Type matches, but there is an exception that was mentioned
9164 in the previous paragraph.
9165 Because filtering is a potentially destructive action, filtering Patterns
9166 with nothing other than Current Folder Type defined are ignored.
9167 If you really want a filtering Pattern to match all messages (subject to
9168 Current Folder Type) the best way to do it is to define a Score interval
9169 that includes all possible scores.
9170 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
9171 This can be used even if you haven't defined any rules to Set Scores.
9173 There are six predefined header patterns called the To, From, Sender, Cc, News,
9174 and Subject patterns.
9175 Besides those six predefined header patterns, you may add
9176 additional header patterns with header fieldnames of your choosing.
9177 You add an extra header pattern by placing the cursor on one of the
9178 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
9179 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
9180 and the Partic pattern is a header pattern that stands for
9181 Participant (From OR To OR Cc).
9182 (Defining the Recip pattern does not have the same effect as defining both
9183 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
9184 Similar to the header patterns are the AllText pattern and the BodyText pattern.
9185 Instead of comparing this pattern's text against only the contents of
9186 a particular header field, the text for the AllText pattern is compared
9187 with text anywhere in the message's header or body, and the text for the
9188 BodyText pattern is compared with text anywhere in the message's body.
9190 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
9191 &quot;!&quot; &quot;toggle NOT&quot; command.
9192 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9193 &quot;!&quot; at the beginning of the pattern line.
9194 When the &quot;!&quot; is present, it reverses the meaning of the match.
9195 That is, if the pattern matches then it is considered to NOT be a match, and
9196 if it does not match it is considered to be a match.
9198 Don't make the mistake of putting the &quot;!&quot; in the data field for
9199 a pattern.
9200 For example, if you type the characters &quot;!urgent&quot; into the Subject
9201 pattern, the pattern will look like:
9203 <PRE>
9204  Subject pattern = !urgent
9205 </PRE>
9207 This means you want to match the 7 character sequence &quot;!urgent&quot;.
9208 In order to match messages that do not have &quot;urgent&quot; in
9209 their Subject field, first type the characters &quot;urgent&quot; followed
9210 by carriage return for the value of the Subject pattern, then negate it
9211 by typing the &quot;!&quot; command.
9212 It should look like
9214 <PRE>
9215  ! Subject pattern = urgent
9216 </PRE>
9218 The contents of each of these header patterns (or the AllText or BodyText patterns) may
9219 be a complete email address, part of an address, or a random set of
9220 characters to match against.
9221 It may also be a list of such patterns, which means you
9222 are looking for a match against the first pattern in the list <EM>OR</EM>
9223 the second pattern <EM>OR</EM> the third and so on.
9224 For example, a Subject pattern equal to
9226 <PRE>
9227  Subject pattern = urgent
9228                    emergency
9229                    alert
9230 </PRE>
9232 would match all messages with a subject that contained at least one
9233 of those words.
9234 It would also match subjects containing the words &quot;alerts&quot; or
9235 &quot;Urgently&quot;.
9237 The same example with &quot;NOT&quot; turned on would be
9239 <PRE>
9240  ! Subject pattern = urgent
9241                      emergency
9242                      alert
9243 </PRE>
9245 which would match all messages with a subject that did <EM>NOT</EM> contain any of
9246 those words.
9247 You can use the &quot;Add Value&quot; command to add new words to the list,
9248 or you can enter them as a comma-separated list.
9250 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
9251 present for a match.
9252 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
9253 pattern2 must be present,
9254 and that is exactly what using a list does.)
9256 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
9257 also part of the Pattern, although the &quot;Score Interval&quot; is not used
9258 when checking for matches for Scoring.
9259 There are five similar settings that relate to the status of the message.
9260 These settings rely on the message being New or not, Deleted or not,
9261 Answered or not, Important or not, and Recent or not.
9262 There are also some other miscellaneous settings.
9263 The first is the Age of the message in days.
9264 Another is the Size of the message, in bytes.
9265 The third is a setting that detects whether or not the Subject of a
9266 message contains raw 8-bit characters (unencoded characters with the most
9267 significant bit set).
9268 There is a setting that detects whether or not this is the first time
9269 Alpine has been run this month (doesn't depend on individual messages),
9270 and another that detects whether or not this is the first time Alpine has
9271 been run this year.
9272 Other parts of the Pattern detect whether or not the From address of a
9273 message appears in your address book, whether or not certain keywords
9274 are set for a message, and whether or not certain character sets are
9275 used in a message.
9277 <H2>Parts of a Pattern</H2>
9279 <H3>Header patterns</H3>
9281 A header pattern is simply text that is searched for in the corresponding
9282 header field.
9283 For example, if a Pattern has a From header pattern with the value
9284 &quot;@company.com&quot;, then only messages that have a From header
9285 that contains the text &quot;@company.com&quot; will be possible
9286 matches.
9287 Matches don't have to be exact.
9288 For example, if the relevant field of a message contains the text
9289 &quot;mailbox@domain&quot; somewhere
9290 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
9291 &quot;mailbox@domain&quot; are all matches.
9293 All parts of the Pattern must match so, for example,
9294 if a message matches a defined
9295 From pattern, it still must be checked against the other parts of the
9296 Pattern that have been defined.
9297 The To header pattern is a slightly special case.
9298 If the message being checked has a Resent-To header
9299 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
9300 there are used in place of the addresses in the To header.
9301 This is only true for the To header.
9302 Resent-cc and Resent-From headers are never used unless you add them
9303 with the eXtraHdrs command.
9305 The meaning of a header pattern may be negated with the
9306 &quot;!&quot; &quot;toggle NOT&quot; command.
9307 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9308 &quot;!&quot; at the beginning of the pattern line.
9309 It would look something like
9311 <PRE>
9312  ! From pattern = susan@example.com
9313 </PRE>
9315 When the &quot;!&quot; is present, it reverses the meaning of the match.
9317 If you want to check for the presence of a header field but don't care
9318 about its value, then
9319 the empty pattern that you get by entering a pair of
9320 double quotes (&quot;&quot;) should match any message that
9321 has the corresponding header field.
9323 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
9325 AllText patterns are just like header patterns except that the text is
9326 searched for anywhere in the message's headers or body, not just in the
9327 contents of a particular header field.
9330 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
9332 BodyText patterns are just like header patterns except that the text is
9333 searched for anywhere in the message's body, not just in the
9334 contents of a particular header field.
9337 If there is more than one header pattern or AllText pattern or BodyText pattern
9338 for which you want to take the
9339 same action there is a shorthand notation that may be used.
9340 Any of these patterns may be a list of patterns instead of
9341 just a single pattern.
9342 If any one of the patterns in the list matches the message
9343 then it is considered a match.
9344 For example, if &quot;company1&quot; and &quot;company2&quot; both required
9345 you to use the same role when replying to messages, you might have
9346 a To pattern that looks like
9348 <PRE>
9349  To pattern = company1.com
9350               company2.com
9351 </PRE>
9353 This means that if the mail you are replying to was addressed to
9354 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
9355 then this Pattern is a match and the same actions will be taken.
9357 The meaning of an AllText or BodyText pattern may be negated with the
9358 &quot;!&quot; &quot;toggle NOT&quot; command.
9359 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9360 &quot;!&quot; at the beginning of the pattern line.
9361 When the &quot;!&quot; is present, it reverses the meaning of the match.
9363 A technicality: Since comma is the character used to separate multiple values
9364 in any of the fields that may have multiple values (such as header patterns,
9365 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
9366 you must escape comma with a
9367 backslash (&#92;) if you want to include a literal comma in one of those fields.
9368 In other words, if you type a backslash followed by a comma it will
9369 be interpreted as a comma by Alpine, instead of as a separator between
9370 pattern values.
9371 All other backslashes (those not followed by a comma) are literal
9372 backslashes and should not be escaped.
9373 It's unlikely you'll ever need to enter a literal comma or backslash in
9374 any of the patterns.
9376 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
9378 The &quot;Current Folder Type&quot; may be set to one of four different
9379 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
9380 &quot;Specific&quot;.
9381 If the value is set to &quot;News&quot;, then the
9382 Pattern will only match if the currently open folder is a newsgroup.
9383 The value &quot;Email&quot; only matches if the current folder is not news and
9384 the value &quot;Any&quot; causes any folder to match.
9385 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
9386 then you must fill in a value for &quot;Folder&quot;, which is on the line
9387 below the &quot;Specific&quot; line.
9388 In this case you will only get a match if the currently open folder is
9389 the specific folder you list.
9390 You may give a list of folders instead of just a single
9391 folder name, in which case the Pattern will match if the open folder is
9392 any one of the folders in the list.
9393 The name of each folder in the list may be either &quot;INBOX&quot;,
9394 the technical specification
9395 of the folder (like what appears in your configuration file) or, if the
9396 folder is one of your incoming folders, it may be the nickname you've given
9397 the folder.
9398 Here are some samples of specific folder names:
9400 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
9402 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
9404 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
9406 The easiest way to fill in the &quot;Folder&quot; field is to use
9407 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
9408 highlighted, or to use the &quot;Take&quot; command with the configuration
9409 feature
9410 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
9411 turned on.
9413 When reading a newsgroup, there may be a performance penalty
9414 incurred when collecting the information necessary to check whether
9415 or not a Pattern matches a message.
9416 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
9417 If you have Patterns with a Current Folder Type of either
9418 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
9419 Index Line Coloring or Scoring, you may experience
9420 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
9422 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
9424 The &quot;Age Interval&quot; may be set to an interval of message
9425 ages that should be considered a match.
9426 Like the other parts of the Pattern, if it is unset it will be ignored.
9427 The Age Interval looks like
9429 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
9431 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
9432 than or equal to zero.
9433 The special value &quot;INF&quot; may be used for
9434 the max value. It represents infinity.
9436 Actually, this option may be defined as a list of intervals instead
9437 of just a single interval.
9438 The list is separated by commas.
9439 It can look like
9441 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
9443 When there is an Age Interval defined, it is a match if the age, in days, of
9444 the message is contained in any of the intervals.
9445 The intervals include both endpoints.
9447 Even though this option is called Age, it isn't actually
9448 the <EM>age</EM> of the message.
9449 Instead, it is how many days ago the message arrived in one of your folders.
9450 If the current time is a little past midnight, then a message that arrived
9451 just before midnight arrived yesterday, even though the message is only
9452 a few minutes old.
9453 By default, the date being used is not the date in the Date
9454 header of the message.
9455 It is the date that the message arrived in one of your folders.
9456 When you Save a message from one folder to another that arrival date
9457 is preserved.
9458 If you would like to use the date in the Date header that is possible.
9459 Turn on the option
9460 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
9461 near the bottom of the rule definition.
9462 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
9464 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
9466 The &quot;Size Interval&quot; may be set to an interval of message
9467 sizes that should be considered a match.
9468 Like the other parts of the Pattern, if it is unset it will be ignored.
9469 The Size Interval looks like
9471 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
9473 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
9474 than or equal to zero.
9475 The special value &quot;INF&quot; may be used for
9476 the max value. It represents infinity.
9478 Actually, this option may be defined as a list of intervals instead
9479 of just a single interval.
9480 The list is separated by commas.
9481 It can look like
9483 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
9485 When there is a Size Interval defined, it is a match if the size, in bytes, of
9486 the message is contained in any of the intervals.
9487 The intervals include both endpoints.
9489 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
9491 The &quot;Score Interval&quot; may be set to an interval of message
9492 scores that should be considered a match.
9493 Like the other parts of the Pattern, if it is unset it will be ignored.
9494 The Score Interval looks like
9496 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
9498 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
9499 negative integers, with min_score less than or equal to max_score.
9500 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
9501 the min and max values to represent negative and positive infinity.
9503 Actually, a list of intervals may be used if you wish.
9504 A list would look like
9506 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
9508 When there is a Score Interval defined, it is a match if the score for
9509 the message is contained in any of the intervals in the list.
9510 The intervals include the endpoints.
9511 The score for a message is calculated by looking at every Score rule defined and
9512 adding up the Score Values for the ones that match the message.
9513 When deciding whether or not a Pattern matches a message for purposes of
9514 calculating the score, the Score Interval is ignored.
9516 <H3><A NAME="pattern_message_status">Message Status</A></H3>
9518 There are five separate message status settings.
9519 By default, all five are set to the value &quot;Don't care&quot;, which
9520 will match any message.
9521 The value &quot;Yes&quot; means that the particular status must be true
9522 for a match, and the value &quot;No&quot; means that the particular
9523 status must not be true for a match.
9524 For example, one of the five Message Status settings is whether a message
9525 is marked Important or not.
9526 A &quot;Yes&quot; means that the message must be Important to be
9527 considered a match and &quot;No&quot; means that the message must not be
9528 Important to be considered a match.
9529 The same is true of the other four message status settings that depend
9530 on whether or not the message is New; whether the message has 
9531 been Answered or not; whether the message has been Deleted or not, and
9532 whether the message is Recent or not. 
9534 The nomenclature for New and Recent is a bit confusing:
9536 New means that the message is Unseen.
9537 It could have been in your mailbox for a long time but if you haven't looked
9538 at it, it is still considered New.
9539 That matches the default Alpine index display that shows an N for such a
9540 message.
9542 Recent means that the message was added to this folder since the last time
9543 you opened the folder.
9544 Alpine also shows an N by default for these types of messages.
9545 If you were to run two copies of Alpine that opened a folder one right after
9546 the other, a message would only show up as Recent in (at most) the first
9547 Alpine session.
9549 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
9551 Keywords are similar to Message Status, but they are chosen by the user.
9552 Provided the mail server allows for it, you may add a set of possible keywords
9553 to a folder and then you may set those keywords or not for each message
9554 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
9555 The syntax of this part of the Pattern is similar to the header patterns.
9556 It is a list of keywords.
9557 The Keyword part of the Pattern is a match if the message has any of
9558 the keywords in the list set.
9559 Like other parts of the Pattern, if this is unset it will be ignored.
9561 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
9563 A message may use one or more character sets.
9564 This part of the Pattern matches messages that make use of one or more of
9565 the character sets specified in the pattern.
9566 It will be considered a match if a message uses any of the character
9567 sets in the list you give here.
9570 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
9571 GB2312) you may also use some shorthand names that Alpine provides.
9572 These names are more understandable shorthand names for sets of 
9573 character set names.
9574 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
9575 Selecting one of these shorthand names is equivalent to selecting all of
9576 the character sets that make up the set.
9577 You can see all of these shorthand names and the lists of character sets
9578 they stand for by typing the &quot;T&quot; command with the Character
9579 Set pattern highlighted.
9580 The syntax of this part of the Pattern is similar to the header patterns
9581 and the Message Keywords pattern.
9582 It is a list of character sets (or shorthand names).
9583 The Character Set part of the Pattern is a match if the message uses any
9584 of the character sets in the list.
9585 Like other parts of the Pattern, if this is unset it will be ignored.
9587 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
9589 It seems that lots of unwanted email contains unencoded 8-bit characters
9590 in the Subject.
9591 Normally, characters with the 8th bit set are not allowed in the Subject
9592 header unless they are MIME-encoded.
9593 This option gives you a way to match messages that have Subjects that
9594 contain unencoded 8-bit characters.
9595 By default, the value of this option is &quot;Don't care&quot;, which
9596 will match any message.
9597 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
9598 the Subject of the message in order for there to be a match,
9599 and the value &quot;No&quot; is the opposite.
9600 Setting this option will affect performance in large folders because the
9601 subject of each message in the folder has to be checked.
9603 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
9605 This option gives you a way to take some action once per month.
9606 By default, the value of this option is &quot;Don't care&quot;, which
9607 will always match.
9608 The value &quot;Yes&quot; means that this must be the first time Alpine has
9609 been run this month in order to count as a match,
9610 and the value &quot;No&quot; is the opposite.
9612 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
9614 This option gives you a way to take some action once per year.
9615 By default, the value of this option is &quot;Don't care&quot;, which
9616 will always match.
9617 The value &quot;Yes&quot; means that this must be the first time Alpine has
9618 been run this year in order to count as a match,
9619 and the value &quot;No&quot; is the opposite.
9621 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
9623 This option gives you a way to match messages that have an address
9624 that is in one of your address books.
9625 Only the simple entries in your address books are searched.
9626 Address book distribution lists are ignored!
9627 By default, the value of this option is &quot;Don't care&quot;, which
9628 will match any message.
9629 The value &quot;Yes, in any address book&quot; means the address
9630 from the message must be in at least one of your
9631 address books in order to be a match.
9632 The value &quot;No, not in any address book&quot;
9633 means none of the addresses may
9634 be in any of your address books in order to be a match.
9635 The values &quot;Yes, in specific address books&quot; and
9636 &quot;No, not in any of specific address books&quot; are similar but instead
9637 of depending on all address books you are allowed to give a list of address
9638 books to look in.
9639 The addresses from the message that are checked for are determined by the
9640 setting you have for &quot;Types of addresses to check for in address book&quot;.
9641 If you set this to &quot;From&quot; the From address from the message will
9642 be looked up in the address book.
9643 If you set it to only &quot;To&quot; then the To addresses will be used.
9644 If any of the To addresses are in the address book then it is considered
9645 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
9646 You could set it to both From and To, in which case all of the From and To
9647 addresses are used.
9648 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
9649 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
9650 exists or the From address if there is no Reply-To address.
9651 Same for the Sender address.
9652 Setting this option may affect performance in large folders because the
9653 From and Reply-To of each message in the folder have to be checked.
9655 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
9657 This is a command that is run with its standard input set to the message
9658 being checked and its standard output discarded.
9659 The full directory path should be specified.
9660 The command will be run and then its exit status will be checked against
9661 the Exit Status Interval, which defaults to just the value zero.
9662 If the exit status of the command falls in the interval, it is considered
9663 a match, otherwise it is not a match.
9666 This option may actually be a list of commands.
9667 The first one that exists and is executable is used.
9668 That makes it possible to use the same configuration with Unix Alpine and
9669 PC-Alpine.
9672 If none of the commands in the list exists and is executable then the rule
9673 is <EM>not</EM> a match.
9674 If it is possible that the command may not exist, you should be careful
9675 to structure your rules so that nothing destructive
9676 happens when the command does not exist.
9677 For example, you might have a filter that filters away spam when there is
9678 a match but does nothing when there is not a match.
9679 That would continue to work correctly if the command didn't exist.
9680 However, if you have a filter that filters away spam when there is not
9681 a match and keeps it when there is a match, that would filter everything
9682 if the categorizer command didn't exist.
9684 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
9685 setup for the bogofilter filter.
9688 &lt;End of help on this topic&gt;
9689 </BODY>
9690 </HTML>
9691 ===== h_rules_roles =====
9692 <HTML>
9693 <HEAD>
9694 <TITLE>SETUP ROLES SCREEN</TITLE>
9695 </HEAD>
9696 <BODY>
9697 <H1>SETUP ROLES SCREEN</H1>
9698 <H2>SETUP ROLES COMMANDS</H2>
9699 <!--chtml if pinemode="function_key"-->
9700 <PRE>
9701 Available  Commands -- Group 1         Available Commands -- Group 2   
9702 -------------------------------        ------------------------------  
9703 F1  Show Help Text                      F1  Show Help Text             
9704 F2  See commands in next group          F2  See commands in next group
9705 F3  Back to MAIN Alpine menu
9706 F4  Change configuration for role
9707 F5  Move to previous role               F5  Include file in role config
9708 F6  Move to next role                   F6  Exclude file from config
9709 F7  Previous page of roles
9710 F8  Next page of roles
9711 F9  Add new role                        F9  Replicate existing role
9712 F10 Delete existing role
9713 F11 Shuffle the order of roles
9714 F12 Whereis (search role nicknames)
9715 </PRE>
9716 <!--chtml else-->
9717 <PRE>
9718 Navigation                     General Alpine Commands
9719 -------------------------      -----------------------
9720  P  Prev Role                     ?  Display this help text
9721  N  Next Role                     E  Back to MAIN Alpine menu
9722  -  Previous page
9723 Spc (space bar) Next page
9724  W  WhereIs (search for word in role nicknames)
9726 Setup Roles Commands
9727 ------------------------------------------------
9728  A  Add new role                  $  Shuffle the order of roles
9729  D  Delete existing role          C  Change configuration for highlighted role
9730  R  Replicate existing role
9731  I  Include file in role config   X  Exclude file from role config
9732 </PRE>
9733 <!--chtml endif-->
9735 <H2>Description of the Setup Roles Screen</H2>
9737 This screen lets you add, delete, modify, or change the order of the rules
9738 that determine the role you are playing when composing a message.
9740 You may play different roles depending on who you are replying to.
9741 For example, if you are replying to a message addressed to help-desk you
9742 may be acting as a Help Desk Worker.
9743 That role may require that you use a different return address and/or
9744 a different signature.
9746 Roles are optional.
9747 If you set up roles they work like this:  Each role has a set of
9748 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
9749 considered for a particular use; a &quot;Pattern&quot;,
9750 which is used to decide which of the eligible roles is used; and a set
9751 of &quot;Actions&quot;, which are taken when that role is used.
9752 When you reply to a message, the message you are replying to is compared
9753 with the Patterns of the roles marked as eligible for use when replying.
9754 The comparisons start with the first eligible role and keep going until there
9755 is a match.
9756 If a match is found, the matching role's Actions are taken.
9758 It is also possible to set a default role and to change that role during
9759 your Alpine session.
9760 When you start Alpine no default role will be set.
9761 You may set or change the current default role by using the &quot;D&quot;
9762 command in the role selection screen.
9763 You'll see that screen while composing a message and being asked to select
9764 a role.
9765 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
9766 compose a message.
9767 You may find a default role useful if you normally perform the duties of one
9768 of your roles for a while, then you switch to another role and stay in the
9769 new role for another period of time.
9770 It may be easier than using the Role Command to select the role each time you
9771 compose a message.
9773 <H2>Role Uses</H2>
9775 There are three types of use to be configured;
9776 one for Replying, one for Forwarding, and one for Composing.
9777 These indicate whether or not you want a role to be considered when you
9778 type the Reply, Forward, or Compose commands.
9779 (The Role command is an alternate form of the Compose command, and it is
9780 not affected by these settings.)
9781 Each of these Use types has three possible values.
9782 The value &quot;Never&quot;
9783 means that the role will never be considered as a candidate for use with
9784 the corresponding command.
9785 For example, if you set a role's Reply Use to Never, then when you Reply to
9786 a message, that role won't even be considered.
9787 (That isn't quite true. If the message you are replying to matches some other
9788 role that requires confirmation,
9789 then there will be a ^T command available which allows you to select a role
9790 from all of your roles, not just the reply-eligible roles.)
9793 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
9794 both mean that you do want to consider this role when using the corresponding
9795 command.
9796 For either of these settings the role's Pattern will
9797 be checked to see if it matches the message.
9798 For Reply Use, the message used to compare the Pattern with is the message
9799 being replied to.
9800 For Forward Use, the message used to compare the Pattern with is the message
9801 being forwarded.
9802 For Compose Use, there is no message, so the parts of the Pattern that depend
9803 on a message (everything other than Current Folder Type) are ignored.
9804 In all cases, the Current Folder Type is checked if defined.
9805 If there is a match then this role will either be used without confirmation
9806 or will be the default when confirmation is asked for, depending on
9807 which of the two options is selected.
9808 If confirmation is requested, you will have a chance to
9809 choose No Role instead of the offered role, or to
9810 change the role to any one of your other roles (with the ^T command).
9812 <H2>Role Patterns</H2>
9814 In order to determine whether or not a message matches a role the message is
9815 compared with the Role's Pattern.
9816 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9817 Scoring, Other Rules, and Search Rules, so are described in only one place,
9818 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9820 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
9821 a role that has all header patterns unset, the AllText pattern unset,
9822 the BodyText pattern unset,
9823 the Score Interval unset, and the Current Folder Type set to
9824 &quot;Any&quot; may be used as a default role.
9825 It should be put last in the list of roles since the matching
9826 starts at the beginning and proceeds until one of the roles is a match.
9827 If no roles at all match, then Alpine will
9828 use its regular methods of defining the role.
9829 If you wanted to, you could define a different &quot;default&quot; role
9830 for Replying, Forwarding, and Composing by setting the
9831 &quot;Use&quot; fields appropriately.
9833 <H2>Role Actions</H2>
9835 Once a role match is found, the role's Actions are taken.
9836 For each role there are several possible actions that may be defined.
9837 They are actions to set the From address, the Reply-To address,
9838 the Fcc, the Signature, the Template file, and Other Headers.
9840 <H3>Set From</H3>
9842 The From address is the address used on the From line of the message
9843 you are sending.
9845 <H3>Set Reply-To</H3>
9847 The Reply-To address is the address used on the Reply-To line of the message
9848 you are sending.
9849 You don't need a Reply-To address unless it is different from the From address.
9851 <H3>Set Other Headers</H3>
9853 If you want to set the value of the From or Reply-To headers, use
9854 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
9855 If you want to set the values of other headers, use this field.
9856 This field is similar to the
9857 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
9858 Each header you specify here must include the header tag
9859 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
9860 and may optionally include a value for that header.
9861 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
9862 for a header here will replace any value that already exists.
9863 For example, if you are Replying to a message there will be at least one
9864 address in the To header (the address you are Replying to).
9865 However, if you Reply using a role that sets the To header, that role's
9866 To header value will be used instead.
9868 <H3>Set Fcc</H3>
9870 The Fcc is used as the Fcc for the message you are sending.
9872 <H3>Set Signature or Set LiteralSig</H3>
9874 The Signature is the name of a file to be used as the signature file when
9875 this role is being used.
9876 If the name of the file has a vertical bar following it (|)
9877 then it is assumed that the file is a program that should be run to
9878 produce the signature.
9879 If the LiteralSig is set, then it is used instead of the signature file.
9880 LiteralSig is just a different way to store the signature.
9881 It is stored in the pine configuration file instead of in a separate
9882 signature file.
9883 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
9884 either in the role or as the default signature in the Setup/Config screen,
9885 then the signature file is ignored.
9887 <H3>Set Template</H3>
9889 A Template is the name of a file to be included in the message when this
9890 role is being used.
9891 If the name of the file has a vertical bar following it (|)
9892 then it is assumed that the file is a program that should be run to
9893 produce the template.
9896 Both signature files and template files may be stored remotely on an IMAP
9897 server.
9898 In order to do that you just give the file a remote name.
9899 This works just like the regular
9900 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
9901 option that is configured from the Setup/Configuration screen.
9902 A remote signature file name might look like:
9904 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
9906 Once you have named the remote signature or template file you create its
9907 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
9908 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
9909 line of the role editor.
9912 Both signature files and template files (or the output of signature programs
9913 and template file programs) may contain special tokens
9914 that are replaced with contents
9915 that depend on the message being replied to or forwarded.
9916 See the help for the individual fields inside the role editor for more
9917 information on tokens.
9919 <H3>Use SMTP Server</H3>
9921 If this field has a value, then it will be used as the SMTP server
9922 to send mail when this role is being used (unless the SMTP server variable
9923 is set in the system-wide fixed configuration file).
9924 It has the same semantics as the
9925 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
9926 variable in the Setup/Config screen.
9927 When you postpone the composition this SMTP server list will be saved
9928 with the postponed composition and it cannot be changed later.
9929 Because of that, you may want to make this a list of SMTP servers
9930 with the preferred server at the front of the list and alternate servers
9931 later in the list.
9934 If any of the actions are left unset, then the action depends on what
9935 is present in the &quot;Initialize settings using role&quot; field.
9936 If you've listed the nickname of another one of your roles there, then the
9937 corresponding action from that role will be used here.
9938 If that action is also blank, or if there is no nickname specified,
9939 then Alpine will do whatever it normally does to set these actions.
9940 This depends on other configuration options and features you've set.
9942 <H2>Command Descriptions</H2>
9944 <H3>Add</H3>
9946 The Add command is used to add a new role definition to your set of
9947 roles.
9948 The new role will be added after the highlighted role.
9950 <H3>Delete</H3>
9952 The Delete command deletes the currently highlighted role.
9954 <H3>Change</H3>
9956 The Change command lets you edit the nickname, Uses, Pattern,
9957 and Actions of the currently highlighted role.
9959 <H3>Shuffle</H3>
9961 The Shuffle command allows you to change the order of the roles.
9962 You may move the currently highlighted role up or down in the list.
9963 The order of the roles is important since the roles are tested for a
9964 match starting with the first role and continuing until a match is found.
9965 You should place the roles with more specific Patterns near the beginning
9966 of the list, and those with more general Patterns near the end so that
9967 the more specific matches will happen when appropriate.
9969 <H3>Replicate</H3>
9971 The Replicate command is used to copy an existing role and modify it.
9972 The new role will be added after the highlighted role.
9974 <H3>IncludeFile</H3>
9976 The IncludeFile command allows you to add a roles file to your configuration.
9977 Usually, your roles will be contained in your Alpine configuration file.
9978 If you wish, some or all of your roles may be stored in a separate file.
9979 If a roles file already exists (maybe it was made by somebody else using
9980 Alpine), you may insert it before the currently highlighted role.
9981 You may also insert an empty file or a file that does not yet exist.
9982 Once you have an empty roles file in your configuration, you may use
9983 the Shuffle command to move roles into it.
9984 In fact, that's the only way to get the initial role into the file.
9986 <H3>eXcludeFile</H3>
9988 The eXcludeFile command removes a roles file from your roles configuration.
9989 A limitation of the program is that in order to exclude a roles file
9990 that file must have at least one role
9991 in it, otherwise you won't be able to highlight a line in the file.
9992 So you may have to add a dummy role to the file in order to exclude the file.
9993 <P><UL>
9994 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9995 </UL>
9997 &lt;End of help on this topic&gt;
9998 </BODY>
9999 </HTML>
10000 ===== h_rules_other =====
10001 <HTML>
10002 <HEAD>
10003 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
10004 </HEAD>
10005 <BODY>
10006 <H1>SETUP OTHER RULES SCREEN</H1>
10007 <H2>SETUP OTHER RULES COMMANDS</H2>
10008 <!--chtml if pinemode="function_key"-->
10009 <PRE>
10010 Available  Commands -- Group 1         Available Commands -- Group 2   
10011 -------------------------------        ------------------------------  
10012 F1  Show Help Text                      F1  Show Help Text             
10013 F2  See commands in next group          F2  See commands in next group
10014 F3  Back to MAIN Alpine menu
10015 F4  Change configuration for rule
10016 F5  Move to previous rule               F5  Include file in rule config
10017 F6  Move to next rule                   F6  Exclude file from config
10018 F7  Previous page of rules
10019 F8  Next page of rules
10020 F9  Add new rule                        F9  Replicate existing rule
10021 F10 Delete existing rule
10022 F11 Shuffle the order of rules
10023 F12 Whereis (search rule nicknames)
10024 </PRE>
10025 <!--chtml else-->
10026 <PRE>
10027 Navigation                     General Alpine Commands
10028 -------------------------      -----------------------
10029  P  Prev rule                     ?  Display this help text
10030  N  Next rule                     E  Back to MAIN Alpine menu
10031  -  Previous page
10032 Spc (space bar) Next page
10033  W  WhereIs (search for word in rule nicknames)
10035 Setup Other Rules Commands
10036 ------------------------------------------------
10037  A  Add new rule                  $  Shuffle the order of rules
10038  D  Delete existing rule          C  Change configuration for highlighted rule
10039  R  Replicate existing rule
10040  I  Include file in rule config   X  Exclude file from rule config
10041 </PRE>
10042 <!--chtml endif-->
10044 <H2>Description of the Setup Other Rules Screen</H2>
10046 This is where you may set various actions that do not fit well into the
10047 other Rules categories.
10049 <H2>Patterns</H2>
10051 Other Rules are a little different from the rest of the Rules because
10052 they depend only on the current folder, and not on a particular message.
10053 In order to determine whether or not a rule's actions should be applied
10054 the current folder is compared with the rule's Pattern, which consists
10055 of only the Current Folder Type.
10056 Current Folder Type works the same for Other Rules as it does for Roles,
10057 Filtering, Index Coloring, and Scoring.
10058 Keep in mind that the only part of the Pattern that applies to Other
10059 Rules is the Current Folder Type when looking at the description of
10060 Patterns given
10061 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10063 <H2>The Actions</H2>
10065 <H3>Set Sort Order</H3>
10067 When you enter a new folder, these rules will be checked to see if you
10068 have set a sort order that is different from your default sort order.
10069 The default is set in the Setup/Config screen with
10070 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
10071 If the Sort Order action is set, then the folder will be displayed sorted in
10072 that sort order instead of in the default order.
10074 A possible point of confusion arises when you change the configuration
10075 of the Sort Order for the currently open folder.
10076 The folder will normally be re-sorted when you go back to viewing the
10077 index.
10078 However, if you have manually sorted the folder with the
10079 Sort
10080 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
10081 command, then it will not be re-sorted until the next time it is opened.
10083 <H3>Set Index Format</H3>
10085 When you enter a new folder, these rules will be checked to see if you
10086 have set an Index Format that is different from your default Index Format,
10087 which is set with the
10088 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
10089 If so, the index will be displayed with this format instead of the default.
10091 <H3>Set Startup Rule</H3>
10093 When you enter a new folder, these rules will be checked to see if you
10094 have set a startup rule that is different from the default startup rule.
10095 The default for incoming folders is set in the Setup/Config screen with
10096 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
10097 The default for folders other than INBOX that are not part of your
10098 incoming collection
10099 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
10100 is to start with the last message in the folder.
10101 If the Startup Rule is set to something other than &quot;default&quot;,
10102 then the rule will determine which message will be the current message when
10103 the folder is first opened.
10105 The various startup rule possibilities work the same here as they do in
10106 the incoming collection, so check
10107 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
10108 for more help.
10110 <H2>Command Descriptions</H2>
10112 <H3>Add</H3>
10114 The Add command is used to add a new rule definition to your set of
10115 rules.
10116 The new rule will be added after the highlighted rule.
10118 <H3>Delete</H3>
10120 The Delete command deletes the currently highlighted rule.
10122 <H3>Change</H3>
10124 The Change command lets you edit the nickname, Pattern,
10125 and Action of the currently highlighted rule.
10127 <H3>Shuffle</H3>
10129 The Shuffle command allows you to change the order of the rules.
10130 You may move the currently highlighted rule up or down in the list.
10131 The order of the rules is important since the rules are tested for a
10132 match starting with the first rule and continuing until a match is found.
10133 You should place the rules with more specific Patterns near the beginning
10134 of the list, and those with more general Patterns near the end so that
10135 the more specific matches will happen when appropriate.
10137 <H3>Replicate</H3>
10139 The Replicate command is used to copy an existing rule definition and modify it.
10140 The new rule will be added after the highlighted rule.
10142 <H3>IncludeFile</H3>
10144 The IncludeFile command allows you to add a rules file to your configuration.
10145 Usually, your rules will be contained in your Alpine configuration file.
10146 If you wish, some or all of your rules may be stored in a separate file.
10147 If a rules file already exists (maybe it was made by somebody else using
10148 Alpine), you may insert it before the currently highlighted rule.
10149 You may also insert an empty file or a file that does not yet exist.
10150 Once you have an empty rules file in your configuration, you may use
10151 the Shuffle command to move rules into it.
10152 In fact, that's the only way to get the initial rule into the file.
10154 <H3>eXcludeFile</H3>
10156 The eXcludeFile command removes a rules file from your rules configuration.
10157 A limitation of the program is that in order to exclude a rules file
10158 that file must have at least one rule
10159 in it, otherwise you won't be able to highlight a line in the file.
10160 So you may have to add a dummy rule to the file in order to exclude the file.
10161 <P><UL>
10162 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10163 </UL>
10165 &lt;End of help on this topic&gt;
10166 </BODY>
10167 </HTML>
10168 ===== h_rules_srch =====
10169 <HTML>
10170 <HEAD>
10171 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
10172 </HEAD>
10173 <BODY>
10174 <H1>SETUP SEARCH RULES SCREEN</H1>
10175 <H2>SETUP SEARCH RULES COMMANDS</H2>
10176 <!--chtml if pinemode="function_key"-->
10177 <PRE>
10178 Available  Commands -- Group 1         Available Commands -- Group 2   
10179 -------------------------------        ------------------------------  
10180 F1  Show Help Text                      F1  Show Help Text             
10181 F2  See commands in next group          F2  See commands in next group
10182 F3  Back to MAIN Alpine menu
10183 F4  Change configuration for rule
10184 F5  Move to previous rule               F5  Include file in rule config
10185 F6  Move to next rule                   F6  Exclude file from config
10186 F7  Previous page of rules
10187 F8  Next page of rules
10188 F9  Add new rule                        F9  Replicate existing rule
10189 F10 Delete existing rule
10190 F11 Shuffle the order of rules
10191 F12 Whereis (search rule nicknames)
10192 </PRE>
10193 <!--chtml else-->
10194 <PRE>
10195 Navigation                     General Alpine Commands
10196 -------------------------      -----------------------
10197  P  Prev rule                     ?  Display this help text
10198  N  Next rule                     E  Back to MAIN Alpine menu
10199  -  Previous page
10200 Spc (space bar) Next page
10201  W  WhereIs (search for word in rule nicknames)
10203 Setup Search Rules Commands
10204 ------------------------------------------------
10205  A  Add new rule                  $  Shuffle the order of rules
10206  D  Delete existing rule          C  Change configuration for highlighted rule
10207  R  Replicate existing rule
10208  I  Include file in rule config   X  Exclude file from rule config
10209 </PRE>
10210 <!--chtml endif-->
10212 <H2>Description of the Setup Search Rules Screen</H2>
10214 One of the commands that becomes available when that feature is turned on
10215 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
10216 screen to select a set of messages.
10217 One way of selecting messages is to use a Rule.
10218 All of the messages that match (or don't match if you wish)
10219 a Rule's Pattern will be selected.
10221 Any of your Rules may be used for this purpose.
10222 You might already have Rules set up for filtering, index line color, scores, or roles;
10223 and you may use any of those Rules with the Select command.
10224 However, you might find it more convenient to set up a separate set of Rules
10225 just for this purpose without having to worry about what other effects
10226 they may cause.
10227 That is the purpose of these Select Rules.
10230 Each rule has a &quot;Pattern&quot;
10231 that is used to decide which messages are selected when you use it with
10232 the Select command.
10234 <H2>Patterns</H2>
10236 In order to determine whether or not a message should be selected
10237 the message is compared with the rule's Pattern.
10238 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10239 Scoring, Other Rules, and Search Rules, so are described in only one place,
10240 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10242 <H2>Command Descriptions</H2>
10244 <H3>Add</H3>
10246 The Add command is used to add a new rule definition to your set of
10247 rules.
10248 The new rule will be added after the highlighted rule.
10250 <H3>Delete</H3>
10252 The Delete command deletes the currently highlighted rule.
10254 <H3>Change</H3>
10256 The Change command lets you edit the nickname and Pattern
10257 of the currently highlighted rule.
10259 <H3>Shuffle</H3>
10261 The Shuffle command allows you to change the order of the rules.
10262 This affects only the order they are presented in when you use the
10263 ^T subcommand of the Select by Rule command.
10264 You may move the currently highlighted rule up or down in the list.
10266 <H3>Replicate</H3>
10268 The Replicate command is used to copy an existing rule definition and modify it.
10269 The new rule will be added after the highlighted rule.
10271 <H3>IncludeFile</H3>
10273 The IncludeFile command allows you to add a rules file to your configuration.
10274 Usually, your rules will be contained in your Alpine configuration file.
10275 If you wish, some or all of your rules may be stored in a separate file.
10276 If a rules file already exists (maybe it was made by somebody else using
10277 Alpine), you may insert it before the currently highlighted rule.
10278 You may also insert an empty file or a file that does not yet exist.
10279 Once you have an empty rules file in your configuration, you may use
10280 the Shuffle command to move rules into it.
10281 In fact, that's the only way to get the initial rule into the file.
10283 <H3>eXcludeFile</H3>
10285 The eXcludeFile command removes a rules file from your rules configuration.
10286 A limitation of the program is that in order to exclude a rules file
10287 that file must have at least one rule
10288 in it, otherwise you won't be able to highlight a line in the file.
10289 So you may have to add a dummy rule to the file in order to exclude the file.
10290 <P><UL>
10291 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10292 </UL>
10294 &lt;End of help on this topic&gt;
10295 </BODY>
10296 </HTML>
10297 ===== h_rules_incols =====
10298 <HTML>
10299 <HEAD>
10300 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
10301 </HEAD>
10302 <BODY>
10303 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
10304 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
10305 <!--chtml if pinemode="function_key"-->
10306 <PRE>
10307 Available  Commands -- Group 1         Available Commands -- Group 2   
10308 -------------------------------        ------------------------------  
10309 F1  Show Help Text                      F1  Show Help Text             
10310 F2  See commands in next group          F2  See commands in next group
10311 F3  Back to MAIN Alpine menu
10312 F4  Change configuration for rule
10313 F5  Move to previous rule               F5  Include file in rule config
10314 F6  Move to next rule                   F6  Exclude file from config
10315 F7  Previous page of rules
10316 F8  Next page of rules
10317 F9  Add new rule                        F9  Replicate existing rule
10318 F10 Delete existing rule
10319 F11 Shuffle the order of rules
10320 F12 Whereis (search rule nicknames)
10321 </PRE>
10322 <!--chtml else-->
10323 <PRE>
10324 Navigation                     General Alpine Commands
10325 -------------------------      -----------------------
10326  P  Prev rule                     ?  Display this help text
10327  N  Next rule                     E  Back to MAIN Alpine menu
10328  -  Previous page
10329 Spc (space bar) Next page
10330  W  WhereIs (search for word in rule nicknames)
10332 Setup Index Color Commands
10333 ------------------------------------------------
10334  A  Add new rule                  $  Shuffle the order of rules
10335  D  Delete existing rule          C  Change configuration for highlighted rule
10336  R  Replicate existing rule
10337  I  Include file in rule config   X  Exclude file from rule config
10338 </PRE>
10339 <!--chtml endif-->
10341 <H2>Description of the Setup Index Line Colors Screen</H2>
10343 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
10344 This action is only available if your terminal is capable of displaying
10345 color and color display has been enabled with the
10346 <A HREF="h_config_color_style">Color Style</A> option within the
10347 Setup Color screen.
10348 (In PC-Alpine, color is always enabled so there is no option to turn on.)
10349 This screen lets you add, delete, modify, or change the order of the rules
10350 that cause the lines in the MESSAGE INDEX to be displayed in different
10351 colors.
10353 Each rule has a &quot;Pattern&quot;,
10354 which is used to decide which of the rules is used; and the color that
10355 is used if the Pattern matches a particular message.
10357 <H2>Index Color Patterns</H2>
10359 In order to determine whether or not a message matches an Index Color Rule
10360 the message is compared with the rule's Pattern.
10361 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10362 Scoring, Other Rules, and Search Rules, so are described in only one place,
10363 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10366 If none of the Index Color rules is a match for a particular index line,
10367 then the color used is set using
10368 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10370 <H2>Index Line Color</H2>
10372 This is the color that index lines are colored when there is a matching
10373 Pattern.
10374 This colors the whole index line, except possibly the status letters,
10375 which may be colored separately using
10376 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10378 <H2>Command Descriptions</H2>
10380 <H3>Add</H3>
10382 The Add command is used to add a new rule definition to your set of
10383 rules.
10384 The new rule will be added after the highlighted rule.
10386 <H3>Delete</H3>
10388 The Delete command deletes the currently highlighted rule.
10390 <H3>Change</H3>
10392 The Change command lets you edit the nickname, Pattern,
10393 and Index Line Color of the currently highlighted rule.
10395 <H3>Shuffle</H3>
10397 The Shuffle command allows you to change the order of the rules.
10398 You may move the currently highlighted rule up or down in the list.
10399 The order of the rules is important since the rules are tested for a
10400 match starting with the first rule and continuing until a match is found.
10401 You should place the rules with more specific Patterns near the beginning
10402 of the list, and those with more general Patterns near the end so that
10403 the more specific matches will happen when appropriate.
10405 <H3>Replicate</H3>
10407 The Replicate command is used to copy an existing rule definition and modify it.
10408 The new rule will be added after the highlighted rule.
10410 <H3>IncludeFile</H3>
10412 The IncludeFile command allows you to add a rules file to your configuration.
10413 Usually, your rules will be contained in your Alpine configuration file.
10414 If you wish, some or all of your rules may be stored in a separate file.
10415 If a rules file already exists (maybe it was made by somebody else using
10416 Alpine), you may insert it before the currently highlighted rule.
10417 You may also insert an empty file or a file that does not yet exist.
10418 Once you have an empty rules file in your configuration, you may use
10419 the Shuffle command to move rules into it.
10420 In fact, that's the only way to get the initial rule into the file.
10422 <H3>eXcludeFile</H3>
10424 The eXcludeFile command removes a rules file from your rules configuration.
10425 A limitation of the program is that in order to exclude a rules file
10426 that file must have at least one rule
10427 in it, otherwise you won't be able to highlight a line in the file.
10428 So you may have to add a dummy rule to the file in order to exclude the file.
10429 <P><UL>
10430 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10431 </UL>
10433 &lt;End of help on this topic&gt;
10434 </BODY>
10435 </HTML>
10436 ===== h_rules_filter =====
10437 <HTML>
10438 <HEAD>
10439 <TITLE>SETUP FILTERING SCREEN</TITLE>
10440 </HEAD>
10441 <BODY>
10442 <H1>SETUP FILTERING SCREEN</H1>
10443 <H2>SETUP FILTERING COMMANDS</H2>
10444 <!--chtml if pinemode="function_key"-->
10445 <PRE>
10446 Available  Commands -- Group 1         Available Commands -- Group 2   
10447 -------------------------------        ------------------------------  
10448 F1  Show Help Text                      F1  Show Help Text             
10449 F2  See commands in next group          F2  See commands in next group
10450 F3  Back to MAIN Alpine menu
10451 F4  Change configuration for filter
10452 F5  Move to previous filter             F5  Include file in filter config
10453 F6  Move to next filter                 F6  Exclude file from config
10454 F7  Previous page of filters
10455 F8  Next page of filters
10456 F9  Add new filter                      F9  Replicate existing filter
10457 F10 Delete existing filter
10458 F11 Shuffle the order of filters
10459 F12 Whereis (search filter nicknames)
10460 </PRE>
10461 <!--chtml else-->
10462 <PRE>
10463 Navigation                     General Alpine Commands
10464 -------------------------      -----------------------
10465  P  Prev Filter                   ?  Display this help text
10466  N  Next Filter                   E  Back to MAIN Alpine menu
10467  -  Previous page
10468 Spc (space bar) Next page
10469  W  WhereIs (search for word in filter nicknames)
10471 Setup Filters Commands
10472 ------------------------------------------------
10473  A  Add new filter                $  Shuffle the order of filters
10474  D  Delete existing filter        C  Change configuration for highlighted filter
10475  R  Replicate existing filter
10476  I  Include file in filter config X  Exclude file from filter config
10477 </PRE>
10478 <!--chtml endif-->
10480 <H2>Description of the Setup Filtering Screen</H2>
10482 This screen lets you add, delete, modify, or change the order of the rules
10483 that determine the filtering Alpine does on folders you view.
10485 The software that actually delivers mail (the stuff that happens
10486 before Alpine is involved) for you is in a better position to do mail filtering
10487 than Alpine itself.
10488 If possible, you may want to look into using that sort of mail filtering to
10489 deliver mail to different folders, delete it, or forward it.
10490 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
10492 Filtering is a way to automatically move certain messages from one folder
10493 to another or to delete messages.
10494 It can also be used to set message status (Important, Deleted, New,
10495 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
10496 Alpine doesn't have the ability to forward mail to another address or
10497 to deliver vacation messages.
10499 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
10500 When a folder is opened, when new mail arrives in an open folder, or
10501 when mail is Expunged from a folder; each
10502 message is compared with the Patterns of your filtering rules.
10503 The comparisons start with the first rule and keep going until there
10504 is a match.
10505 If a match is found, the message may be deleted or moved, depending on
10506 the setting of the Filter Action.
10507 If the message is not deleted, it may have its status altered.
10510 <EM>NOTE:</EM>
10511 When setting up a Pattern used to delete messages,
10512 it is recommended that you test the Pattern first with a &quot;Move&quot;
10513 folder specified in
10514 case unintended matches occur.  Messages that are deleted will be removed 
10515 from the folder and <EM>unrecoverable</EM> from within Alpine after the
10516 next Expunge command or once the folder being filtered has been closed.
10518 <H2>Filter Patterns</H2>
10520 In order to determine whether or not a message matches a filter the message is
10521 compared with the Filter's Pattern.
10522 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10523 Scoring, Other Rules, and Search Rules, so are described in only one place,
10524 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10526 Since filtering is a potentially destructive action, if you have a filtering
10527 Pattern with nothing other than Current Folder Type set, that filtering
10528 rule is ignored.
10530 <H2>Filter Actions</H2>
10532 Once a filter match is found for a particular message, there are some actions
10533 that may be taken.
10534 First, the message may have its status changed.
10535 This is the same message status that you can manipulate manually using the
10536 <a href="h_common_flag">Flag Command</a>.
10537 There are always four elements of message status that you can control.
10538 You can set or clear the Important status, the New status, the Deleted
10539 status, and the Answered status.
10540 Of course, if the filter is going to delete the message,
10541 then there is no point in setting message status.
10542 You may also be able to set user-defined keywords for a message.
10543 Read a little about keywords in the help text for the
10544 <A HREF="h_common_flag">Flag</A> command.
10546 Second, the filter may delete or move the message.
10547 Deleting the message marks it Deleted and removes it from view.
10548 It is effectively gone forever (though it technically is still there until
10549 the next expunge command, which may happen implicitly).
10550 Moving the message moves it from the open folder into the folder
10551 listed on the &quot;Folder List&quot; line of the filter configuration.
10552 If you list more than one folder name (separated by commas) then the message
10553 will be copied to each of those folders.
10554 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
10555 message is removed from the current folder.
10556 If you just want to set the messages status without deleting it from
10557 the folder, then set the filter action to
10558 &quot;Just Set Message Status&quot;.
10560 (There is no way to do a Copy instead of a Move, due to the difficulties
10561 involved in keeping track of whether or not a message has
10562 already been copied.)
10564 <H2>Command Descriptions</H2>
10566 <H3>Add</H3>
10568 The Add command is used to add a new filter definition to your set of
10569 filters.
10570 The new filter will be added after the highlighted filter.
10572 <H3>Delete</H3>
10574 The Delete command deletes the currently highlighted filter.
10576 <H3>Change</H3>
10578 The Change command lets you edit the nickname, Pattern,
10579 and Folder of the currently highlighted filter.
10581 <H3>Shuffle</H3>
10583 The Shuffle command allows you to change the order of the filters.
10584 You may move the currently highlighted filter up or down in the list.
10585 The order of the filters is important since the filters are tested for a
10586 match starting with the first filter and continuing until a match is found.
10587 You should place the filters with more specific Patterns near the beginning
10588 of the list, and those with more general Patterns near the end so that
10589 the more specific matches will happen when appropriate.
10591 <H3>Replicate</H3>
10593 The Replicate command is used to copy an existing filter and modify it.
10594 The new filter will be added after the highlighted filter.
10596 <H3>IncludeFile</H3>
10598 The IncludeFile command allows you to add a filters file to your configuration.
10599 Usually, your filters will be contained in your Alpine configuration file.
10600 If you wish, some or all of your filters may be stored in a separate file.
10601 If a filters file already exists (maybe it was made by somebody else using
10602 Alpine), you may insert it before the currently highlighted filter.
10603 You may also insert an empty file or a file that does not yet exist.
10604 Once you have an empty filters file in your configuration, you may use
10605 the Shuffle command to move filters into it.
10606 In fact, that's the only way to get the initial filter into the file.
10608 <H3>eXcludeFile</H3>
10610 The eXcludeFile command removes a filters file from your filters configuration.
10611 A limitation of the program is that in order to exclude a filters file
10612 that file must have at least one filter
10613 in it, otherwise you won't be able to highlight a line in the file.
10614 So you may have to add a dummy filter to the file in order to exclude the file.
10615 <P><UL>
10616 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10617 </UL>
10619 <H3>Performance Considerations</H3>
10620 The number and type of patterns being tested can 
10621 adversely effect performance.  Issues to be aware
10622 of include:
10624 <UL>
10625   <LI> The more filters you have defined the longer it will take to run down
10626 the list.  Deleting unused filters is a good idea.
10627   <LI> Filtering in newsgroups served by an NNTP server will be slow
10628 if your patterns include tests other than &quot;From:&quot;
10629 or &quot;Subject:&quot;.
10630 </UL>
10632 &lt;End of help on this topic&gt;
10633 </BODY>
10634 </HTML>
10635 ===== h_rules_score =====
10636 <HTML>
10637 <HEAD>
10638 <TITLE>SETUP SCORING SCREEN</TITLE>
10639 </HEAD>
10640 <BODY>
10641 <H1>SETUP SCORING SCREEN</H1>
10642 <H2>SETUP SCORING COMMANDS</H2>
10643 <!--chtml if pinemode="function_key"-->
10644 <PRE>
10645 Available  Commands -- Group 1         Available Commands -- Group 2   
10646 -------------------------------        ------------------------------  
10647 F1  Show Help Text                      F1  Show Help Text             
10648 F2  See commands in next group          F2  See commands in next group
10649 F3  Back to MAIN Alpine menu
10650 F4  Change configuration for rule
10651 F5  Move to previous rule               F5  Include file in rule config
10652 F6  Move to next rule                   F6  Exclude file from config
10653 F7  Previous page of rules
10654 F8  Next page of rules
10655 F9  Add new rule                        F9  Replicate existing rule
10656 F10 Delete existing rule
10657 F11 Shuffle the order of rules
10658 F12 Whereis (search rule nicknames)
10659 </PRE>
10660 <!--chtml else-->
10661 <PRE>
10662 Navigation                     General Alpine Commands
10663 -------------------------      -----------------------
10664  P  Prev rule                     ?  Display this help text
10665  N  Next rule                     E  Back to MAIN Alpine menu
10666  -  Previous page
10667 Spc (space bar) Next page
10668  W  WhereIs (search for word in rule nicknames)
10670 Setup Scoring Commands
10671 ------------------------------------------------
10672  A  Add new rule                  $  Shuffle the order of rules
10673  D  Delete existing rule          C  Change configuration for highlighted rule
10674  R  Replicate existing rule
10675  I  Include file in rule config   X  Exclude file from rule config
10676 </PRE>
10677 <!--chtml endif-->
10679 <H2>Description of the Setup Scoring Screen</H2>
10681 Most people will not use scores at all, but if you do use them, here's how
10682 they work in Alpine.
10683 Using this screen, you may define Scoring rules.
10684 The score for a message is calculated by looking at every Score rule defined
10685 and adding up the Score Values for the ones that match the message.
10686 If there are no matches for a message, it has a score of zero.
10687 Message scores may be used a couple of ways in Alpine.
10689 <H3>Sorting by Score</H3>
10691 One of the methods you may use to sort message indexes is to sort by
10692 score.
10693 The scores of all the messages in a folder will be calculated and then
10694 the index will be ordered by placing the messages in order of ascending or
10695 descending score.
10697 <H3>Scores for use in Patterns</H3>
10699 The Patterns used for Roles, Index Line Coloring, and Filtering have a
10700 category labeled &quot;Score Interval&quot;.
10701 When a message is being compared with a Pattern to check for a match, if
10702 the Score Interval is set only messages that have a score somewhere in
10703 the interval are a match.
10705 <H2>Scoring Rule Patterns</H2>
10707 In order to determine whether or not a message matches a scoring rule
10708 the message is compared with the rule's Pattern.
10709 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10710 Scoring, Other Rules, and Search Rules, so are described in only one place,
10711 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10714 Actually, Scoring rule Patterns are slightly different from the other types of
10715 Patterns because Scoring rule Patterns don't contain a Score Interval.
10716 In other words, when calculating the score for a message, which is done
10717 by looking at the Scoring rule Patterns, scores aren't used.
10719 <H2>Score Value</H2>
10721 This is the value that will be added to the score for a message if the
10722 rule's Pattern is a match.
10723 Each individual Score Value is an integer between -100 and 100, and the
10724 values from matching rules are added together to get a message's score.
10725 There is also a way to extract the value from a particular header of each
10726 message. See the help text for Score Value for further information.
10728 <H2>Command Descriptions</H2>
10730 <H3>Add</H3>
10732 The Add command is used to add a new scoring rule definition.
10733 The new rule will be added after the highlighted rule.
10735 <H3>Delete</H3>
10737 The Delete command deletes the currently highlighted scoring rule.
10739 <H3>Change</H3>
10741 The Change command lets you edit the nickname, Pattern,
10742 and Score Value of the currently highlighted scoring rule.
10744 <H3>Shuffle</H3>
10746 The Shuffle command allows you to change the order of the scoring rules.
10747 You may move the currently highlighted rule up or down in the list.
10748 The order of the rules is important since the rules are tested for a
10749 match starting with the first rule and continuing until a match is found.
10750 You should place the rules with more specific Patterns near the beginning
10751 of the list, and those with more general Patterns near the end so that
10752 the more specific matches will happen when appropriate.
10754 <H3>Replicate</H3>
10756 The Replicate command is used to copy an existing rule and modify it.
10757 The new rule will be added after the highlighted rule.
10759 <H3>IncludeFile</H3>
10761 The IncludeFile command allows you to add a rules file to your configuration.
10762 Usually, your rules will be contained in your Alpine configuration file.
10763 If you wish, some or all of your rules may be stored in a separate file.
10764 If a rules file already exists (maybe it was made by somebody else using
10765 Alpine), you may insert it before the currently highlighted rule.
10766 You may also insert an empty file or a file that does not yet exist.
10767 Once you have an empty rules file in your configuration, you may use
10768 the Shuffle command to move rules into it.
10769 In fact, that's the only way to get the initial rule into the file.
10771 <H3>eXcludeFile</H3>
10773 The eXcludeFile command removes a rules file from your rules configuration.
10774 A limitation of the program is that in order to exclude a rules file
10775 that file must have at least one rule
10776 in it, otherwise you won't be able to highlight a line in the file.
10777 So you may have to add a dummy rule to the file in order to exclude the file.
10778 <P><UL>
10779 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10780 </UL>
10782 &lt;End of help on this topic&gt;
10783 </BODY>
10784 </HTML>
10785 ===== h_direct_config =====
10786 <HTML>
10787 <HEAD>
10788 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
10789 </HEAD>
10790 <BODY>
10791 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
10792 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
10793 <!--chtml if pinemode="function_key"-->
10794 <PRE>
10795 Available  Commands                        
10796 -------------------------------            
10797 F1  Show Help Text                         
10798 F3  Back to MAIN Alpine menu                 
10799 F4  Change configuration for directory server  
10800 F5  Move to previous directory server          
10801 F6  Move to next directory server              
10802 F7  Previous page of directory servers         
10803 F8  Next page of directory servers
10804 F9  Add new directory server
10805 F10 Delete existing directory server
10806 F11 Shuffle the order of directory servers
10807 F12 Whereis (search directory server titles)   
10808 </PRE>
10809 <!--chtml else-->
10810 <PRE>
10811 Navigation                     General Alpine Commands
10812 -------------------------      -----------------------
10813  P  Prev Directory Server         ?  Display this help text
10814  N  Next Directory Server         E  Back to MAIN Alpine menu
10815  -  Previous page
10816 Spc (space bar) Next page
10817  W  WhereIs (search for word in directory server titles)
10819 Setup LDAP Directory Server Commands
10820 ------------------------------------------------
10821  A  Add new directory server      $  Shuffle the order of directory servers
10822  D  Delete existing dir server    C  Change configuration for highlighted server
10823 </PRE>
10824 <!--chtml endif-->
10826 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
10828 This screen lets you add, delete, modify, or change the order of your
10829 directory servers. You may also set some optional behavior for each server.
10830 The &quot;Add Dir&quot; command brings up a blank form to 
10831 fill in. You will have to supply at least the name of the LDAP server.
10832 You will often have to supply a search base to be used with that server,
10833 as well. Once the form has been brought up on your screen, there is help
10834 available for each of the options you may set.
10836 The &quot;Del Dir&quot; command allows you to remove a directory server
10837 from your configuration.
10839 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
10840 The difference is that instead of bringing up a form for a new server
10841 configuration, you are changing the configuration of an existing entry.
10842 For example, you might want to correct a typing error, change a
10843 nickname, or change one of the options set for that server.
10845 The &quot;Shuffle&quot; command is used to change the order of directory
10846 servers.
10847 <P><UL>
10848 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10849 </UL>
10851 &lt;End of help on this topic&gt;
10852 </BODY>
10853 </HTML>
10854 ============= h_address_display ========================
10855 <HTML>
10856 <HEAD>
10857 <TITLE>SEARCH RESULTS INDEX</TITLE>
10858 </HEAD>
10859 <BODY>
10860 <H1>SEARCH RESULTS INDEX</H1>
10861 This screen shows the results, if any, of your Directory Server search.  
10862 Commands (besides those for screen navigation) are:
10863 <DL>
10864 <DT>View
10865 <!--chtml if pinemode="function_key"-->
10866 (F4)
10867 <!--chtml else-->
10869 <!--chtml endif-->
10870 </DT>
10871 <DD>See the full information for the selected entry.
10873 <DT>Compose
10874 <!--chtml if pinemode="function_key"-->
10875 (F9)
10876 <!--chtml else-->
10878 <!--chtml endif--></DT>
10879 <DD>Compose a message with the selected entry as the recipient.
10881 <DT>Role
10882 <!--chtml if pinemode="function_key"-->
10883 (F2)
10884 <!--chtml else-->
10886 <!--chtml endif--></DT>
10887 <DD>Compose a message with the selected entry as the recipient. This differs
10888 from Compose in that you may select a role before beginning your composition.
10890 <DT>Forward
10891 <!--chtml if pinemode="function_key"-->
10892 (F10)
10893 <!--chtml else-->
10895 <!--chtml endif--></DT>
10896 <DD>Send the full information for the selected entry as an 
10897 email message to someone else.
10899 <DT>Save
10900 <!--chtml if pinemode="function_key"-->
10901 (F11)
10902 <!--chtml else-->
10904 <!--chtml endif-->
10905 </DT>
10906 <DD>Save to your address book:
10907 <UL>
10908 <LI>the result of the search (as just found through your query) for the 
10909 selected entry; or 
10910 <LI>the selected entry for repeated Directory Server searching when used 
10911 in the future.
10912 </UL>
10913 or<BR>
10914 Export to a file (external to Alpine):
10915 <UL>
10916 <LI>the full information for the selected entry; or
10917 <LI>the email address from the selected entry; or
10918 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
10919 </UL>
10920 <DT>WhereIs
10921 <!--chtml if pinemode="function_key"-->
10922 (F12)
10923 <!--chtml else-->
10925 <!--chtml endif-->
10926 </DT>
10927 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10928 displayed text, not the full records for each entry.)  
10929 </DL>
10930 &lt;End of help on this topic&gt;
10931 </BODY>
10932 </HTML>
10933 ============= h_address_select ========================
10934 <HTML>
10935 <HEAD>
10936 <TITLE>SEARCH RESULTS INDEX</TITLE>
10937 </HEAD>
10938 <BODY>
10939 <H1>SEARCH RESULTS INDEX</H1>
10940 This screen shows the results, if any, of your Directory Server search.  
10941 Commands (besides those for screen navigation) are:
10942 <DL>
10943 <DT>Select
10944 </DT>
10945 <DD>Select this entry for use.
10947 <DT>ExitSelect
10948 <DD>Exit without selecting any of the entries.
10950 <DT>WhereIs
10951 </DT>
10952 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
10953 displayed text, not the full records for each entry.)  
10954 </DL>
10955 &lt;End of help on this topic&gt;
10956 </BODY>
10957 </HTML>
10958 ===== h_folder_maint =====
10959 <HTML>
10960 <HEAD>
10961 <TITLE>Help for Folder List</TITLE>
10962 </HEAD>
10963 <BODY>
10964 <H1>FOLDER LIST COMMANDS</H1>
10965 <!--chtml if pinemode="function_key"-->
10966 <PRE>
10967 Available Commands -- Group 1        Available Commands -- Group 2
10968 -------------------------------      ------------------------------
10969 F1  Show Help Text                    F1  Show Help Text               
10970 F2  See commands in next group        F2  See commands in next group  
10971 F3  MAIN MENU Screen                  F3  Quit Alpine                    
10972 F4  Select folder and view it         F4  MAIN MENU Screen
10973 F5  Move to previous folder
10974 F6  Move to next folder               F6  Specify a folder to go to
10975 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
10976 F8  Show next screen of listing       F8  Compose a message
10977 F9  Add a new folder                  F9  Print folder listing
10978 F10 Delete selected folder
10979 F11 Rename selected folder
10980 F12 Whereis (search folder names)
10982 Available Commands -- Group 3
10983 F1  Show Help Text
10984 F2  See commands in next group
10985 F5  Go to next new message
10986     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
10987 F8  Compose a message using roles
10988 F9  Export folder to a file
10989 F10 Import the file back to a folder
10990 </PRE>
10991 <!--chtml else-->
10992 <PRE>
10993 Navigating the Folder Screen            Operations on the Selected Folder
10994 ----------------------------            ---------------------------------
10995  P   Move to previous folder              V  View Index of selected folder
10996  N   Move to next folder                  D  Delete
10997  -   Show previous page of listing        R  Rename
10998 Spc  (space bar) Show next page           E  Export to file
10999                                           U  Import from file to folder
11001 FOLDER LIST Screen Commands              General Alpine Command
11002 ---------------------------              -----------------------
11003  A  Add a folder                          O  Show all other available commands
11004  G  Specify a folder to go to             ?  Show Help text
11005  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
11006  W  Whereis (search folder names)         Q  Quit Alpine
11007  %  Print folder listing                  C  Compose a message
11008                                           #  Compose a message using roles
11009 </PRE>
11010 <!--chtml endif-->
11012 These commands are only available in the FOLDER LIST screen when the 
11013 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
11014 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
11015 <DT>Select:</DT>
11016 <DD>Select folders by certain criteria:<UL>
11017 <LI>All: of limited use, since there is no Apply command.
11018 <LI>by Property: <UL>
11019         <LI>folder contains messages not yet seen 
11020         <LI>folder contains new messages
11021         <LI>folder contains exactly as many, more, or fewer messages 
11022 than a given number
11023         </UL>
11024 <LI>by Text: <UL>
11025         <LI>contained in name of folder (Name Select)
11026         <LI>contained in messages in folder (Content Select)
11027         </UL>
11028 </UL></DD>
11030 <DT>Select current:</DT>
11031 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
11032 add one or more folders to a set created with the Select command described 
11033 above.)</DD>
11034 <DT>Zoom mode:</DT>
11035 <DD>Toggles display of only selected folders or all folders on and off.</DD>
11036 </DL>
11038 If the feature
11039 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
11040 is set then the TAB key will display the number of recent messages and
11041 the total number of messages in the highlighted folder.
11043 The &quot;Export&quot; command causes the lowest common denominator style
11044 mailbox to be written to a file.
11045 If the file already exists, you are asked if you want to delete it.
11046 If you say No, then the operation is aborted.
11047 Export might be a reasonable way to store a backup or an archival copy of
11048 a folder.
11049 The exported-to file is a local file on the system where you are running Alpine.
11050 The &quot;Import&quot; command is the opposite of the Export command.
11051 It reads a file created by Export and asks where it should save it in your
11052 folders.
11053 This could be a new folder or an existing folder.
11054 If the folder already exists, the messages from the exported file will be
11055 appended to the folder.
11057 <CENTER>Description of the FOLDER LIST Screen</CENTER>
11059 The purpose of the FOLDER LIST screen is to help you browse and manage
11060 the folders and directories (also known as &quot;hierarchy&quot;)
11061 contained within a collection.
11064 Folders and directories are arranged alphabetically across lines of
11065 the screen.  Directories, if present, are denoted by a special
11066 character at the end of the name known as the hierarchy delimiter
11067 (typically, &quot;/&quot;).  By default, folders and directories are
11068 mixed together.  The
11069 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
11070 configuration option can be used to group directories toward the 
11071 beginning or end of the list.
11074 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
11075 commands change the &quot;selected&quot; (i.e., highlighted) folder or
11076 directory, and the View Fldr/Dir commands will &quot;open&quot; the
11077 selected item.  Folder and directory management is provided via the
11078 Rename, Delete and Add commands.
11080 <P><CENTER>About Folders</CENTER>
11081 What are Folders?<P>
11083 Folders are simply files where messages are kept.  Every message has to be
11084 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
11085 folder for sent mail and a folder for saved messages.<P>
11087 You may create as many other folders as you wish.  They must be given
11088 names that can be filenames on the filesystem.  
11091 You can move messages from one folder to another by opening the original
11092 folder and saving messages into the other folder just as you can save
11093 message from your INBOX to any other folder.<P>
11095 Folders are typically just files in the filesystem.  However, the files
11096 that are
11097 folders have some special formatting in them (so that Alpine knows where one
11098 message ends and another begins) and should <EM>not</EM> be edited outside of
11099 Alpine.  If you want copies of your messages in text files that you can edit
11100 or otherwise manipulate, use the Export command to copy them from Alpine into
11101 your regular file area.
11104 FOR MORE INFORMATION: See the section on
11105 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11107 <CENTER>About Directories</CENTER>
11109 A directory is simply a container used to group folders within a
11110 folder list.  You can create as many directories as you like.  And 
11111 directories can even contain directories themselves.
11114 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
11115 to note that not all IMAP servers support directories.  If you find that
11116 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
11117 then it's likely that directories are not supported by the server serving
11118 in that collection.
11121 Similarly, servers that do provide for directories may not do so in
11122 the same way.  On some servers, for example, each folder name you
11123 create is at the same time capable of being a directory.  When this
11124 happens, Alpine will display both the folder name and the name of the
11125 directory (with trailing hierarchy delimiter) in the folder list.
11128 Another issue with IMAP access, though with a much smaller set of servers,
11129 is that not all servers accept the request to list out the available
11130 folders and directories in the same way.  If you find yourself having
11131 trouble viewing folders on your server, you might investigate the
11132 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
11133 feature.
11135 <UL>
11136 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11137 </UL>
11139 &lt;End of help on this topic&gt;
11140 </BODY>
11141 </HTML>
11142 ========= h_valid_folder_names ========
11143 <HTML>
11144 <HEAD>
11145 <TITLE>Explanation of Valid Folder Names</TITLE>
11146 </HEAD>
11147 <BODY>
11148 <H1>Folder Name Syntax Explained</H1>
11150 Once your folder collections are defined, you can usually refer to
11151 folders by their simple (unqualified) name, or pick from a FOLDER LIST
11152 display.  However, understanding the complete syntax for folder names,
11153 both local and remote, is handy when using the Goto command and when
11154 you are adding new folder collections via the Setups/collectionList screen.
11156 An Alpine folder name looks like
11159 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
11162 The square brackets ([]) mean that the part is optional.
11165 If there is no remote-specification, then the folder name is interpreted
11166 locally on the computer running Alpine.
11167 Local folder names depend on the operating system used by the computer 
11168 running Alpine, as well as the configuration of that system.  For example,
11169 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
11170 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
11171 system running Unix.
11174 Alpine users have the option of using folders that are stored on some other
11175 computer.  Alpine accesses remote folders via IMAP (the Internet Message
11176 Access Protocol), or in the case of news, via NNTP (the Network News
11177 Transport Protocol).  To be able to access remote folders in Alpine, the
11178 remote host must be running the appropriate server software (imapd or
11179 nntpd) and you must correctly specify the name of the folder to Alpine,
11180 including the domain name of the remote machine. For example,
11182 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
11184 could be a remote folder specification, and so could
11186 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
11189 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
11191 Note that in the case of remote folders, the directory/file path in the specification is 
11192 determined by the operating system of the remote computer, <B>not</B> by
11193 the operating system of the computer on which you are running Alpine.
11195 As you can tell, the name of the computer is in &#123;} brackets
11196 followed immediately by the name of the folder.  (In each of these cases the
11197 optional namespace is missing.)  If, as in these
11198 examples, there is no remote access protocol specified, then IMAP is
11199 assumed.  Check
11200 <A HREF="h_folder_server_syntax">here</A>
11201 for a more detailed look at what options can be placed between the brackets.
11202 If there are no brackets at all, then the folder name is interpreted locally
11203 on the computer on which you are running Alpine.
11206 To the right of the brackets when a server name is present, or at the
11207 start of the foldername if no server is present, the sharp sign,
11208 &quot;#&quot;, holds special meaning.  It indicates a folder name
11209 outside the area reserved for your personal folders.  In fact, it's
11210 used to indicate both the name of the folder, and a special phrase
11211 telling Alpine how to interpret the name that follows.
11214 So, for example, Alpine can be used to access a newsgroup that might be 
11215 available on your computer using:
11217 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11219 The sharp sign indicates the folder name is outside your personal
11220 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
11221 interpret the remainder of the name as a newsgroup.
11224 Similarly, to access a newsgroup on your IMAP server, you might
11225 use something like:
11227 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
11230 There are a number of such special phrases (or &quot;namespaces&quot;)
11231 available.  For a more detailed explanation read about
11232 <A HREF="h_folder_name_namespaces">Namespaces</A>.
11235 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
11236 names.  The name INBOX refers to your &quot;principal incoming
11237 message folder&quot; and will be mapped to the actual file name used for your
11238 INBOX on any given host.  Therefore, a name like
11239 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
11240 store incoming mail for you on that particular host.
11243 &lt;End of help on this topic&gt;
11244 </BODY>
11245 </HTML>
11246 ======= h_folder_name_namespaces =======
11247 <HTML>
11248 <HEAD>
11249 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
11250 </HEAD>
11251 <BODY>
11252 <H1>Folder Name Namespaces Explained</H1>
11254 An Alpine folder name looks like
11257 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
11260 The local part of a folder name has an optional &quot;Namespace&quot; which
11261 tells Alpine how to interpret the rest of the name.
11263 <P> 
11264 By default the folder name is interpreted as defining a section of your personal
11265 folder area.  This area and how you specify it are defined by the
11266 server, if one is specified, or, typically, the home
11267 directory, if no server is defined.
11270 If a namespace is specified, it begins with the
11271 sharp, &quot;#&quot;, character followed by the name of the namespace
11272 and then the namespace's path-element-delimiter.  Aside from the
11273 path's format, namespaces can also imply access rights, content
11274 policy, audience, location, and, occasionally, access methods.
11277 Each server exports its own set (possibly of size one) of 
11278 namespaces.  Hence, it's likely communication with your server's
11279 administrator will be required for specific configurations.  Some of
11280 the more common namespaces, however, include:
11282 <DL>
11283 <DT>#news.</DT>
11284 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
11285 names are hierarchically defined with each level delimited by a period.
11287 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11289 </DD>
11290 <DT>#public/</DT>
11291 <DD>This specifies a folder area that the server may export to the general
11292 public.
11293 </DD>
11294 <DT>#shared/</DT>
11295 <DD>This specifies a folder area that the server may export to groups
11296 of users.
11297 </DD>
11298 <DT>#ftp/</DT>
11299 <DD>This specifies a folder area that is the same as that it may have 
11300 exported via the &quot;File Transfer Protocol&quot;.
11301 </DD>
11302 <DT>#mh/</DT>
11303 <DD>This specifies the personal folder area associated with folders
11304 and directories that were created using the MH message handling system.
11305 </DD>
11306 <DT>#move/</DT>
11307 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
11309 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
11311 The #move namespace is followed by two folder names separated by a delimiter
11312 character.
11313 The delimiter character may be any character that does not appear in
11314 the MailDropFolder name.
11315 The meaning of #move is that mail will be copied from the MailDropFolder to
11316 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
11317 Periodic checks at frequency
11318 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
11319 time between checks set by
11320 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
11321 are made for new mail arriving in the MailDropFolder.
11322 An example that copies mail from a POP inbox to a local folder follows
11324 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
11326 To you it appears that mail is being delivered to the local folder when it
11327 is copied from the MailDropFolder, and you read mail from the local folder.
11329 Note that if the DestinationFolder does not exist then the messages are not
11330 copied from the MailDropFolder.
11331 A #move folder may only be used as an
11332 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
11333 an Inbox.
11334 When you are in the FOLDER LIST of Incoming Message Folders (after turning
11335 on the
11336 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
11337 option)
11338 the Add command has a subcommand &quot;Use Mail Drop&quot;
11339 which may be helpful for defining the folder in your Alpine configuration.
11340 The same is true when you edit the
11341 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
11342 option in Setup/Config.
11343 Each of these configuration methods will also create the DestinationFolder
11344 if it doesn't already exist.
11345 If you are having problems, make sure the DestinationFolder exists.
11346 You may find some more useful information about Mail Drops at
11347 <A HREF="h_maildrop">What is a Mail Drop?</A>.
11348 </DD>
11349 </DL>
11352 In addition, the server may support access to other user's folders,
11353 provided you have suitable permissions.  Common methods use a prefix
11354 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
11355 indicate the root of the other user's folder area.
11358 No, nothing's simple.
11361 &lt;End of help on this topic&gt;
11362 </BODY>
11363 </HTML>
11364 ============= h_whatis_vcard ========================
11365 <HTML>
11366 <HEAD>
11367 <TITLE>VCARD EXPLAINED</TITLE>
11368 </HEAD>
11369 <BODY>
11370 <H1>What is the vCard format?</H1>
11371 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
11372 information about and among people and organizations electronically.  
11373 More information about vCard can be found (as of May 1998) on the WWW site 
11374 of the Internet Mail Consortium at the URL:
11376 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
11378 &lt;End of help on this topic&gt;
11379 </BODY>
11380 </HTML>
11381 ===== h_folder_open =====
11382 <HTML>
11383 <HEAD>
11384 <TITLE>Explanation of Folder Selection</TITLE>
11385 </HEAD>
11386 <BODY>
11387 <BR>
11388 <BR>
11389 This screen is designed to allow you to quickly and easily survey your
11390 folders and select one to open.
11391 <!--chtml if pinemode="function_key"-->
11392 <PRE>
11393 Navigating the List of Folders             General Alpine Commands
11394 ------------------------------             -----------------------
11395  P   Move to previous folder               ?   Show this help text
11396  N   Move to next folder
11397  -   Show previous screen of folders
11398 Spc  (space bar) Show next screen
11399  W   WhereIs (search folder names)
11401 Folder Selection Commands
11402 -------------------------
11403  E   Exit the Folder Select menu (without selecting a folder)
11404  S   Select the currently highlighted folder
11405 </PRE>
11406 <!--chtml else-->
11407 <PRE>
11408 Navigating the List of Folders             General Alpine Commands
11409 ------------------------------             -----------------------
11410 F5   Move to previous folder               F1  Show this help text
11411 F6   Move to next folder
11412 F7   Show previous screen of folders
11413 F8   Show next screen of folders
11414 F12  WhereIs (search folder names)
11416 Folder Selection Commands
11417 -------------------------
11418 F3   Exit the Folder Select menu (without selecting a folder)
11419 F4   Select the currently highlighted folder
11420 </PRE>
11421 <!--chtml endif-->
11423 FOR MORE INFORMATION: See the section on
11424 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11426 &lt;End of help on this topic&gt;
11427 </BODY>
11428 </HTML>
11429 ===== h_folder_subscribe =====
11430 <HTML>
11431 <HEAD>
11432 <TITLE>Newsgroup Subcribe Screen explained</TITLE>
11433 </HEAD>
11434 <BODY>
11435 <H1>FOLDER SUBSCRIBE HELP</H1>
11437 This screen is designed to help you subscribe to newsgroups you are
11438 not currently subscribed to.  The screen display is a list of all
11439 available newsgroups (or possibly a partial list if you specified a
11440 partial name when entering the screen).  Groups you have already
11441 subscribed to have the letters &quot;SUB&quot; next to them.  You may
11442 select a single new group to subscribe to by moving the cursor to that
11443 group and pressing &quot;S&quot; or carriage return.  Alternatively,
11444 you may change into ListMode with the &quot;ListMode&quot; command.
11445 The display will change slightly so that each group has a checkbox in
11446 front of it.  Use the cursor and the Set/Unset command to place an
11447 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
11450 When you are finished marking groups, the &quot;Subscribe&quot;
11451 command will subscribe you to those groups you have marked.  Note, you
11452 may not unsubscribe to groups with this command.  Instead of the
11453 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
11454 UnSbscrbe command.
11457 <!--chtml if pinemode="function_key"-->
11458 <PRE>
11459 Navigating the List of Newsgroups          General Alpine Commands
11460 ---------------------------------          -----------------------
11461 F5   Move to previous group                F1   Show this help text
11462 F6   Move to next group
11463 F7   Show previous screen of groups
11464 F8   Show next screen of groups
11465 F12  WhereIs (search group names)
11466 F9   Use ListMode
11468 Group Selection Commands
11469 -------------------------
11470 F3  Exit the News Subscribe menu (without selecting any groups)
11471 F4  Subscribe to the currently highlighted newsgroup
11472 </PRE>
11473 <!--chtml else-->
11474 <PRE>
11475 Navigating the List of Newsgroups          General Alpine Commands
11476 ---------------------------------          -----------------------
11477  P   Move to previous group                ?   Show this help text
11478  N   Move to next group
11479  -   Show previous screen of groups
11480 Spc  (space bar) Show next screen
11481  W   WhereIs (search group names)
11482  L   Use ListMode
11484 Group Selection Commands
11485 -------------------------
11486  E   Exit the News Subscribe menu (without selecting any groups)
11487  S   Subscribe to the currently highlighted newsgroup
11488 </PRE>
11489 <!--chtml endif-->
11491 When in ListMode, there is an additional command for marking groups to
11492 subscribe to:
11494 <!--chtml if pinemode="function_key"-->
11495 <PRE>
11496 ListMode Commands
11497 -------------------------
11498 F9  Set or unset the highlighted group
11499 </PRE>
11500 <!--chtml else-->
11501 <PRE>
11502 ListMode Commands
11503 -------------------------
11504 X   Set or unset the highlighted group
11505 </PRE>
11506 <!--chtml endif-->
11508 &lt;End of help on this topic&gt;
11509 </BODY>
11510 </HTML>
11511 ===== h_folder_postnews =====
11512 <HTML>
11513 <HEAD>
11514 <TITLE>Newsgroup selecting for Posting explained</TITLE>
11515 </HEAD>
11516 <BODY>
11517 This screen is designed to allow you to quickly and easily survey
11518 the available newsgroups and select one to post news to.
11520 <!--chtml if pinemode="function_key"-->
11521 <PRE>
11522 Navigating the List of Newsgroups          General Alpine Commands
11523 ---------------------------------          -----------------------
11524 F5   Move to previous group                F1  Show this help text
11525 F6   Move to next group
11526 F7   Show previous screen of groups
11527 F8   Show next screen of groups
11528 F12  WhereIs (search group names)
11530 Group Selection Commands
11531 -------------------------
11532 F3   Exit the Selection menu (without selecting a group)
11533 F4   Select the currently highlighted newsgroup
11534 </PRE>
11535 <!--chtml else-->
11536 <PRE>
11537 Navigating the List of Newsgroups          General Alpine Commands
11538 ---------------------------------          -----------------------
11539  P   Move to previous group                ?  Show this help text
11540  N   Move to next group
11541  -   Show previous screen of groups
11542 Spc  (space bar) Show next screen of groups
11543  W   WhereIs (search group names)
11545 Group Selection Commands
11546 -------------------------
11547  E   Exit the Selection menu (without selecting a group)
11548  S   Select the currently highlighted newsgroup
11549 </PRE>
11550 <!--chtml endif-->
11552 &lt;End of help on this topic&gt;
11553 </BODY>
11554 </HTML>
11555 ===== h_folder_save =====
11556 <HTML>
11557 <HEAD>
11558 <TITLE>Folder Select for Save Explained</TITLE>
11559 </HEAD>
11560 <BODY>
11561 This screen is designed to allow you to quickly and easily survey your
11562 folders and select one to use for saving the current message.
11565 <!--chtml if pinemode="function_key"-->
11566 <PRE>
11567 Navigating the List of Folders             General Alpine Commands
11568 ------------------------------             -----------------------
11569 F5   Move to previous folder               F1  Show this help text
11570 F6   Move to next folder
11571 F7   Show previous screen of folders
11572 F8   Show next screen of folders
11573 F12  WhereIs (search folder names)
11575 Folder Selection Commands
11576 -------------------------
11577 F3   Exit the Folder Select menu (without selecting a folder)
11578 F4   Select the currently highlighted folder
11579 F11  AddNew folder (just like Select, but you type in a new folder name)
11580 </PRE>
11581 <!--chtml else-->
11582 <PRE>
11583 Navigating the List of Folders             General Alpine Commands
11584 ------------------------------             -----------------------
11585  P   Move to previous folder               ?  Show this help text
11586  N   Move to next folder
11587  -   Show previous screen of folders
11588 Spc  (space bar) Show next screen of folders
11589  W   WhereIs (search folder names)
11591 Folder Selection Commands
11592 -------------------------
11593  E   Exit the Folder Select menu (without selecting a folder)
11594  S   Select the currently highlighted folder
11595  A   AddNew folder (just like Select, but you type in a new folder name)
11596 </PRE>
11597 <!--chtml endif-->
11599 FOR MORE INFORMATION: See the section on
11600 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11602 &lt;End of help on this topic&gt;
11603 </BODY>
11604 </HTML>
11605 ===== h_folder_fcc =====
11606 <HTML>
11607 <HEAD>
11608 <TITLE>Folder Select for Fcc Explained</TITLE>
11609 </HEAD>
11610 <BODY>
11611 This screen is designed to allow you to quickly and easily survey your
11612 folders and select one to use as the file carbon copy (fcc) for the
11613 current message.
11616 <!--chtml if pinemode="function_key"-->
11617 <PRE>
11618 Navigating the List of Folders             General Alpine Commands
11619 ------------------------------             -----------------------
11620 F5   Move to previous folder               F1  Show this help text
11621 F6   Move to next folder
11622 F7   Show previous screen of folders
11623 F8   Show next screen of folders
11624 F12  WhereIs (search folder names)
11626 Folder Selection Commands
11627 -------------------------
11628 F3   Exit the Folder Select menu (without selecting a folder)
11629 F4   Select the currently highlighted folder
11630 F11  AddNew folder (just like Select, but you type in a new folder name)
11631 </PRE>
11632 <!--chtml else-->
11633 <PRE>
11634 Navigating the List of Folders             General Alpine Commands
11635 ------------------------------             -----------------------
11636  P   Move to previous folder               ?  Show this help text
11637  N   Move to next folder
11638  -   Show previous screen of folders
11639 Spc  (space bar) Show next screen of folders
11640  W   WhereIs (search folder names)
11642 Folder Selection Commands
11643 -------------------------
11644  E   Exit the Folder Select menu (without selecting a folder)
11645  S   Select the currently highlighted folder
11646  A   AddNew folder (just like Select, but you type in a new folder name)
11647 </PRE>
11648 <!--chtml endif-->
11650 FOR MORE INFORMATION: See the section on
11651 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11653 &lt;End of help on this topic&gt;
11654 </BODY>
11655 </HTML>
11656 ===== h_folder_pattern_roles =====
11657 <HTML>
11658 <HEAD>
11659 <TITLE>Folder Select for Current Folder Explained</TITLE>
11660 </HEAD>
11661 <BODY>
11662 This screen is designed to allow you to quickly and easily survey your
11663 folders and select one to use as the specific Current Folder
11664 in a Pattern.
11667 <!--chtml if pinemode="function_key"-->
11668 <PRE>
11669 Navigating the List of Folders             General Alpine Commands
11670 ------------------------------             -----------------------
11671 F5   Move to previous folder               F1  Show this help text
11672 F6   Move to next folder
11673 F7   Show previous screen of folders
11674 F8   Show next screen of folders
11675 F12  WhereIs (search folder names)
11677 Folder Selection Commands
11678 -------------------------
11679 F3   Exit the Folder Select menu (without selecting a folder)
11680 F4   Select the currently highlighted folder
11681 F11  AddNew folder (just like Select, but you type in a new folder name)
11682 </PRE>
11683 <!--chtml else-->
11684 <PRE>
11685 Navigating the List of Folders             General Alpine Commands
11686 ------------------------------             -----------------------
11687  P   Move to previous folder               ?  Show this help text
11688  N   Move to next folder
11689  -   Show previous screen of folders
11690 Spc  (space bar) Show next screen of folders
11691  W   WhereIs (search folder names)
11693 Folder Selection Commands
11694 -------------------------
11695  E   Exit the Folder Select menu (without selecting a folder)
11696  S   Select the currently highlighted folder
11697  A   AddNew folder (just like Select, but you type in a new folder name)
11698 </PRE>
11699 <!--chtml endif-->
11701 FOR MORE INFORMATION: See the section on
11702 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11704 &lt;End of help on this topic&gt;
11705 </BODY>
11706 </HTML>
11707 ===== h_folder_stayopen_folders =====
11708 <HTML>
11709 <HEAD>
11710 <TITLE>Folder Select Explained</TITLE>
11711 </HEAD>
11712 <BODY>
11713 This screen is designed to allow you to quickly and easily survey your
11714 folders and select one to use as a Stay-Open folder.
11717 <!--chtml if pinemode="function_key"-->
11718 <PRE>
11719 Navigating the List of Folders             General Alpine Commands
11720 ------------------------------             -----------------------
11721 F5   Move to previous folder               F1  Show this help text
11722 F6   Move to next folder
11723 F7   Show previous screen of folders
11724 F8   Show next screen of folders
11725 F12  WhereIs (search folder names)
11727 Folder Selection Commands
11728 -------------------------
11729 F3   Exit the Folder Select menu (without selecting a folder)
11730 F4   Select the currently highlighted folder
11731 F11  AddNew folder (just like Select, but you type in a new folder name)
11732 </PRE>
11733 <!--chtml else-->
11734 <PRE>
11735 Navigating the List of Folders             General Alpine Commands
11736 ------------------------------             -----------------------
11737  P   Move to previous folder               ?  Show this help text
11738  N   Move to next folder
11739  -   Show previous screen of folders
11740 Spc  (space bar) Show next screen of folders
11741  W   WhereIs (search folder names)
11743 Folder Selection Commands
11744 -------------------------
11745  E   Exit the Folder Select menu (without selecting a folder)
11746  S   Select the currently highlighted folder
11747  A   AddNew folder (just like Select, but you type in a new folder name)
11748 </PRE>
11749 <!--chtml endif-->
11751 FOR MORE INFORMATION: See the section on
11752 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11754 &lt;End of help on this topic&gt;
11755 </BODY>
11756 </HTML>
11757 ===== h_folder_action_roles =====
11758 <HTML>
11759 <HEAD>
11760 <TITLE>Folder Select Explained</TITLE>
11761 </HEAD>
11762 <BODY>
11763 This screen is designed to allow you to quickly and easily survey your
11764 folders and select one to use as the folder into which messages
11765 matching this filter will be moved.
11768 <!--chtml if pinemode="function_key"-->
11769 <PRE>
11770 Navigating the List of Folders             General Alpine Commands
11771 ------------------------------             -----------------------
11772 F5   Move to previous folder               F1  Show this help text
11773 F6   Move to next folder
11774 F7   Show previous screen of folders
11775 F8   Show next screen of folders
11776 F12  WhereIs (search folder names)
11778 Folder Selection Commands
11779 -------------------------
11780 F3   Exit the Folder Select menu (without selecting a folder)
11781 F4   Select the currently highlighted folder
11782 F11  AddNew folder (just like Select, but you type in a new folder name)
11783 </PRE>
11784 <!--chtml else-->
11785 <PRE>
11786 Navigating the List of Folders             General Alpine Commands
11787 ------------------------------             -----------------------
11788  P   Move to previous folder               ?  Show this help text
11789  N   Move to next folder
11790  -   Show previous screen of folders
11791 Spc  (space bar) Show next screen of folders
11792  W   WhereIs (search folder names)
11794 Folder Selection Commands
11795 -------------------------
11796  E   Exit the Folder Select menu (without selecting a folder)
11797  S   Select the currently highlighted folder
11798  A   AddNew folder (just like Select, but you type in a new folder name)
11799 </PRE>
11800 <!--chtml endif-->
11802 FOR MORE INFORMATION: See the section on
11803 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11805 &lt;End of help on this topic&gt;
11806 </BODY>
11807 </HTML>
11808 ===== h_abook_config =====
11809 <HTML>
11810 <HEAD>
11811 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
11812 </HEAD>
11813 <BODY>
11814 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
11815 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
11816 <!--chtml if pinemode="function_key"-->
11817 <PRE>
11818 Available  Commands                        
11819 -------------------------------            
11820 F1  Show Help Text                         
11821 F3  Back to MAIN Alpine menu                 
11822 F4  Change configuration for address book  
11823 F5  Move to previous address book          
11824 F6  Move to next address book              
11825 F7  Previous page of address books         
11826 F8  Next page of address books             
11827 F9  Add new address book                   
11828 F10 Delete existing address book           
11829 F11 Shuffle the order of address books     
11830 F12 Whereis (search address book titles)   
11831 </PRE>
11832 <!--chtml else-->
11833 <PRE>
11834 Navigation                     General Alpine Commands
11835 -----------------------        -----------------------
11836  P  Prev Address Book           ?  Display this help text
11837  N  Next Address Book           E  Back to MAIN Alpine menu
11838  -  Previous page
11839 Spc (space bar) Next page
11840  W  WhereIs (search for word in address book titles)
11842 Setup Address Books Commands
11843 ------------------------------------------------
11844  A  Add new address book          $  Shuffle the order of address books
11845  D  Delete existing address book  C  Change configuration for address book
11846 </PRE>
11847 <!--chtml endif-->
11849 <H2>Description of the Setup Address Books Screen</H2>
11851 This screen lets you add, delete, modify, or change the order of your
11852 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
11853 fill in.  If you are adding a remote address book on an IMAP server
11854 you should fill in the name of the IMAP server.  Otherwise, leave
11855 that field blank.  (Note that remote IMAP address books are an Alpine
11856 concept and are unlikely to interoperate with other mail clients.)
11857 For a remote address book, fill in the name of the remote folder
11858 in the Folder field.  This should be a folder that is used only for
11859 this one purpose, not a general purpose folder you expect to store
11860 messages in.
11861 <P>If you are adding a local address book, fill in the
11862 Folder Name field with a local file name (e.g., .addressbook).
11864 <B>Please note:</B> Remote address books stored on an IMAP server are 
11865 of an entirely different format (namely, a special-purpose 
11866 &quot;mail folder&quot;) than that of the local addressbook familiar 
11867 to Alpine users.  Therefore, 
11868 you cannot use &quot;add a remote address book&quot; to make an existing 
11869 Alpine .addressbook file you may have on a remote IMAP server accessible to 
11870 Alpine running on a different host.  
11873 The &quot;Del Abook&quot; command allows you to remove an address book
11874 from your configuration.  It will also ask you if you wish to remove
11875 the data for that address book, which would erase all traces of the
11876 address book if you answer Yes.
11879 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
11880 The difference is that instead of adding a new address book to your
11881 configuration, you are changing the configuration of an existing entry.
11882 For example, you might want to correct a typing error or change a
11883 nickname.  The &quot;Change&quot; command is not a move command.  If you
11884 change the folder name or server name the data will not be moved for you.
11887 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
11888 an address book toward another address book in the same group then
11889 the order of those two address books will be swapped.  If you shuffle
11890 the last Personal address book down towards the Global address book
11891 section, it will become a Global address book.  If you shuffle
11892 the first Global address book up it will become a Personal address
11893 book.  The main difference between Personal and Global address
11894 books is that Global address books are forced read-only.
11895 <P><UL>
11896 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11897 </UL>
11899 &lt;End of help on this topic&gt;
11900 </BODY>
11901 </HTML>
11902 ===== h_abook_top =====
11903 <HTML>
11904 <HEAD>
11905 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
11906 </HEAD>
11907 <BODY>
11908 <H1>ADDRESS BOOK LIST COMMANDS</H1>
11909 <!--chtml if pinemode="function_key"-->
11910 <PRE>
11911 Available  Commands -- Group 1         Available Commands -- Group 2
11912 -------------------------------        ------------------------------
11913 F1  Show Help Text                      F1  Show Help Text
11914 F2  See commands in next group          F2  See commands in next group
11915 F3  Exit to MAIN MENU                   F3  Quit Alpine
11916 F4  View/Edit selected address book
11917 F5  Move to previous address book       F5  FOLDER LIST screen
11918 F6  Move to next address book           F6  Specify a folder to go to
11919 F7  Previous page                       F7  MESSAGE INDEX screen
11920 F8  Next page                           F9  Print list of address books
11921 F12 Whereis (search for word)
11922 </PRE>
11923 <!--chtml else-->
11924 <PRE>
11925 Navigation                       General Alpine Commands
11926 -----------------------          -----------------------
11927  P  Previous Entry                ?  Display this help text
11928  N  Next Entry                    O  Show all other available commands
11929  -  Previous page                 &lt;  Back to MAIN Alpine menu
11930 Spc (space bar) Next page         Q  Quit Alpine
11931  W  WhereIs (search for word)     L  FOLDER LIST screen
11932                                   G  Specify a folder to go to
11933 Address Book Commands             I  MESSAGE INDEX screen
11934 ------------------------------------------------
11935  &gt;  View/Edit selected address book
11936               or
11937  &gt;  Search on selected directory server
11939  %  Print list of address books and directory servers
11940 </PRE>
11941 <!--chtml endif-->
11943 <H2>Description of the Address Book List Screen</H2>
11945 From this screen you may choose which address book you wish to view
11946 or edit. For more information on address books, view one of your
11947 address books (with
11948 <!--chtml if pinemode="function_key"-->
11950 <!--chtml else-->
11951 &quot;&gt;&quot;
11952 <!--chtml endif-->)
11953 and see the Help Text there.<P>
11955 You may also choose a directory server on which to search for entries.
11956 You do that by highlighting the directory server line and using
11957 <!--chtml if pinemode="function_key"-->
11959 <!--chtml else-->
11960 &quot;&gt;&quot;
11961 <!--chtml endif-->.<P>
11963 If you wish to define new address books or directory servers go to the Main
11964 menu and choose Setup. You may then either choose to setup AddressBooks or
11965 Directory (among other things). It's possible that the Directory option
11966 will not be there if the Alpine you are using does not contain LDAP directory
11967 lookup functionality.
11969 <P><UL>
11970 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11971 </UL><P>
11972 &lt;End of help on this topic&gt;
11973 </BODY>
11974 </HTML>
11975 ===== h_abook_opened =====
11976 <HTML>
11977 <HEAD>
11978 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
11979 </HEAD>
11980 <BODY>
11981 <H1>THE ALPINE ADDRESS BOOK</H1>
11982 <H2>ADDRESS BOOK COMMANDS</H2>
11983 <PRE>
11984 <!--chtml if pinemode="function_key"-->
11985 Available  Commands -- Group 1         Available Commands -- Group 2   
11986 -------------------------------        ------------------------------  
11987 F1  Show Help Text                      F1  Show Help Text             
11988 F2  See commands in next group          F2  See commands in next group
11989 F3  Exit this screen                    F3  Quit Alpine                  
11990 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
11991 F5  Move to previous entry              F5  FOLDER LIST screen         
11992 F6  Move to next entry                  F6  Specify a folder to go to  
11993 F7  Previous page of address book       F7  MESSAGE INDEX screen        
11994 F8  Next page of address book           F8  Compose to entry using roles
11995 F9  Add new entry to address book       F9  Print address book         
11996 F10 Delete selected entry               F10 TakeAddr to another addrbook
11997 F11 Compose to selected entry           F11 Save or Export addrbook selections
11998 F12 Whereis (search address book)       F12 Forward entry by mail       
12000 Available Commands -- Group 3                                           
12001 ------------------------------                                          
12002 F3  Select                              F6  Zoom (or unZoom)            
12003 F5  Select Current                      F7  Apply Command to Selection  
12004 <!--chtml else-->
12005 Address Book Navigation        General Alpine Commands
12006 -----------------------        -----------------------
12007  P  Prev Address                  ?  Display this help text
12008  N  Next Address                  O  Show all other available commands
12009  -  Previous page of address book M  Back to MAIN MENU
12010 Spc (space bar) Next page         Q  Quit Alpine
12011  W  WhereIs (search for word      C  Compose message to selected addr
12012      or name in address book)     #  Compose to addr using roles
12013  &lt;  To List of Address Books if   L  FOLDER LIST screen
12014      more than one, else to MAIN  G  Specify a folder to go to
12015                                   I  MESSAGE INDEX screen
12017 Address Book Commands
12018 ----------------------------------------------------
12019  &gt;  View/Update selected entry    D  Delete selected entries
12020  %  Print address book            S  Save or Export address book selections
12021  F  Forward entries by mail       @  Add new entry to address book
12023  ;  Select command                Z  Toggle Zoom Mode
12024  :  Select highlighted entry      A  Apply command to selected entries
12026 <!--chtml endif-->
12027 </PRE>
12028 Note:  The presence or absence of the final four commands above is
12029 controlled by the option 
12030 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
12033 <H2>Description of the Address Book Screen</H2>
12035 This screen lets you edit and manage entries in your address book.  It
12036 also acts as a short-cut for composing messages to people in the address
12037 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
12038 message starts &quot;pre-addressed&quot; to whatever address book entry is
12039 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
12040 role to use in your composition.
12042 Alpine's address book helps you keep a list of addresses you send email to so
12043 you do not have to remember addresses that are often complex.  Each entry
12044 in the address book has five fields, all of them optional.  The three
12045 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
12047         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
12048         This is what you type in as you are addressing the message in the
12049         composer.  If there is a matching entry in your address book(s),
12050         Alpine will extract the corresponding FullName and Address fields to
12051         generate the actual address for your message.
12053         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
12054 of the
12055         person or organization.  Usually the full names are put in last
12056         name first so they sort nicely in alphabetical order.  Whatever
12057         you put as the name here will appear on the message when it is
12058         finally delivered.  Examples:<PRE>
12059            Garcia Marquez, Gabriel
12060            Henscheid, Eckhard
12061            Alpine-Info mailing list
12062            Library materials renewal requests
12063            Kim An-guk
12064            &quot;George III, King of Great Britain, 1738-1820&quot;
12065 </PRE>
12066 (In the second-to-last example, no comma is used in the name so that 
12067 the family name appears first in the address book and when the entry is 
12068 used in the composer.
12069 In the last example, retaining the commas is intended; 
12070 double-quotation marks surround the name to 
12071 prevent the transposition of its parts when the entry is used in 
12072 the composer.)
12074         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
12075         a valid Internet address that conforms to the Internet message
12076         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
12078 The two fields that aren't usually visible are:<DL>
12080   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
12081         message to this address to be saved in.  If this field is set, and
12082         this address is the first one in the message's To: header, then
12083         Alpine will use this folder name for the FCC in lieu of the normal
12084         FCC folder name.
12086   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
12087         </DL>
12089 Due to screen width limitations, these last two fields do not show up in
12090 the normal ADDRESS BOOK display.  You may select the 
12091 &quot;View/Update&quot; command to
12092 view or modify them.  You may use the configuration variable
12093 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
12094 to add these fields to your ADDRESS BOOK 
12095 display, or to modify the format of the display.
12097 <H2>Sorting the Address book</H2>
12099 By default, address book entries are sorted alphabetically on the full
12100 name with distribution lists sorted to the end.  Sorting can be changed by
12101 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
12102 --assuming you have &quot;write&quot; permission for the address book file.
12104 Unlike the sorting of folders (which only changes presentation), sorting an
12105 address book actually changes the file as it is kept on the computer.  For
12106 this reason you won't be able to sort a shared or system-wide address
12107 book.
12109 <H2>Adding New Entries</H2>
12111 The easiest way to add new entries to your address book is to use the
12112 &quot;TakeAddr&quot; command when viewing a message.
12113 This command allows you to take addresses from the header and body of the
12114 message and put them into your address book, without having to type
12115 them in.
12118 To manually add a new entry from within the address book screen, use the AddNew
12119 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
12120 Use this command both for adding a simple alias and for adding a
12121 distribution list.
12123 <H2>Distribution Lists</H2>
12125 Address book entries can be simple cases of aliases (a single nickname is linked
12126 to a single email address) or distribution lists (a single nickname
12127 pointing at more than one email address).  Each distribution list has a
12128 nickname, a full name and a list of addresses.  The addresses may be
12129 actual addresses or they may be other nicknames in your address book.
12130 They may even refer to other distribution lists.
12131 There's really no difference between a simple alias and a distribution list,
12132 other than the number of addresses.
12133 Therefore, you can turn a simple alias with one address into a distribution
12134 list simply by adding more addresses.
12135 To add entries to an existing list or alias
12136 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
12137 a single address from the list if the cursor is placed on the address;
12138 it will delete the entire distribution list if the cursor is on the
12139 nickname/fullname line.  View/Update may also be used to delete addresses
12140 from a list.
12142 Address field entries in distribution lists may take any one of three
12143 forms: a nickname existing in any of the defined address books, a normal
12144 address of the form &quot;jsmith@art.example.com&quot;, or a complete
12145 fullname/address combination, e.g. &quot;John Smith
12146 &lt;jsmith@art.example.com&gt;&quot;.
12148 Distribution lists in Alpine address books can only be used by the person or
12149 people who have access to that address book.  They are not usually used to
12150 implement discussion groups, but can be used to facilitate small
12151 discussion groups if all the participants have access to the same shared
12152 address book.
12154 <H2>FCC and Comments</H2>
12156 As mentioned above, each entry in the address book also has two other optional
12157 fields, Fcc and Comments.  The command to look at or change either of these
12158 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
12159 Comments field is just for your own use.  The Fcc field overrides the
12160 default Fcc if this address is the first one on the To line.  The WhereIs
12161 command may be used to search for particular strings in the address book,
12162 including fields that are not visible (like Comment and Fcc by default).
12164 <H2>Aggregate Operations</H2>
12166 If the feature
12167 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
12168 is turned on (the default), then the four commands &quot;Select&quot;,
12169 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
12170 are available.  The two selection commands allow you to mark a set of
12171 address book entries as being selected.  If you have more than one address
12172 book, the selections may be in more than one of those address books.
12173 The &quot;Zoom&quot; command will toggle between displaying only the selected
12174 entries and all of the entries.  The &quot;Apply&quot; command allows you to
12175 apply one of the regular address book commands to all of the selected
12176 entries.  Usually the address book commands apply to only the entry
12177 highlighted by the cursor.  The &quot;Apply&quot; command works with the
12178 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
12179 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
12181 <H2>Exporting and Forwarding Address book entries</H2>
12183 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
12184 address book entry is placed in a plain text file in your home directory
12185 <!--chtml if pinemode="running"-->
12186 (which, in the present configuration of your system, is
12187  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12188 <!--chtml endif-->
12189 or current working directory
12190 <!--chtml if pinemode="running"-->
12191 (which, at least for your current Alpine &quot;session,&quot; 
12192 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12193 <!--chtml endif-->, depending on the 
12194 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12195 configuration setting.  If you have some entries selected and use the
12196 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
12197 placed in the text file.
12199 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
12200 address book entry is placed in a special attachment and you are put into
12201 the composer.  You can fill in some comments in the body of the message,
12202 if you'd like, and send it to somebody else who uses Alpine.  The recipient
12203 may use the TakeAddr command on that message to insert the address book
12204 entry you sent in their own address book.  If you have some entries
12205 selected and use the Apply Forward command all of the selected entries
12206 will be forwarded in a single message.  You may
12207 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.
12208 The recipient must be using Alpine in order to receive this correctly.
12209 One way for the recipient to handle this might be to create an empty
12210 address book and then &quot;Take&quot; your forwarded address book entries into
12211 that empty address book.
12213 <H2>Multiple and/or Site-Wide Address books</H2>
12215 You may have more than one personal address book.  In addition, there may
12216 be one or more global address books.  This capability allows you to have
12217 multiple personal address books (some of which may be shared) and it also
12218 allows system administrators to implement site-wide address books that
12219 contain entries for users on multiple machines within the organization.
12220 <P><DL>
12221 <DT>Searching
12222   <DD> If you enter a nickname when composing a message, your
12223   personal address books will be searched through in order, and then the
12224   global address book(s) searched. If more than one address book has an entry
12225   for the nickname, Alpine uses the first one that it finds, so an entry in
12226   your personal address book would override a global address book entry. If
12227   after searching all the address books there is still no match, (Unix) Alpine
12228   then searches the local host password file on the assumption that you have
12229   entered a local user name rather than an address book nickname.
12230   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
12231   command, but global address books are always searched after personal
12232   address books.
12234   <P><DT>Tab completion
12235   <DD> If the
12236   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
12237   feature is turned on (the default) then the Tab key may be used
12238   in the composer to complete partially typed nicknames in the To
12239   or Cc lines. You type the first few letters of a nickname and then
12240   press the Tab key. It there is only one nickname that matches it will
12241   be filled in by Alpine. If there is more than one the unambiguous part
12242   of the nicknames will be filled in. For example, if your address book or
12243   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
12244   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
12245   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
12246   If you then type a second Tab character you will be presented with a list
12247   of matching nicknames to select from. Alternatively, you could type another
12248   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
12249   in the entire &quot;barbecue&quot; entry.
12251   <P><DT>Defining
12252   <DD> You define multiple personal address books in the 
12253   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
12254   from the MAIN MENU.  
12255   You may add as many as you like.  Global address books are usually
12256   site-wide address books defined by the System administrator, but
12257   you may define global address books of your own just like you define
12258   personal address books.
12260   <P><DT>Creating and updating
12261   <DD> Personal address books are normally created empty
12262   and populated by explicit additions from within Alpine, e.g. via the
12263   TakeAddr command.  Unlike personal address books, global address books may
12264   not be modified/updated from within Alpine; that is, they are Read-Only.
12265   Thus, global address books are created, populated and updated outside of
12266   Alpine. They might be hand-edited, generated by a program from another
12267   database, or by copying an existing address book.  They might also be
12268   some other user's personal address book, and so be modified normally by
12269   that user but accessed Read-Only by you.  See the Alpine Technical
12270   Notes document (included in the Alpine distribution) for more information on
12271   this.
12273   <P><DT>Accessing
12274   <DD>There are two different types of address books in Alpine.
12275   A local address book is stored in a regular file and the normal file
12276   access permissions apply.  A remote address book is stored on an IMAP
12277   server in a special folder that contains only messages pertaining to
12278   that address book.  The last message in the remote folder contains a
12279   copy of the address book data, and that data is copied to a local cache
12280   file in your home directory.  From there it is accessed just like a local
12281   address book.  The name of the cache file is kept track of in a special
12282   file called the
12283   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
12284   the name of which is stored in
12285   your Alpine configuration file the first time you use a remote address book.
12286   Just as local Alpine address books use a format that only Alpine understands,
12287   remote Alpine address books do the same and other mail reading programs
12288   are unlikely to be able to understand them.<P>
12289   While global address books are explicitly intended to be shared, there is
12290   nothing to prevent you from sharing a personal address book with other
12291   Alpine users. This might be useful in the case of a small workgroup.
12292   However, it is recommended that updates to shared personal address books
12293   be done when other Alpine users are not accessing the address book. Alpine
12294   does not do any file-locking to manage concurrent updates to the
12295   addressbook, but it does check to see if the file has been modified before
12296   making any changes.  Consequently, inadvertent concurrent updates will
12297   only cause other Alpine users to have to restart their address book
12298   operation, which will cause Alpine to reopen the updated file.
12300   <P><DT>Converting to Remote
12301   <DD>The easiest way to convert an existing local
12302   address book into a remote address book is to create an empty new remote
12303   personal address book by typing &quot;A&quot; to execute the
12304   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
12305   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
12306   address book.
12307   After you have added the empty
12308   remote address book, go into the screen for the address book you wish
12309   to copy and &quot;Select&quot; &quot;All&quot;.
12310   This selects every entry in that
12311   address book.  Then type the command &quot;Apply Save&quot;.
12312   You will be asked for the address book to save to.  You may use ^P and ^N
12313   to get to the new empty address book, then hit RETURN and the addresses
12314   will be copied.
12315   At this point you'll probably want to unselect all the entries in the local
12316   address book before proceeding. You do that with
12317   &quot;Select&quot; &quot;unselect All&quot;.
12319 </DL>
12320 <UL>
12321 <LI><A HREF="h_address_format">Explanation of Address formats</A>
12322 </UL>
12323 <P><UL>
12324 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12325 </UL>
12327 &lt;End of help on this topic&gt;
12328 </BODY>
12329 </HTML>
12330 ===== h_abook_select_addr =====
12331 <HTML>
12332 <HEAD>
12333 <TITLE>Addressbook Selection Explained</TITLE>
12334 </HEAD>
12335 <BODY>
12336 <H1>SELECT ADDRESS</H1>
12337 <!--chtml if pinemode="function_key"-->
12338 <PRE>
12339 Navigating the List of Messages               General Alpine Commands
12340 -------------------------------               -----------------------
12341 F5   Move to previous entry                   F1  Show this help text
12342 F6   Move to next entry
12343 F7   Show previous screen of address book
12344 F8   Show next screen of address book
12345 F12  WhereIs (search through address book)
12347 Address Selection Commands
12348 --------------------------
12349 F3   Exit the Address Select screen (without selecting an address)
12350 F4   Select the currently highlighted entry
12351 </PRE>
12352 <!--chtml else-->
12353 <PRE>
12354 Navigating the List of Messages               General Alpine Commands
12355 -------------------------------               -----------------------
12356  P   Move to previous entry                    ?  Show this help text
12357  N   Move to next entry
12358  -   Show previous screen of address book
12359 Spc  (space bar) Show next screen of address book
12360  W   WhereIs (search through address book)
12362 Address Selection Commands
12363 --------------------------
12364  E   Exit the Address Select screen (without selecting an address)
12365  S   Select the currently highlighted entry
12366 </PRE>
12367 <!--chtml endif-->
12370 This screen is designed to let you easily scan your address book(s) in
12371 order to select an entry for the message you are composing.  You cannot
12372 edit your address book in any way at this time, for address book
12373 maintenance, select the address book command when not composing a message.
12376 If you are composing a message and know the nickname of the person/list you
12377 want, you can bypass this screen by simply typing in the nickname on the
12378 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12379 selecting an entry does not cancel your message.
12382 FOR MORE INFORMATION on addressing see
12383 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12384 <A HREF="h_abook_opened">Address Book Screen's</A>
12385 help text.
12387 &lt;End of help on this topic&gt;
12388 </BODY>
12389 </HTML>
12390 ===== h_abook_select_top =====
12391 <HTML>
12392 <HEAD>
12393 <TITLE>Addressbook Selection Navigation Explained</TITLE>
12394 </HEAD>
12395 <BODY>
12396 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
12397 <!--chtml if pinemode="function_key"-->
12398 <PRE>
12399 Navigating the List of Address Books       General Alpine Commands
12400 ------------------------------------       -----------------------
12401 F4   View the highlighted address book
12402 F5   Move to previous address book         F1  Show this help text
12403 F6   Move to next address book
12404 F7   Show previous screen of address books
12405 F8   Show next screen of address books
12406 F12  WhereIs (search through address books)
12408 Address Selection Commands
12409 --------------------------
12410 F3   Exit the Address Select screen (without selecting an address)
12411 F4   Select the currently selected entries (if using ListMode)
12412 F9   Change to ListMode
12413 </PRE>
12414 <!--chtml else-->
12415 <PRE>
12416 Navigating the List of Address Books       General Alpine Commands
12417 ------------------------------------       -----------------------
12418  &gt;   View the highlighted address book
12419  P   Move to previous address book         ?  Show this help text
12420  N   Move to next address book
12421  -   Show previous screen of address books
12422 Spc  (space bar) Show next screen of address books
12423  W   WhereIs (search through address books)
12425 Address Selection Commands
12426 --------------------------
12427  E   Exit the Address Select screen (without selecting an address)
12428  S   Select the currently selected entries (if using ListMode)
12429  L   Change to ListMode
12430 </PRE>
12431 <!--chtml endif-->
12434 This screen is designed to let you easily scan your address book(s) in
12435 order to select entries for the message you are composing.  You cannot
12436 edit your address book in any way at this time.  For address book
12437 maintenance, select the address book command when not composing a message.
12440 If you are composing a message and know the nickname of the person/list you
12441 want, you can bypass this screen by simply typing in the nickname on the
12442 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12443 selecting an entry does not cancel your message.
12446 The ListMode command will add a column at the left edge of the screen.
12447 You mark the entries that you wish to select with the &quot;X&quot; command.
12448 This allows you to choose more than one entry at a time.
12451 An alternative method of composing a message to entries in your
12452 address book(s) is to first use the &quot;Select&quot; command from
12453 the address book maintenance screen and then the &quot;Apply&quot;
12454 &quot;ComposeTo&quot; command to start the composer composing to the
12455 selected entries.
12458 FOR MORE INFORMATION on addressing see
12459 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12460 <A HREF="h_abook_opened">Address Book Screen's</A>
12461 help text.
12463 &lt;End of help on this topic&gt;
12464 </BODY>
12465 </HTML>
12466 ===== h_abook_select_listmode =====
12467 <HTML>
12468 <HEAD>
12469 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
12470 </HEAD>
12471 <BODY>
12472 <H1>COMPOSER: SELECT ADDRESSES</H1>
12473 <!--chtml if pinemode="function_key"-->
12474 <PRE>
12475 Navigating the List of Messages                 General Alpine Commands
12476 -------------------------------                 -----------------------
12477 F5   Move to previous entry                     F1  Show this help text
12478 F6   Move to next entry
12479 F7   Show previous screen of address book
12480 F8   Show next screen of address book
12481 F12  WhereIs (search through address book)
12483 Address Selection Commands
12484 --------------------------
12485 F3   Exit the Address Select screen (without selecting an address)
12486 F4   Select the currently highlighted entry
12487 F9   Change to ListMode
12488 </PRE>
12489 <!--chtml else-->
12490 <PRE>
12491 Navigating the List of Messages                 General Alpine Commands
12492 -------------------------------                 -----------------------
12493  P   Move to previous entry                     ?  Show this help text
12494  N   Move to next entry
12495  -   Show previous screen of address book
12496 Spc  (space bar) Show next screen of address book
12497  W   WhereIs (search through address book)
12499 Address Selection Commands
12500 --------------------------
12501  E   Exit the Address Select screen (without selecting an address)
12502  S   Select the currently highlighted entry
12503  L   Change to ListMode
12504 </PRE>
12505 <!--chtml endif-->
12508 This screen is designed to let you easily scan your address book(s) in
12509 order to select entries for the message you are composing.  You cannot
12510 edit your address book in any way at this time, for address book
12511 maintenance, select the address book command when not composing a message.
12514 If you are composing a message and know the nickname of the person/list you
12515 want, you can bypass this screen by simply typing in the nickname on the
12516 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12517 selecting an entry does not cancel your message.
12520 The ListMode command will add a column at the left edge of the screen.
12521 You mark the entries that you wish to select with the &quot;X&quot; command.
12522 This allows you to choose more than one entry at a time.
12525 An alternative method of composing a message to entries in your
12526 address book(s) is to first use the &quot;Select&quot; command from
12527 the address book maintenance screen and then the &quot;Apply&quot;
12528 &quot;ComposeTo&quot; command to start the composer composing to the
12529 selected entries.
12532 FOR MORE INFORMATION on addressing see
12533 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12534 <A HREF="h_abook_opened">Address Book Screen's</A>
12535 help text.
12537 &lt;End of help on this topic&gt;
12538 </BODY>
12539 </HTML>
12540 ===== h_abook_select_checks =====
12541 <HTML>
12542 <HEAD>
12543 <TITLE>Address Selection from Composer Explained</TITLE>
12544 </HEAD>
12545 <BODY>
12546 <H1>COMPOSER: SELECT ADDRESSES</H1>
12547 <!--chtml if pinemode="function_key"-->
12548 <PRE>
12549 Navigating the List of Messages                 General Alpine Commands
12550 -------------------------------                 -----------------------
12551 F5   Move to previous entry                     F1  Show this help text
12552 F6   Move to next entry
12553 F7   Show previous screen of address book
12554 F8   Show next screen of address book
12555 F12  WhereIs (search through address book)
12557 Address Selection Commands
12558 --------------------------
12559 F3   Exit the Address Select screen (without selecting an address)
12560 F4   Select the currently highlighted entry
12561 F8   Either Sets or Unsets all entries in this address book
12562 F9   Set or Unset the highlighted entry
12563 </PRE>
12564 <!--chtml else-->
12565 <PRE>
12566 Navigating the List of Messages                 General Alpine Commands
12567 -------------------------------                 -----------------------
12568  P   Move to previous entry                     ?  Show this help text
12569  N   Move to next entry
12570  -   Show previous screen of address book
12571 Spc  (space bar) Show next screen of address book
12572  W   WhereIs (search through address book)
12574 Address Selection Commands
12575 --------------------------
12576  E   Exit the Address Select screen (without selecting an address)
12577  S   Select the currently highlighted entry
12578  X   Set or Unset the highlighted entry
12579  A   Either Sets or Unsets all entries in this address book
12580 </PRE>
12581 <!--chtml endif-->
12584 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
12585 command.  Type &quot;S Select&quot; to select all of the entries you
12586 have marked, just as if you had typed them in by hand.
12589 An alternative method of composing a message to entries in your
12590 address book(s) is to first use the &quot;Select&quot; command from
12591 the address book maintenance screen and then the &quot;Apply&quot;
12592 &quot;ComposeTo&quot; command to start the composer composing to the
12593 selected entries.
12596 FOR MORE INFORMATION on addressing see
12597 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12598 <A HREF="h_abook_opened">Address Book Screen's</A>
12599 help text.
12601 &lt;End of help on this topic&gt;
12602 </BODY>
12603 </HTML>
12604 ===== h_abook_select_nicks_take =====
12605 <HTML>
12606 <HEAD>
12607 <TITLE>Take Address Nickname Selection Explained</TITLE>
12608 </HEAD>
12609 <BODY>
12610 <H1>TAKEADDR: SELECT NICKNAME</H1>
12611 <!--chtml if pinemode="function_key"-->
12612 <PRE>
12613 Navigating the List of Messages                 General Alpine Commands
12614 -------------------------------                 -----------------------
12615 F5   Move to previous entry                     F1  Show this help text
12616 F6   Move to next entry
12617 F7   Show previous screen of address book
12618 F8   Show next screen of address book
12619 F12  WhereIs (search through address book)
12621 Message Selection Commands
12622 --------------------------
12623 F3   Exit the Nickname Select screen (without selecting an address)
12624 F4   Select the currently highlighted entry
12625 </PRE>
12626 <!--chtml else-->
12627 <PRE>
12628 Navigating the List of Messages                 General Alpine Commands
12629 -------------------------------                 -----------------------
12630  P   Move to previous entry                     ?  Show this help text
12631  N   Move to next entry
12632  -   Show previous screen of address book
12633 Spc  (space bar) Show next screen of address book
12634  W   WhereIs (search through address book)
12636 Message Selection Commands
12637 --------------------------
12638  E   Exit the Nickname Select screen (without selecting an address)
12639  S   Select the currently highlighted entry
12640 </PRE>
12641 <!--chtml endif-->
12644 This screen is designed to let you modify or add to an existing
12645 address book entry.  You have already selected the name(s) and
12646 address(es) through &quot;Take Address&quot;.  This screen simply lets
12647 you scan your address books and select the nickname to be
12648 changed/augmented.  If you want to add a new entry, then you are in
12649 the wrong place-- Select &quot;Exit&quot; command.
12652 FOR MORE INFORMATION on addressing see
12653 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12654 <A HREF="h_abook_opened">Address Book Screen's</A>
12655 help text.
12657 &lt;End of help on this topic&gt;
12658 </BODY>
12659 </HTML>
12660 ===== h_abook_select_nick =====
12661 <HTML>
12662 <HEAD>
12663 <TITLE>Nickname Selection Explained</TITLE>
12664 </HEAD>
12665 <BODY>
12666 <H1>SELECT NICKNAME</H1>
12667 <!--chtml if pinemode="function_key"-->
12668 <PRE>
12669 Navigating the List of Messages                 General Alpine Commands
12670 -------------------------------                 -----------------------
12671 F5   Move to previous entry                     F1  Show this help text
12672 F6   Move to next entry
12673 F7   Show previous screen of address book
12674 F8   Show next screen of address book
12675 F12  WhereIs (search through address book)
12677 Message Selection Commands
12678 --------------------------
12679 F3   Exit the Nickname Select screen (without selecting an address)
12680 F4   Select the currently highlighted entry
12681 </PRE>
12682 <!--chtml else-->
12683 <PRE>
12684 Navigating the List of Messages                 General Alpine Commands
12685 -------------------------------                 -----------------------
12686  P   Move to previous entry                     ?  Show this help text
12687  N   Move to next entry
12688  -   Show previous screen of address book
12689 Spc  (space bar) Show next screen of address book
12690  W   WhereIs (search through address book)
12692 Message Selection Commands
12693 --------------------------
12694  E   Exit the Nickname Select screen (without selecting an address)
12695  S   Select the currently highlighted entry
12696 </PRE>
12697 <!--chtml endif-->
12700 This screen is designed to let you look at the nicknames in your address
12701 books before choosing a new one.
12704 FOR MORE INFORMATION on addressing see
12705 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12706 <A HREF="h_abook_opened">Address Book Screen's</A>
12707 help text.
12709 &lt;End of help on this topic&gt;
12710 </BODY>
12711 </HTML>
12712 ===== h_takeaddr_screen =====
12713 <HTML>
12714 <HEAD>
12715 <TITLE>Take Address Screen Explained</TITLE>
12716 </HEAD>
12717 <BODY>
12718 <H1>TAKE ADDRESS COMMANDS</H1>
12719 <!--chtml if pinemode="function_key"-->
12720 <PRE>
12721 Navigating the List of Addresses       Address Selection Commands        
12722 --------------------------------       --------------------------        
12723  F5  Move to previous entry            F3  Exit without taking address
12724  F6  Move to next entry                F4  Take current address(es)
12725  F7  Show previous page of address list
12726  F8  Show next page of address list
12727  F2  WhereIs (search list)
12728                                --------------
12729 Mode Toggle            F9  Set/Unset current address
12730 -----------            F10 Set all
12731  F12 Toggle between List and single mode       F11 Unset all
12732 </PRE>
12733 <!--chtml else-->
12734 <PRE>
12735 Navigating the List of Addresses       Address Selection Commands
12736 --------------------------------       --------------------------
12737  P  Move to previous entry              &lt;  Exit without taking address
12738  N  Move to next entry                  T  Take address
12739  -  Show previous page of address list
12740 Spc (space bar) Show next page of address list
12741  W  WhereIs (search list)              List Mode
12742                                        ---------
12743 Single Mode                             X  Set/Unset current address
12744 -----------                             A  Set all addresses
12745  L  Switch to list mode                 U  Unset all addresses
12746                                         S  Switch to single mode
12747 </PRE>
12748 <!--chtml endif-->
12750 <H2>Description of the Take Address Screen</H2>
12752 This screen is designed to let you select one or more address/name
12753 combinations from the current message and put them into your address book.
12754 The cursor is initially placed on the line with the message author.
12755 Other lines include the names of people and/or mailing lists who also
12756 received the message.  Other people &quot;involved&quot; in the
12757 message (e.g. the person named as Reply-To:) are also listed here.
12760 The simple case is adding a new, single entry into your address book. To
12761 do this, simply highlight the correct line and press 
12762 <!--chtml if pinemode="function_key"-->
12764 <!--chtml else-->
12765 &quot;T&quot;.
12766 <!--chtml endif-->
12767 To create a new list or add to an existing list, switch the screen display
12768 into List Mode by pressing
12769 <!--chtml if pinemode="function_key"-->
12770 F12.
12771 <!--chtml else-->
12772 &quot;L&quot;.
12773 <!--chtml endif-->
12774 In List Mode, you select the
12775 group of addresses you wish to manipulate by marking them with an
12776 &quot;X&quot;.
12777 The Set/Unset
12778 <!--chtml if pinemode="function_key"-->
12779 (F9)
12780 <!--chtml else-->
12781 (&quot;X&quot;)
12782 <!--chtml endif-->
12783 command will turn the &quot;X&quot; on for the
12784 highlighted address if it was off or turn it off if it was previously on.
12785 The SetAll command will select all of the addresses, and the UnSetAll
12786 command will turn off all the selections.  Once you've gotten the
12787 selection the way you want it, you may create a new list by pressing
12788 <!--chtml if pinemode="function_key"-->
12790 <!--chtml else-->
12791 &quot;T&quot;.
12792 <!--chtml endif-->
12795 In both the simple and list cases, after choosing to take the address,
12796 you will be asked for the nickname of the entry.  Typing in a new name
12797 creates the new entry/list.  Entering an existing nickname will replace
12798 the entry (simple case) or add to the list (list case).  Alternatively,
12799 you can press Ctrl-T at the nickname prompt and select an existing
12800 nickname from your address book.
12803 You will normally start in Single Mode, unless you used the Apply command
12804 to startup the TakeAddr screen, in which case you will start in List Mode.
12805 You may switch between the two modes at any time.  If you've already
12806 selected several addresses in List Mode, those will be remembered when you
12807 switch to Single Mode and then back to List Mode.  The set of addresses
12808 that are pre-selected when you start in List Mode are the From addresses
12809 of all of the messages you are operating on.  You may, of course, easily
12810 erase those selections with the UnSetAll command.
12813 If you have more than one writable address book, you will be prompted for
12814 the name of the address book you wish to add the new entry to before
12815 anything else. You can use ^N and ^P to choose among the defined address
12816 books, or type in the address book name.
12819 FOR MORE INFORMATION on addressing see
12820 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12821 <A HREF="h_abook_opened">Address Book Screen's</A>
12822 help text.
12824 &lt;End of help on this topic&gt;
12825 </BODY>
12826 </HTML>
12827 ===== h_takeexport_screen =====
12828 <HTML>
12829 <HEAD>
12830 <TITLE>Take Export Screen Explained</TITLE>
12831 </HEAD>
12832 <BODY>
12833 <H1>TAKE EXPORT COMMANDS</H1>
12834 <!--chtml if pinemode="function_key"-->
12835 <PRE>
12836 Navigating the List of Addresses       Address Selection Commands        
12837 --------------------------------       --------------------------        
12838  F5  Move to previous entry            F3  Exit without taking address
12839  F6  Move to next entry                F4  Take current address(es)
12840  F7  Show previous page of address list
12841  F8  Show next page of address list
12842  F2  WhereIs (search list)
12843                                --------------
12844 Mode Toggle            F9  Set/Unset current address
12845 -----------            F10 Set all
12846  F12 Toggle between List and single mode       F11 Unset all
12847 </PRE>
12848 <!--chtml else-->
12849 <PRE>
12850 Navigating the List of Addresses       Address Selection Commands
12851 --------------------------------       --------------------------
12852  P  Move to previous entry              &lt;  Exit without taking address
12853  N  Move to next entry                  T  Take address
12854  -  Show previous page of address list
12855 Spc (space bar) Show next page of address list
12856  W  WhereIs (search list)              List Mode
12857                                        ---------
12858 Single Mode                             X  Set/Unset current address
12859 -----------                             A  Set all addresses
12860  L  Switch to list mode                 U  Unset all addresses
12861                                         S  Switch to single mode
12862 </PRE>
12863 <!--chtml endif-->
12865 <H2>Description of the Take Export Screen</H2>
12867 This screen is designed to let you select one or more addresses
12868 from the current message and put them into a file.
12869 Only the user@domain_name part of each address is put into the file.
12872 To put a single entry into a file simply highlight the correct line and press 
12873 <!--chtml if pinemode="function_key"-->
12875 <!--chtml else-->
12876 &quot;T&quot;.
12877 <!--chtml endif-->
12878 To put more than one entry into a file
12879 switch the screen display
12880 into List Mode by pressing
12881 <!--chtml if pinemode="function_key"-->
12882 F12.
12883 <!--chtml else-->
12884 &quot;L&quot;.
12885 <!--chtml endif-->
12886 In List Mode, you select the
12887 group of addresses you wish to manipulate by marking them with an
12888 &quot;X&quot;.
12889 The Set/Unset
12890 <!--chtml if pinemode="function_key"-->
12891 (F9)
12892 <!--chtml else-->
12893 (&quot;X&quot;)
12894 <!--chtml endif-->
12895 command will turn the &quot;X&quot; on for the
12896 highlighted address if it was off or turn it off if it was previously on.
12897 The SetAll command will select all of the addresses, and the UnSetAll
12898 command will turn off all the selections.  Once you've gotten the
12899 selection the way you want it, you may put the addresses in a file by typing
12900 <!--chtml if pinemode="function_key"-->
12902 <!--chtml else-->
12903 &quot;T&quot;.
12904 <!--chtml endif-->
12907 You will be asked for the name of a file to put the addresses in.
12908 If the file already exists, you will be asked whether you want to Overwrite
12909 (replace) the contents of the file or Append to the contents of the file.
12912 &lt;End of help on this topic&gt;
12913 </BODY>
12914 </HTML>
12915 ============= h_abook_view ========================
12916 <HTML>
12917 <HEAD>
12918 <TITLE>Address Book View Explained</TITLE>
12919 </HEAD>
12920 <BODY>
12921 This function allows you to view the contents of an address book entry. You
12922 can only view one entry at a time.
12924 <DL>
12925 <DT>Help
12926 <!--chtml if pinemode="function_key"-->
12927 (F1)
12928 <!--chtml else-->
12930 <!--chtml endif-->
12931 </DT>
12932 <DD>
12933 Display this help text.
12935 <DT>Abook
12936 <!--chtml if pinemode="function_key"-->
12937 (F3)
12938 <!--chtml else-->
12939 (&lt;)
12940 <!--chtml endif-->
12941 </DT>
12942 <DD>
12943 Go back to index of address book entries.
12945 <DT>Update
12946 <!--chtml if pinemode="function_key"-->
12947 (F4)
12948 <!--chtml else-->
12950 <!--chtml endif-->
12951 </DT>
12952 <DD>
12953 Update (modify) this entry.
12955 <DT>ComposeTo
12956 <!--chtml if pinemode="function_key"-->
12957 (F5)
12958 <!--chtml else-->
12960 <!--chtml endif-->
12961 </DT>
12962 <DD>Compose a message to the address(es) in this entry.
12964 <DT>Role
12965 <!--chtml if pinemode="function_key"-->
12966 (F6)
12967 <!--chtml else-->
12969 <!--chtml endif-->
12970 </DT>
12971 <DD>Compose a message to the address(es) in this entry using roles.
12973 <DT>Prev Page
12974 <!--chtml if pinemode="function_key"-->
12975 (F7)
12976 <!--chtml else-->
12978 <!--chtml endif-->
12979 </DT>
12980 <DD>
12981 Show the previous page of the current entry.
12983 <DT>Next Page
12984 <!--chtml if pinemode="function_key"-->
12985 (F8)
12986 <!--chtml else-->
12987 (Space)
12988 <!--chtml endif-->
12989 </DT>
12990 <DD>
12991 Show the next page of the current entry.
12993 <DT>Print
12994 <!--chtml if pinemode="function_key"-->
12995 (F9)
12996 <!--chtml else-->
12998 <!--chtml endif-->
12999 </DT>
13000 <DD>Print the current entry.  You can select the
13001 printer or the print command via the &quot;Setup&quot; command
13002 on the MAIN MENU.
13004 <DT>WhereIs
13005 <!--chtml if pinemode="function_key"-->
13006 (F10)
13007 <!--chtml else-->
13009 <!--chtml endif-->
13010 </DT>
13011 <DD>Search the entry for a string of letters.  If it is
13012 found, move to it.  The string can be one word or a phrase.
13013 If there are multiple occurrences, the cursor moves to the
13014 first occurrence beyond the current cursor position.
13016 <DT>Fwd Email
13017 <!--chtml if pinemode="function_key"-->
13018 (F11)
13019 <!--chtml else-->
13021 <!--chtml endif-->
13022 </DT>
13023 <DD>Begin composition of a new mail message with the displayed
13024 text already inserted in the message body.
13026 </DL>
13028 &lt;End of help on this topic&gt;
13029 </BODY>
13030 </HTML>
13031 ============= h_ldap_view ========================
13032 <HTML>
13033 <HEAD>
13034 <TITLE>LDAP Response View Explained</TITLE>
13035 </HEAD>
13036 <BODY>
13037 This function allows you to view the contents of a directory entry. You
13038 can only view one entry at a time.
13040 <DL>
13041 <DT>Help
13042 <!--chtml if pinemode="function_key"-->
13043 (F1)
13044 <!--chtml else-->
13046 <!--chtml endif-->
13047 </DT>
13048 <DD>
13049 Display this help text.
13051 <DT>Results Index
13052 <!--chtml if pinemode="function_key"-->
13053 (F3)
13054 <!--chtml else-->
13055 (&lt;)
13056 <!--chtml endif-->
13057 </DT>
13058 <DD>Go back to index of search results.
13060 <DT>ComposeTo
13061 <!--chtml if pinemode="function_key"-->
13062 (F5)
13063 <!--chtml else-->
13065 <!--chtml endif-->
13066 </DT>
13067 <DD>Compose a message to the address(es) in this entry.
13069 <DT>Role
13070 <!--chtml if pinemode="function_key"-->
13071 (F6)
13072 <!--chtml else-->
13074 <!--chtml endif-->
13075 </DT>
13076 <DD>Compose a message to the address(es) in this entry using roles.
13078 <DT>Prev Page
13079 <!--chtml if pinemode="function_key"-->
13080 (F7)
13081 <!--chtml else-->
13083 <!--chtml endif-->
13084 </DT>
13085 <DD>
13086 Show the previous page of the current entry.
13088 <DT>Next Page
13089 <!--chtml if pinemode="function_key"-->
13090 (F8)
13091 <!--chtml else-->
13092 (Space)
13093 <!--chtml endif-->
13094 </DT>
13095 <DD>
13096 Show the next page of the current entry.
13098 <DT>Print
13099 <!--chtml if pinemode="function_key"-->
13100 (F9)
13101 <!--chtml else-->
13103 <!--chtml endif-->
13104 </DT>
13105 <DD>Print the current entry on paper.  You can select the
13106 printer or the print command via the &quot;Setup&quot; command
13107 on the MAIN MENU.
13109 <DT>WhereIs
13110 <!--chtml if pinemode="function_key"-->
13111 (F10)
13112 <!--chtml else-->
13114 <!--chtml endif-->
13115 </DT>
13116 <DD>Search the entry for a string of letters.  If it is
13117 found, move to it.  The string can be one word or a phrase.
13118 If there are multiple occurrences, the cursor moves to the
13119 first occurrence beyond the current cursor position.
13121 <DT>Fwd Email
13122 <!--chtml if pinemode="function_key"-->
13123 (F11)
13124 <!--chtml else-->
13126 <!--chtml endif-->
13127 </DT>
13128 <DD>Begin composition of a new mail message with the displayed
13129 text already inserted in the message body.
13131 <DT>Save
13132 <!--chtml if pinemode="function_key"-->
13133 (F12)
13134 <!--chtml else-->
13136 <!--chtml endif-->
13137 </DT>
13138 <DD>Save the displayed entry to one of your address books or export
13139 it to a file.
13140 </DL>
13142 &lt;End of help on this topic&gt;
13143 </BODY>
13144 </HTML>
13145 ===== h_attachment_screen =====
13146 <HTML>
13147 <HEAD>
13148 <TITLE>Attachment Index Screen Explained</TITLE>
13149 </HEAD>
13150 <BODY>
13151 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
13152 message's attachments, and allows various operations on them.  The
13153 first attachment is usually the message text, but does not include the
13154 header portion of the message.
13156 Available commands include:
13158 <DL>
13160 <DT>Help</DT>
13161 <DD>Show this help text.
13163 <DT>Msg #<I>num</I></DT>
13164 <DD>Leave this screen without displaying or saving any attachments.
13166 <DT>View</DT>
13167 <DD>View the currently selected attachment.
13169 <DT>Prev Attach</DT>
13170 <DD>Move to previous attachment.
13172 <DT>Next Attach</DT>
13173 <DD>Move to next attachment.
13175 <DT>Prev Page</DT>
13176 <DD>Previous page of the listed attachments.
13178 <DT>Next Page</DT>
13179 <DD>Next page of the listed attachments.
13181 <DT>Delete</DT>
13182 <DD>Mark the currently selected attachment for Deletion.
13183 This does not modify the current message by deleting the attachment from
13184 it, but instead the delete flag <EM>only</EM> has an effect when saving
13185 the message to a folder.
13186 Attachments marked for deletion are not copied to the destination folder
13187 along with the rest of the message when it is saved.
13188 It is ok for the destination folder to be the same as the current folder.
13189 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
13191 <DT>Undelete</DT>
13192 <DD>Turn off the Delete flag for the selected attachment.
13194 <DT>Save</DT>
13195 <DD>Save the selected attachment to a file.  If the attachment is of
13196 type &quot;RFC822/Message&quot;, then the attachment will be saved to
13197 the specified mail folder.
13199 <DT>Export</DT>
13200 <DD>If the attachment is of
13201 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13202 copy the message to a file in the same way this command works on 
13203 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13205 <DT>Pipe</DT>
13206 <DD>Pipe the attachment contents into a UNIX command (if enabled).
13207 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
13209 <DT>WhereIs</DT>
13210 <DD>Find a matching string in the attachment list.
13212 <DT>AboutAttch</DT>
13213 <DD>Examine various aspects of the selected attachment.
13215 <DT>Print</DT>
13216 <DD>Print the selected attachment.
13218 <DT>Forward</DT>
13219 <DD>Forward the selected attachment as an attachment.
13220 </DL>
13224 All attachments can be saved or piped into a UNIX command, but some may
13225 not be readily displayed by either Alpine or an external tool.  In such
13226 cases, the reason why the message cannot be displayed is displayed on
13227 Alpine's message line.
13229 &lt;End of help on this topic&gt;
13230 </BODY>
13231 </HTML>
13232 ============= h_mail_text_att_view ========================
13233 <HTML>
13234 <HEAD>
13235 <TITLE>Attachment View Screen Explained</TITLE>
13236 </HEAD>
13237 <BODY>
13238 This function allows you to view the contents of a text attachment. You
13239 can only view one attachment at a time.
13241 Available commands include:
13243 <DL>
13245 <DT>Help</DT>
13246 <DD>Display this help text
13248 <DT>AttchIndex</DT>
13249 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
13251 <DT>Prev Page</DT>
13252 <DD>Show the previous page of the current attachment.
13254 <DT>Next Page</DT>
13255 <DD>Show the next page of the current attachment by pressing the space bar.
13257 <DT>Delete</DT>
13258 <DD>Mark the viewed attachment for Deletion.  The delete
13259 flag <EM>only</EM> has affect when saving the message to a folder.
13260 Attachments marked for deletion are exluded from the messsage when
13261 it is saved.  In addition, the delete mark <EM>only</EM> applies to
13262 this Alpine session.
13264 <DT>Undelete</DT>
13265 <DD>Turn off the Delete flag for the selected attachment.
13267 <DT>Save</DT>
13268 <DD>Copy the current attachment to a file.  If you just enter
13269 a filename, the attachment will be saved with that name in
13270 your home directory 
13271 <!--chtml if pinemode="running"-->
13272 (which, in the present configuration of your system, is
13273  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13274 <!--chtml endif-->
13275 or current working directory
13276 <!--chtml if pinemode="running"-->
13277 (which, at least for your current Alpine &quot;session,&quot; 
13278 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13279 <!--chtml endif-->, depending on the
13280 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13281 configuration setting.  You may enter the full
13282 path and filename to save it in another directory instead.
13284 <DT>Export</DT>
13285 <DD>If the attachment is of
13286 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13287 copy the message to a file in the same way this command works on 
13288 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13289 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
13290 defined, they may affect the contents of the exported file.)
13292 <DT>Pipe</DT>
13293 <DD>Pipe the attachment contents into a UNIX command (if enabled)
13295 <DT>WhereIs</DT>
13296 <DD>Search the attachment for a string of letters.  If it is
13297 found, move to it.  The string can be one word or a phrase.
13298 If there are multiple occurrences, the cursor moves to the
13299 first occurrence beyond the current cursor position.
13301 <DT>Print</DT>
13302 <DD>Print the current attachment on paper.  You can select the
13303 printer or the print command via the &quot;Setup&quot; command
13304 on the MAIN MENU.
13306 <DT>Forward</DT>
13307 <DD>Forward the selected attachment as an attachment.
13308 </DL>
13310 &lt;End of help on this topic&gt;
13311 </BODY>
13312 </HTML>
13313 ============= h_journal ==============
13314 <HTML>
13315 <HEAD>
13316 <TITLE>Recent Message Journal Explained</TITLE>
13317 </HEAD>
13318 <BODY>
13320 The following commands are available on this screen:
13322 <DL>
13323 <DT>Help</DT>
13324 <DD>Show this help text
13326 <DT>Exit</DT>
13327 <DD>Exit Viewer, and go back to mail processing
13329 <DT>Prev Page</DT>
13330 <DD>Show the previous page text
13332 <DT>Next Page</DT>
13333 <DD>Show the next page of text by pressing the space bar
13335 <DT>Print</DT>
13336 <DD>Print the displayed text on paper.  You can select the
13337 printer or the print command via the &quot;Setup&quot; command
13338 on the MAIN MENU.
13340 <DT>Fwd Email</DT>
13341 <DD>Begin composition of a new mail message with the displayed
13342 text already inserted in the message body.
13344 <DT>Save</DT>
13345 <DD>Copy the displayed text to a file.  If you just enter
13346 a filename, the text will be saved with that name in
13347 your 
13348 home directory 
13349 <!--chtml if pinemode="running"-->
13350 (which, in the present configuration of your system, is
13351  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13352 <!--chtml endif-->
13353 or current working directory
13354 <!--chtml if pinemode="running"-->
13355 (which, at least for your current Alpine &quot;session,&quot; 
13356 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13357 <!--chtml endif-->, depending on the
13358 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13359 configuration setting.   You may enter the full
13360 path and filename to save it in another directory instead.
13362 <DT>WhereIs</DT>
13363 <DD>Search the text for a string of letters.  If it is
13364 found, move to it.  The string can be one word or a phrase.
13365 If there are multiple occurrences, the cursor moves to the
13366 first occurrence beyond the current cursor position.
13367 </DL>
13369 &lt;End of help on this topic&gt;
13370 </BODY>
13371 </HTML>
13372 ============= h_debugjournal ==============
13373 <HTML>
13374 <HEAD>
13375 <TITLE>Debug Journal Explained</TITLE>
13376 </HEAD>
13377 <BODY>
13379 The following commands are available on this screen:
13381 <DL>
13382 <DT>Help</DT>
13383 <DD>Show this help text
13385 <DT>Exit</DT>
13386 <DD>Exit Viewer, and go back to mail processing
13388 <DT>Timestamps</DT>
13389 <DD>Turn on or off timestamps.
13391 <DT>DebugView</DT>
13392 <DD>Set the level of debugging you want to see. The level may be any number
13393 in the range 0-9. Higher numbers show more debugging detail. Note that the
13394 debugging information has already been captured. This setting just causes the
13395 debugging information that you see to be filtered. If you set this to
13396 the number &quot;5&quot; then you will be shown all of the debugging information
13397 at levels 5 and below.
13398 It's actually a bit more complicated than that. A fixed amount of memory
13399 is used to store the debug information.
13400 Since the amount of memory used is limited the debugging information
13401 has to be trimmed back when it gets too large.
13403 <DT>Prev Page</DT>
13404 <DD>Show the previous page text
13406 <DT>Next Page</DT>
13407 <DD>Show the next page of text by pressing the space bar
13409 <DT>Print</DT>
13410 <DD>Print the displayed text on paper.  You can select the
13411 printer or the print command via the &quot;Setup&quot; command
13412 on the MAIN MENU.
13414 <DT>Fwd Email</DT>
13415 <DD>Begin composition of a new mail message with the displayed
13416 text already inserted in the message body.
13418 <DT>Save</DT>
13419 <DD>Copy the displayed text to a file.  If you just enter
13420 a filename, the text will be saved with that name in
13421 your 
13422 home directory 
13423 <!--chtml if pinemode="running"-->
13424 (which, in the present configuration of your system, is
13425  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13426 <!--chtml endif-->
13427 or current working directory
13428 <!--chtml if pinemode="running"-->
13429 (which, at least for your current Alpine &quot;session,&quot; 
13430 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13431 <!--chtml endif-->, depending on the
13432 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13433 configuration setting.   You may enter the full
13434 path and filename to save it in another directory instead.
13436 <DT>WhereIs</DT>
13437 <DD>Search the text for a string of letters.  If it is
13438 found, move to it.  The string can be one word or a phrase.
13439 If there are multiple occurrences, the cursor moves to the
13440 first occurrence beyond the current cursor position.
13441 </DL>
13443 &lt;End of help on this topic&gt;
13444 </BODY>
13445 </HTML>
13446 ============= h_simple_text_view ==============
13447 <HTML>
13448 <HEAD>
13449 <TITLE>Simple Text View Screen Explained</TITLE>
13450 </HEAD>
13451 <BODY>
13453 The following commands are available on this screen:
13455 <DL>
13456 <DT>Help</DT>
13457 <DD>Show this help text
13459 <DT>Exit</DT>
13460 <DD>Exit Viewer, and go back to mail processing
13462 <DT>Prev Page</DT>
13463 <DD>Show the previous page text
13465 <DT>Next Page</DT>
13466 <DD>Show the next page of text by pressing the space bar
13468 <DT>Print</DT>
13469 <DD>Print the displayed text on paper.  You can select the
13470 printer or the print command via the &quot;Setup&quot; command
13471 on the MAIN MENU.
13473 <DT>Fwd Email</DT>
13474 <DD>Begin composition of a new mail message with the displayed
13475 text already inserted in the message body.
13477 <DT>Save</DT>
13478 <DD>Copy the displayed text to a file.  If you just enter
13479 a filename, the attachment will be saved with that name in
13480 your 
13481 home directory 
13482 <!--chtml if pinemode="running"-->
13483 (which, in the present configuration of your system, is
13484  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13485 <!--chtml endif-->
13486 or current working directory
13487 <!--chtml if pinemode="running"-->
13488 (which, at least for your current Alpine &quot;session,&quot; 
13489 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13490 <!--chtml endif-->, depending on the
13491 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13492 configuration setting.   You may enter the full
13493 path and filename to save it in another directory instead.
13495 <DT>WhereIs</DT>
13496 <DD>Search the attachment for a string of letters.  If it is
13497 found, move to it.  The string can be one word or a phrase.
13498 If there are multiple occurrences, the cursor moves to the
13499 first occurrence beyond the current cursor position.
13500 </DL>
13502 &lt;End of help on this topic&gt;
13503 </BODY>
13504 </HTML>
13505 ======= h_pine_for_windows ========
13506 <HTML>
13507 <HEAD>
13508 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
13509 </HEAD>
13510 <BODY>
13511 <H1>Getting Help In PC-Alpine</H1>
13514 PC-Alpine offers general and specific help text. From the <A
13515 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
13516 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
13517 specific help for that screen is available from the toolbar Help menu or
13518 with the 
13519 <!--chtml if pinemode="function_key"-->
13520 &quot;F1&quot; key.
13521 <!--chtml else-->
13522 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
13523 typing &quot;?&quot; would be mistaken as entering text.
13524 <!--chtml endif-->
13527 Although this version of Alpine is for Microsoft Windows, it is not
13528 considered a full &quot;Graphical User Interface&quot; application. 
13529 Yet, many of the controls that Windows users are accustomed to seeing, 
13530 such as scrollbars and toolbars, are available.
13533 PC-Alpine offers considerable mouse support.  You can view what is
13534 &quot;click-able&quot; by dragging your mouse over any screen; when the
13535 arrow cursor changes into a hand, you found something. Mouse-click
13536 possibilities include navigating between screens and folders and
13537 double-clicking on hyperlinks to open your Web browser.
13538 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
13539 screen.  Examples of right-click options include &quot;copy&quot; after
13540 selecting text to copy and &quot;View in New Window&quot; when you click
13541 on a particular message in the Message Index. The menu choices available
13542 to you will vary based upon what screen is open, where on the screen your
13543 cursor is located, and even what action you have already taken.
13546 &lt;End of help on this topic&gt;
13547 </BODY>
13548 </HTML>
13549 ===== h_composer =====
13550 <HTML>
13551 <HEAD>
13552 <TITLE>COMPOSER COMMANDS</TITLE>
13553 </HEAD>
13554 <BODY>
13555 <H1>COMPOSER COMMANDS</H1>
13557 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>
13558 &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>
13559 &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>
13560 &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>
13561 &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>
13562 &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>
13563 &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>
13564 &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>
13565 &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>
13566 &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>
13567 ---------------------------------------|&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>
13568 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>
13569 &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>
13570 &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>
13571 &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>
13574 NOTE:
13575 <OL>
13576  <LI>For help on a particular command, highlight the bold text associated
13577 with it above and hit Return.
13578  <LI> The availability of certain commands
13579 is determined by Alpine configuration files and system capabilities.
13580 At some sites, certain commands may not be available due to security or
13581 support concerns.
13582  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13583 Ctrl-&#92;, ESC.
13584  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13585 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13586 </OL>
13589 HINT: To move rapidly to the bottom of a message you are composing,
13590 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
13591 with the Mark and Cut commands to eliminate large amounts of unwanted
13592 text in a Reply.
13594 <H2>Description of Composer</H2>
13596 Alpine has a built-in editing program that allows you to compose messages
13597 without having to leave Alpine.  The editor is designed to be very simple to
13598 use so that you can get started writing email right away.
13601 Messages are usually just text, about 80 columns wide.  Using upper and
13602 lower case is encouraged.  On some systems the size limit of the message
13603 is about 100,000 characters, which is about 2,000 lines.  You can include
13604 punctuation and special characters found on most keyboards, but you can't
13605 include characters with diacritical marks and certain special symbols.
13608 Text automatically wraps as you type past the end of a line so you do not
13609 have to hit return.  Using the
13610 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
13611 you can also reformat text explicitly, perhaps after you have
13612 deleted some text.
13615 You can include other text files with the 
13616 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
13617 which will prompt you for the name of the file to insert at the
13618 current cursor postion.
13621 <UL>
13622 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13623 </UL>
13625 &lt;End of help on this topic&gt;
13626 </BODY>
13627 </HTML>
13628 ====== h_composer_browse =====
13629 <HTML>
13630 <HEAD>
13631 <TITLE>BROWSER</TITLE>
13632 </HEAD>
13633 <BODY>
13634 <H1>BROWSER</H1>
13635 This screen lets you browse your files and directories.  To go to another 
13636 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
13637 choose &quot;Select&quot; (the default choice on the menu); 
13638 or choose &quot;Goto&quot; and enter the name of the directory.
13639 <!--chtml if pinemode="os_windows"-->
13640 <!--chtml else--> 
13641 In Unix Alpine, you may use 
13642 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
13643 to another's home directory.  
13644 <!--chtml endif--><P>
13645 To select a file, move the cursor to it and 
13646 choose &quot;Select&quot; (the default choice on the menu).  
13648 <UL>
13649 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
13650 inclusion in the 
13651 message body (that is, you chose &quot;Read File&quot; with the cursor under 
13652 the 
13653 &quot;----- Message Text -----&quot; line
13654 while composing, then &quot;To Files&quot;):  Since the file 
13655 selected will become part of the message text, it must be in a format 
13656 suitable for that (Alpine does not check!), such as a plain text file.
13657 Files of other formats (for example, graphics, databases, software 
13658 programs) should be 
13659 <B>attached</B> to the message instead --
13660 by moving the cursor in the COMPOSE MESSAGE screen into the 
13661 message header area and pressing 
13662 <!--chtml if pinemode="function_key"-->
13664 <!--chtml else-->
13665 Ctrl-J.
13666 <!--chtml endif--> 
13668 <P><LI>
13669 Note <B>if</B> you are currently using the BROWSER for saving a message 
13670 attachment, or exporting a message, to a file: You can use the Add command to 
13671 provide the name for a new file to save/export to, and then select that name 
13672 to use it for the save/export operation.  Back at the prompt 
13673 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
13674 either Overwrite or Append (it doesn't make a difference, since the file is 
13675 so far empty).  Note: If you cancel the 
13676 operation at that point, the file created with the Add command will remain 
13677 0 bytes in size.
13679 </UL>
13680 <P><UL>
13681 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13682 </UL>
13684 &lt;End of help on this topic&gt;
13685 </BODY>
13686 </HTML>
13687 ====== h_composer_ins =====
13688 <HTML>
13689 <HEAD>
13690 <TITLE>INSERT TEXT FILE</TITLE>
13691 </HEAD>
13692 <BODY>
13693 <H1>INSERT TEXT FILE</H1>
13695 Use this function to insert a text file. The file name
13696 given can be an absolute file path name for your system
13697 <!--chtml if pinemode="os_windows"-->
13698 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13699 with a relative pathname, or simply a file name without
13700 drive or directory specification.  
13701 <!--chtml else-->
13702 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13703 a file in your home directory, or a file path relative to your 
13704 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13705 your home directory or &quot;~user&quot; to refer to another
13706 account's home directory.
13707 <!--chtml endif-->
13709 No wild card characters may be used.  
13710 The file must reside on the system running Alpine.
13712 If the 
13713 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13714 feature is set, names are relative to your current working directory 
13715 <!--chtml if pinemode="running"-->
13716 (which, at least for your current Alpine &quot;session,&quot; 
13717 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13718 <!--chtml endif-->
13719 rather than your home directory
13720 <!--chtml if pinemode="running"-->
13721 (which, in the present configuration of your system, is
13722  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13723 <!--chtml endif-->
13725 <P><UL>
13726 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13727 </UL>
13729 &lt;End of help on this topic&gt;
13730 </BODY>
13731 </HTML>
13732 ====== h_composer_ins_m =====
13733 <HTML>
13734 <HEAD>
13735 <TITLE>INSERT MESSAGE</TITLE>
13736 </HEAD>
13737 <BODY>
13738 <H1>INSERT MESSAGE</H1>
13740 Type in the number of a message in the currently open folder to insert it
13741 into your message.
13742 <P><UL>
13743 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13744 </UL>
13746 &lt;End of help on this topic&gt;
13747 </BODY>
13748 </HTML>
13749 ====== h_composer_search =====
13750 <HTML>
13751 <HEAD>
13752 <TITLE>Explanation of Composer Whereis Command </TITLE>
13753 </HEAD>
13754 <BODY>
13755 <H1>Help For Whereis Command</H1>
13757 Whereis is used to search the message for a word or part of a word.
13758 When searching in the composer, only the message part of your mail is
13759 searched, and the cursor is put on the first occurrence appearing
13760 after the location of the cursor.  The search will wrap to the
13761 beginning of the message when it no longer finds matches in the
13762 remainder of the message.
13764 To search for the same string a second time, press 
13765 <!--chtml if pinemode="function_key"-->
13766 &quot;F6&quot;
13767 <!--chtml else-->
13768 &quot;^W&quot;
13769 <!--chtml endif-->
13770 to begin search and then just press RETURN to accept the previous
13771 search string shown in square brackets rather than entering a new
13772 search string.<P>
13774 The &quot;Search&quot; prompt has several sub-command available:
13776 <DL>
13777 <DT>Get Help</DT>
13778 <DD> Takes you to this help page.
13780 <DT>Cancel</DT>
13781 <DD> Cancels the prompt.  No search takes place.
13783 <DT>First Line</DT>
13784 <DD> Takes you back to the composer with the cursor on the first character
13785 of the first line of text.
13787 <DT>Last Line</DT>
13788 <DD> Takes you back to the composer with the cursor on the last character
13789 of the last line of text.
13791 <DT>Replace (Optional)</DT>
13792 <DD> This sub-command is enabled by the 
13793 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13794 feature (which is on by default); see its help screen for details on how replacing works.
13796 </DL>
13798 &lt;End of help on this topic&gt;
13799 </BODY>
13800 </HTML>
13801 ====== h_sigedit_search =====
13802 <HTML>
13803 <HEAD>
13804 <TITLE>Explanation of Whereis Command </TITLE>
13805 </HEAD>
13806 <BODY>
13807 <H1>Help For Whereis Command</H1>
13809 Whereis is used to search for a word or part of a word.
13810 When searching the cursor is put on the first occurrence appearing
13811 after the location of the cursor.  The search will wrap to the
13812 beginning of the signature when it no longer finds matches in the
13813 remainder of the signature.
13815 To search for the same string a second time, press 
13816 <!--chtml if pinemode="function_key"-->
13817 &quot;F6&quot;
13818 <!--chtml else-->
13819 &quot;^W&quot;
13820 <!--chtml endif-->
13821 to begin search and then just press RETURN to accept the previous
13822 search string shown in square brackets rather than entering a new
13823 search string.<P>
13825 The &quot;Search&quot; prompt has several sub-command available:
13827 <DL>
13828 <DT>Get Help</DT>
13829 <DD> Takes you to this help page.
13831 <DT>Cancel</DT>
13832 <DD> Cancels the prompt.  No search takes place.
13834 <DT>First Line</DT>
13835 <DD> Takes you back to the composer with the cursor on the first character
13836 of the first line of text.
13838 <DT>Last Line</DT>
13839 <DD> Takes you back to the composer with the cursor on the last character
13840 of the last line of text.
13842 <DT>Replace (Optional)</DT>
13843 <DD> This sub-command is enabled by the 
13844 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13845 feature (which is on by default); see its help screen for details on how replacing works.
13847 </DL>
13849 &lt;End of help on this topic&gt;
13850 </BODY>
13851 </HTML>
13852 ======= h_composer_to ====
13853 <HTML>
13854 <HEAD>
13855 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
13856 </HEAD>
13857 <BODY>
13858 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
13860 <H2>The &quot;To:&quot; field</H2>
13861 The address you enter here must be a valid email address that is reachable
13862 from your site. 
13864 <H2>Email Address Format</H2>
13865 You may enter a full name and email address, 
13866 <!--chtml if pinemode="os_windows"-->
13867 <!--chtml else-->
13868 a local (meaning, on the same 
13869 host as the one you are running Alpine on) username that Alpine will
13870 complete for you, 
13871 <!--chtml endif-->
13872 the nickname of someone in a 
13873 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
13874 mail alias defined by your system administrator.  When you move the cursor
13875 out of this field, the nicknames will be expanded to the addresses in your
13876 address book, and the local usernames will be expanded to include the 
13877 persons' actual names.  You may enter as many addresses as you wish, but they 
13878 must be separated by commas.  You can move around this and other header fields
13879 with the arrow keys and use many of the usual composer editing keys.
13881 <UL>
13882 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13883 </UL>
13886 <H2>MESSAGE HEADER COMMANDS</H2>
13887 <!--chtml if pinemode="function_key"-->
13888 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13889 ^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>
13890 ^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>
13891 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
13892 ^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>
13893 ^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>
13894 ^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>
13895 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>
13896 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>
13897 ^@&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>
13898 ----------------------------------------|<BR>
13899 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
13900 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>
13901 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>
13902 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>
13903 <!--chtml else-->
13904 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
13905 ^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>
13906 ^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>
13907 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
13908 ^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>
13909 ^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>
13910 ^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>
13911 ^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>
13912 ^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>
13913 ^@&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>
13914 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
13915 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>
13916 ^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>
13917 ^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>
13918 ^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>
13919 <!--chtml endif-->
13922 NOTE:
13923 <OL>
13924  <LI>For help on a particular command, highlight the bold text associated
13925 with it above and hit Return.
13926  <LI> The availability of certain commands 
13927 is determined by Alpine configuration files and system capabilities.
13928 At some sites, certain commands may not be available due to security or
13929 support concerns.
13930 </OL>
13933 <UL>   
13934 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13935 </UL><P>
13936 &lt;End of help on this topic&gt;
13937 </BODY>
13938 </HTML>
13939 ======= h_composer_cc ====
13940 <HTML>
13941 <HEAD>
13942 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
13943 </HEAD>
13944 <BODY>
13945 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
13946 The Cc: field is just like the To: field, except it is used for addressees
13947 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
13948 not directly meant directly &quot;for&quot; these recipients, but you wanted 
13949 them to see the message.  The only difference the recipients see is that their 
13950 name is in the Cc: field, rather than the To: field.
13952 For help with Cc: field editing
13953 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
13955 <UL>
13956 <LI><A HREF="h_address_format">Explanation of Address formats</A>
13957 </UL>
13959 <UL>   
13960 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13961 </UL><P>
13962 &lt;End of help on this topic&gt;
13963 </BODY>
13964 </HTML>
13965 ======= h_composer_bcc ====
13966 <HTML>
13967 <HEAD>
13968 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
13969 </HEAD>
13970 <BODY>
13971 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
13972 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
13973 a copy of the message to one or more people whose addresses you do not
13974 wish disclosed, either to reduce clutter or for confidentiality.
13976 The format of the Bcc: field is just the same as the To: and Cc: fields in
13977 the way the addresses are entered.  The recipients listed here will
13978 receive a copy of the message, but --assuming your site's mail transport
13979 software is properly configured-- their addresses will not show up in the
13980 headers of the message, as delivered to all of the recipients.  The To:
13981 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
13983 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
13984 will automatically generate and place in the To: field a pseudo-address of 
13985   &quot;undisclosed-recipients: ;&quot;
13986 or whatever string has been specified in the 
13987 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
13988 variable.
13990 The reason for this is to avoid embarrassment caused by some Internet
13991 mail transfer software that interprets a &quot;missing&quot; To: header as 
13992 an error and replaces it with an Apparently-to: header that may contain
13993 the addresses you entered on the Bcc: line.  In addition, it may be
13994 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
13996 You can manipulate what text ends up on the (originally) empty To:
13997 field.  Just remember to put a colon and semicolon at the end of the
13998 field, which is a special notation denoting that it is not a real address.
14000 For information on message header editing
14001 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14003 <UL>
14004 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14005 </UL>
14007 <UL>   
14008 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14009 </UL><P>
14010 &lt;End of help on this topic&gt;
14011 </BODY>
14012 </HTML>
14013 ======= h_composer_lcc ====
14014 <HTML>
14015 <HEAD>
14016 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
14017 </HEAD>
14018 <BODY>
14019 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
14020 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
14021 you wish to send a message to a list of people but avoid having all
14022 of their addresses visible, in order to reduce clutter when the
14023 message is received.
14025 It is similar to the 
14026 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
14027 in that individual
14028 addressees are hidden, but Lcc is designed to work specifically with
14029 distribution lists you have created in your 
14030 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
14031 the nickname of the list on the Lcc line will result in the full name of
14032 your Alpine Address Book list being placed on the To: line of the message,
14033 using a special notation that distinguishes it from a real address. You
14034 must leave the To: line blank for your list name to appear there.
14036 For example, if you have this list entered in your Address Book:<PRE>
14038         largo         Key Largo List       DISTRIBUTION LIST:
14039                                            bogie@mgm.com
14040                                            lauren@mgm.com
14041                                            walter@mgm.com</PRE>
14044 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
14045 the result is:<PRE>
14047         To      : Key Largo List: ;
14048         Cc      :
14049         Bcc     :
14050         Fcc     : sent-mail
14051         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
14052                   lauren@mgm.com,
14053                   walter@mgm.com
14054         Subject :</PRE>
14056 Each recipient listed on the Lcc: line receives a copy of the message
14057 without their address being visible (as though they were listed on the
14058 Bcc: line). The colon-semicolon notation used to put the full-name of the
14059 list on the To: line is a special address format that doesn't specify any
14060 actual addressees, but does give some information to the recipients of the
14061 message.
14063 Note: if after entering an LCC, you delete the list name that is placed
14064 on the To: line, then recipients will see <PRE>
14065        To: undisclosed-recipients: ;</PRE>
14067 (or whatever string is defined in the 
14068 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14069 variable) just as in the BCC case. 
14071 For help with Lcc: field editing
14072 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14074 <UL>
14075 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14076 </UL>
14078 <UL>   
14079 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14080 </UL><P>
14081 &lt;End of help on this topic&gt;
14082 </BODY>
14083 </HTML>
14084 ======= h_composer_from =======
14085 <HTML>
14086 <HEAD>
14087 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
14088 </HEAD>
14089 <BODY>
14090 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
14092 This header carries your return address.  It is the address toward which
14093 replies (and often, future unrelated correspondence) will be directed,
14094 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
14095 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
14096 sure this address is correct.
14098 For help with message header editing
14099 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14101 <UL>
14102 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14103 </UL>
14105 <UL>   
14106 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14107 </UL><P>
14108 &lt;End of help on this topic&gt;
14109 </BODY>
14110 </HTML>
14111 ======= h_composer_reply_to =======
14112 <HTML>
14113 <HEAD>
14114 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
14115 </HEAD>
14116 <BODY>
14117 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
14119 Most people should not need this header. The Reply-To: header is used in
14120 cases where you would like replies to your messages to be directed to an
14121 address other than your normal &quot;From:&quot; address.  This is atypical, 
14122 but can happen when you use multiple machines and do not have the same account
14123 name on each one, or when you wish to direct certain replies to accounts
14124 or folders designated for specific classes of correspondence.
14126 For help with message header editing
14127 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14129 <UL>
14130 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14131 </UL>
14134 <UL>   
14135 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14136 </UL><P>
14137 &lt;End of help on this topic&gt;
14138 </BODY>
14139 </HTML>
14140 ======= h_composer_custom_addr ====
14141 <HTML>
14142 <HEAD>
14143 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14144 </HEAD>
14145 <BODY>
14146 <H1>CUSTOMIZED HEADER FIELD</H1>
14147 This is a customized header, i.e. not one that is part of Alpine's normal
14148 set of Compose headers.
14150 For help with message header editing
14151 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14153 <UL>
14154 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14155 </UL>
14157 <UL>   
14158 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14159 </UL><P>
14160 &lt;End of help on this topic&gt;
14161 </BODY>
14162 </HTML>
14163 ======= h_composer_custom_free ====
14164 <HTML>
14165 <HEAD>
14166 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14167 </HEAD>
14168 <BODY>
14169 <H1>CUSTOMIZED HEADER FIELD</H1>
14170 This is a customized header, i.e. not one that is part of Alpine's normal
14171 set of Compose headers.
14173 This field consists of arbitrary text.
14175 For help with message header editing
14176 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14178 <UL>   
14179 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14180 </UL><P>
14181 &lt;End of help on this topic&gt;
14182 </BODY>
14183 </HTML>
14184 ====== h_composer_news =====
14185 <HTML>
14186 <HEAD>
14187 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
14188 </HEAD>
14189 <BODY>
14190 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
14191 Use the newsgroups line to specify any and all USENET newsgroups to which
14192 your message should be posted.  When composing a message from scratch, this
14193 line may be hidden.  If so, just press the rich headers command
14194 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
14195 to make it visible.
14197 <EM>Be aware</EM> that when you post to a newsgroup thousands of
14198 people will be reading your message.  Also, you or your system manager
14199 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
14200 in order for you to be able to post.
14202 For help with message header editing
14203 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14204 <P><UL>
14205 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14206 </UL>
14208 &lt;End of help on this topic&gt;
14209 </BODY>
14210 </HTML>
14211 ======= h_composer_fcc ====
14212 <HTML>
14213 <HEADER>
14214 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
14215 </HEADER>
14216 <BODY>
14217 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
14218 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
14219 each outgoing message.  The default value can be configured with the
14220 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
14221 the file carbon copy on any message you send by editing the FCC header.<p>
14223 You may type ^T to get a list of all your folders and select one to use as
14224 the FCC for this message.<P>
14226 For help with message header editing
14227 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14229 <UL>   
14230 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14231 </UL><P>
14232 &lt;End of help on this topic&gt;
14233 </BODY>
14234 </HTML>
14235 ======= h_composer_subject ====
14236 <HTML>
14237 <HEADER>
14238 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
14239 </HEADER>
14240 <BODY>
14241 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
14243 The subject header provides a place to enter a few words that summarize
14244 the topic of the message you are sending.  You may leave this line blank,
14245 but it is considered a courtesy to use a meaningful subject.<p>
14247 For help with message header editing
14248 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14250 <UL>   
14251 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14252 </UL><P>
14253 &lt;End of help on this topic&gt;
14254 </BODY>
14255 </HTML>
14256 ======= h_composer_attachment ====
14257 <HTML>
14258 <HEAD>
14259 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
14260 </HEAD>
14261 <BODY>
14262 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
14264 The &quot;Attchmnt:&quot; field is where you specify what file or
14265 files you'd like attached to
14266 the message you are composing.  Those files must reside on the machine
14267 running Alpine. If your file is on a PC or Mac and you run Alpine with an
14268 account on a Unix machine, you'll have to transfer it before attaching it.
14269 Contact local computer support people for assistance with transferring.
14272 The file name
14273 given can be an absolute file path name for your system
14274 <!--chtml if pinemode="os_windows"-->
14275 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14276 with a relative pathname, or simply a file name without
14277 drive or directory specification.  
14278 <!--chtml else-->
14279 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14280 a file in your home directory, or a file path relative to your 
14281 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14282 your home directory or &quot;~user&quot; to refer to another
14283 account's home directory.
14284 <!--chtml endif--><P>
14285 No wild card characters may be used.
14286 <P>If the 
14287 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14288 feature is set, names are relative to your current working directory 
14289 <!--chtml if pinemode="running"-->
14290 (which, at least for your current Alpine &quot;session,&quot; 
14291 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14292 <!--chtml endif-->
14293 rather than your home directory
14294 <!--chtml if pinemode="running"-->
14295 (which, in the present configuration of your system, is
14296  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14297 <!--chtml endif-->
14300 Alpine uses MIME encoding for attachments, so binaries and files of any
14301 length can safely be delivered to any MIME-capable mail reading program.
14302 If you send an attachment to someone who does not have a MIME-capable mail
14303 reading program yet, then the main message text will be readable, but
14304 attachments (even attachments that are just plain text) are not.
14307 Typing the filename on the Attchmnt: line achieves the same
14308 result as using the 
14309 <!--chtml if pinemode="function_key"-->
14311 <!--chtml else-->
14312 Ctrl-J
14313 <!--chtml endif--> command.
14316 If you Forward a message with attachments, you may delete them from your
14317 Forwarded message by editing the Attchmnt header line.
14320 For help with message header editing
14321 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14323 <UL>   
14324 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14325 </UL><P>
14326 &lt;End of help on this topic&gt;
14327 </BODY>
14328 </HTML>
14329 ======= h_composer_ctrl_j ====
14330 <HTML>
14331 <HEAD>
14332 <TITLE>COMPOSER ATTACH</TITLE>
14333 </HEAD>
14334 <BODY>
14335 After the
14336 <!--chtml if pinemode="function_key"-->
14338 <!--chtml else-->
14339 Ctrl-J
14340 <!--chtml endif--> command:
14341 At the &quot;File to attach:&quot; prompt, enter the name of the 
14342 existing file to attach to your message.  
14343 When the feature
14344 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
14345 is set
14346 you need only enter the beginning of the filename (enough of it to uniquely 
14347 identify the file) and press TAB to complete it.
14349 Or, press ^T to use the BROWSER screen for 
14350 selecting the file.  <P>
14351 For more information on attaching files, see the help screen for the 
14352 composer's 
14353 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
14354 but can be revealed using the 
14355 <!--chtml if pinemode="function_key"-->
14357 <!--chtml else-->
14358 Ctrl-R
14359 <!--chtml endif--> 
14360 command with the cursor positioned above the
14361 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
14363 &lt;End of help on this topic&gt;
14364 </BODY>
14365 </HTML>
14366 ======= h_edit_nav_cmds =========
14367 <HTML>
14368 <HEAD>
14369 <TITLE>Composer Editing Commands Explained</TITLE>
14370 </HEAD>
14371 <BODY>
14372 <H1>EDITING and NAVIGATION COMMANDS</H1>
14373 <!--chtml if pinemode="function_key"-->
14374 <PRE>
14375 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14376 ^B (Left Arrow)    Back character       | ^D       Delete current character
14377 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14378 ^P (Up Arrow)      Previous line        |
14379 ^N (Down Arrow)    Next line            | F9       Cut marked text or
14380 ^A                 Beginning of line    |            delete current line
14381 ^E                 End of line          | F10      Undelete line(s)
14382 F7                 Previous page        |
14383 F8                 Next page            |-------------------------------------
14384 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14385 ----------------------------------------|
14386 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
14387 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
14388 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
14389 </PRE>
14390 <!--chtml else-->
14391 <PRE>
14392 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14393 ^B (Left Arrow)    Back character       | ^D       Delete current character
14394 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14395 ^P (Up Arrow)      Previous line        |
14396 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
14397 ^A                 Beginning of line    |            delete current line
14398 ^E                 End of line          | ^U       Undelete line(s)
14399 ^Y                 Previous page        |
14400 ^V                 Next page            |-------------------------------------
14401 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14402 ----------------------------------------|
14403 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
14404 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
14405 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
14406 </PRE>
14407 <!--chtml endif-->
14408 &lt;End of help on this topic&gt;
14409 </BODY>
14410 </HTML>
14411 ===== h_composer_sigedit =====
14412 <HTML>
14413 <HEAD>
14414 <TITLE>Signature Editor Commands Explained</TITLE>
14415 </HEAD>
14416 <BODY>
14417 <H1>SIGNATURE EDITOR COMMANDS</H1>
14418 <!--chtml if pinemode="function_key"-->
14419 <PRE>
14420 CURSOR MOTION KEYS                     |EDITING KEYS
14421   ^B (Left Arrow)   Back character     | ^D       Delete current character
14422   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14423   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14424   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14425   ^A                Beginning of line  |           delete current line
14426   ^E                End of line        | F10       Paste text, undelete lines
14427   F7                Previous page      |           cut with ^K, or unjustify
14428   F8                Next page          |-------------------------------------
14429   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14430 ---------------------------------------| F6       Whereis (search for string)
14431 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14432  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14433                  |  ^Z    Suspend      | ^L       Redraw Screen
14434  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14435 </PRE>
14436 <!--chtml else-->
14437 <PRE>
14438 CURSOR MOTION KEYS                     |EDITING KEYS
14439   ^B (Left Arrow)   Back character     | ^D       Delete current character
14440   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14441   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14442   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14443   ^A                Beginning of line  |           delete current line
14444   ^E                End of line        | ^U        Paste text, undelete lines
14445   ^Y                Previous page      |           cut with ^K, or unjustify
14446   ^V                Next page          |-------------------------------------
14447   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14448 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14449 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14450  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14451                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14452  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14453 </PRE>
14454 <!--chtml endif-->
14456 NOTE: The presence or absence of the following commands is determined
14457 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14458 some of these commands may be administratively disabled by your system
14459 manager; if they don't work, please check with your local help desk
14460 before reporting a bug.
14462 <UL>
14463  <LI>Suspend (suspends Alpine and gives a system prompt)
14464  <LI>Alternate editor (allows you to compose with your own editor)
14465 </UL>
14468 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14469 Ctrl-&#92;, ESC
14472 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14473 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14475 &lt;End of help on this topic&gt;
14476 </BODY>
14477 </HTML>
14478 ===== h_composer_commentedit =====
14479 <HTML>
14480 <HEAD>
14481 <TITLE>Comment Editor Commands Explained</TITLE>
14482 </HEAD>
14483 <BODY>
14484 <H1>COMMENT EDITOR COMMANDS</H1>
14485 <!--chtml if pinemode="function_key"-->
14486 <PRE>
14487 CURSOR MOTION KEYS                     |EDITING KEYS
14488   ^B (Left Arrow)   Back character     | ^D       Delete current character
14489   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14490   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14491   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14492   ^A                Beginning of line  |           delete current line
14493   ^E                End of line        | F10       Paste text, undelete lines
14494   F7                Previous page      |           cut with ^K, or unjustify
14495   F8                Next page          |-------------------------------------
14496   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14497 ---------------------------------------| F6       Whereis (search for string)
14498 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14499  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14500                  |  ^Z    Suspend      | ^L       Redraw Screen
14501  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14502 </PRE>
14503 <!--chtml else-->
14504 <PRE>
14505 CURSOR MOTION KEYS                     |EDITING KEYS
14506   ^B (Left Arrow)   Back character     | ^D       Delete current character
14507   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14508   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14509   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14510   ^A                Beginning of line  |           delete current line
14511   ^E                End of line        | ^U        Paste text, undelete lines
14512   ^Y                Previous page      |           cut with ^K, or unjustify
14513   ^V                Next page          |-------------------------------------
14514   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14515 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14516 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14517  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14518                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14519  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14520 </PRE>
14521 <!--chtml endif-->
14523 NOTE: The presence or absence of the following commands is determined
14524 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14525 some of these commands may be administratively disabled by your system
14526 manager; if they don't work, please check with your local help desk
14527 before reporting a bug.
14529 <UL>
14530  <LI>Suspend (suspends Alpine and gives a system prompt)
14531  <LI>Alternate editor (allows you to compose with your own editor)
14532 </UL>
14535 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14536 Ctrl-&#92;, ESC
14539 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14540 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14542 &lt;End of help on this topic&gt;
14543 </BODY>
14544 </HTML>
14545 ======= h_composer_abook_nick =======
14546 <HTML>
14547 <HEAD>
14548 <TITLE>Addressbook Nickname Explained</TITLE>
14549 </HEAD>
14550 <BODY>
14551 This is a short nickname for this address book entry.  If it is used in
14552 place of an address from the composer, the composer will fill in the
14553 address(es) for the entry that matches the nickname. 
14556 Look <A HREF="h_edit_nav_cmds">here</A>
14557 to see the available Editing and Navigation commands.
14559 &lt;End of help on this topic&gt;
14560 </BODY>
14561 </HTML>
14562 ======= h_composer_abook_full =======
14563 <HTML>
14564 <HEAD>
14565 <TITLE>Addressbook Fullname Explained</TITLE>
14566 </HEAD>
14567 <BODY>
14568 This is the full name field for this entry.  If this is going to be a
14569 distribution list (more than one address), it should be a descriptive
14570 phrase describing the list.  It will be included in the mail header if you
14571 put the list in the To: or CC: field, or in the To: line if you put the
14572 list in the Lcc: field.  It's OK to leave this field blank (and OK to
14573 leave any of the other fields blank, too). If this address book entry is
14574 going to be a simple entry with just one address, then this field is the
14575 person's name. When you send mail to this entry, this is the field to the
14576 left of the brackets. That is, it is the most readable part of the 
14577 address. For example, in the sample address:
14578 <PRE>
14579        John Doe &lt;jdoe@some.domain&gt;
14580 </PRE>
14581 "John Doe" is the full name field. If you are sorting your address book
14582 with one of the options that uses full names, then it might be useful to
14583 enter the full name as "Last, First", for example:
14584 <PRE>
14585        Doe, John
14586 </PRE>
14587 so that it will be sorted using Doe instead of John. This will be changed
14588 back into John Doe when you use it.
14590 Look <A HREF="h_edit_nav_cmds">here</A>
14591 to see the available Editing and Navigation commands.
14593 &lt;End of help on this topic&gt;
14594 </BODY>
14595 </HTML>
14596 ======= h_composer_abook_fcc =======
14597 <HTML>
14598 <HEAD>
14599 <TITLE>Addressbook Fcc Explained</TITLE>
14600 </HEAD>
14601 <BODY>
14602 If this entry is the first one in the To: line of an outgoing message,
14603 this field will be used for the Fcc (File Carbon Copy) instead of whatever
14604 you would normally get (which depends on which
14605 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
14606 you've chosen). 
14608 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
14609 that you don't want any Fcc associated with this entry.
14611 Look <A HREF="h_edit_nav_cmds">here</A>
14612 to see the available Editing and Navigation commands.
14614 &lt;End of help on this topic&gt;
14615 </BODY>
14616 </HTML>
14617 ====== h_config_combined_abook_display =====
14618 <HTML>
14619 <HEAD>
14620 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
14621 </HEAD>
14622 <BODY>
14623 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
14625 This feature affects the address book display screens.
14626 Normally, expanding an address book from the ADDRESS BOOK LIST screen
14627 will cause the remaining address books and directory servers to disappear
14628 from the screen, leaving only the entries of the expanded address book.
14629 If this feature is set, then the other address books will remain on the screen,
14630 so that all of the address books can be present at once.
14633 The way that commands work won't be changed.
14634 For example, the Select All command will select all of the entries in the
14635 current address book, not all of the entries in all of the address books.
14636 The WhereIs command will change a little.
14637 It will search through all of the text on the screen plus all of the entries
14638 from expanded address books.
14641 When this feature is set, the setting of the feature
14642 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
14643 has an effect.
14645 &lt;End of help on this topic&gt;
14646 </BODY>
14647 </HTML>
14648 ====== h_config_titlebar_color_style =====
14649 <HTML>
14650 <HEAD>
14651 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
14652 </HEAD>
14653 <BODY>
14654 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
14656 This option affects the colors used to display the titlebar (the top
14657 line on the screen) when viewing a message.
14660 The available options include:
14663 <DL>
14664 <DT>default</DT>
14665 <DD>The color of the titlebar will be the color you set for the
14666 <A HREF="h_config_title_color">Title Color</A>.
14667 The Title Color may be set by using the
14668 <A HREF="h_color_setup">Setup Kolor</A> screen.
14669 </DD>
14671 <DT>indexline</DT>
14672 <DD>The color of the titlebar will be the same as the color of the
14673 index line corresponding to the message being viewed.
14674 The rules that determine what color the index line will be may be set
14675 up by going to the Setup/Rules/Indexcolor screen.
14676 If the index line for a message is not colored explicitly by the
14677 Indexcolor rules, then the titlebar will be colored the same as for
14678 the &quot;default&quot; option above (which is not the same color that
14679 the index line itself will have).
14680 </DD>
14682 <DT>reverse-indexline</DT>
14683 <DD>This is similar to the &quot;indexline&quot; option except the
14684 foreground and background colors from the corresponding index line will
14685 be reversed.
14686 For example, if the index line color is red letters on a white background,
14687 then the titlebar will be white letters on a red background.
14688 If the index line for a message is not colored explicitly by the
14689 Indexcolor rules, then the titlebar will be colored the same as for
14690 the &quot;default&quot; option above (which is not the same color that
14691 the index line itself will have).
14692 </DD>
14693 </DL>
14697 <UL>   
14698 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14699 </UL><P>
14700 &lt;End of help on this topic&gt;
14701 </BODY>
14702 </HTML>
14703 ====== h_config_index_color_style =====
14704 <HTML>
14705 <HEAD>
14706 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
14707 </HEAD>
14708 <BODY>
14709 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
14711 This option affects the colors used to display the current line in the
14712 MESSAGE INDEX screen.
14713 If you do not have Index Color Rules defined, then this option will
14714 have no effect in the index.
14715 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
14717 If the option
14718 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
14719 is turned on and the
14720 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
14721 is set to something other than the default, then
14722 this option also affects the color used to display the current folder
14723 in the Incoming FOLDER LIST screen.
14726 The available options include:
14729 <DL>
14730 <DT>flip-colors</DT>
14731 <DD>This is the default.
14732 If an index line is colored because it matches one of your
14733 Index Color Rules, then its colors will be reversed when it is the currently
14734 highlighted line.
14735 For example, if the line is normally red text on a blue background, then
14736 when it is the current line it will be drawn as blue text on a red background.
14738 The rest of the option values all revert to this flip-colors behavior if
14739 there is no Reverse Color defined.
14740 </DD>
14742 <DT>reverse</DT>
14743 <DD>With this option the Reverse color is always used to highlight the
14744 current line.
14745 </DD>
14747 <DT>reverse-fg</DT>
14748 <DD>The foreground part of the Reverse Color is used to highlight
14749 the current line.
14750 If this would cause the text to be unreadable (because the foreground and
14751 background colors are the same) or if it would cause no change in the
14752 color of the index line, then the colors are flipped instead.
14754 Some people think this works particularly well if you use different
14755 background colors to emphasize &quot;interesting&quot; lines,
14756 but always with the same Normal foreground color,
14757 and you use a different foreground color for the Reverse Color.
14758 </DD>
14760 <DT>reverse-fg-no-ambiguity</DT>
14761 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
14762 the resulting color will be exactly the same as the regular Reverse
14763 Color.
14764 That can lead to some possible confusion because an
14765 &quot;interesting&quot;
14766 line that is the current line will be displayed exactly the same as a
14767 non-interesting line that is current.
14768 You can't tell whether the line is just a regular current line or if it is
14769 an &quot;interesting&quot; current line by looking at the color.
14770 Setting the option to this value removes that ambiguity.
14771 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
14772 interesting current line would look just like a non-interesting current line.
14773 In that case, the interesting line's colors are simply flipped (like in the
14774 default behavior).
14776 As an alternative way to preserve the line's interestingness in this case,
14777 you may find that using both a different foreground and a different
14778 background color for the interesting line will help.
14779 </DD>
14781 <DT>reverse-bg</DT>
14782 <DD>The background part of the Reverse Color is used to highlight
14783 the current line.
14784 If this would cause the text to be unreadable (because the foreground and
14785 background colors are the same) or if it would cause no change in the
14786 color of the index line, then the colors are flipped instead.
14788 Some people think this works particularly well if you use different
14789 foreground colors to emphasize &quot;interesting&quot; lines,
14790 but always with the same Normal background color,
14791 and you use a different background color for the Reverse Color.
14792 </DD>
14794 <DT>reverse-bg-no-ambiguity</DT>
14795 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
14796 rule may also result in a color that is exactly the same as the regular
14797 Reverse Color.
14798 Setting the option to this value removes that ambiguity.
14799 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
14800 current line has the same color as the Reverse Color.
14801 In that case, the interesting line's colors are simply flipped (like in the
14802 default behavior).
14803 </DD>
14804 </DL>
14808 <UL>   
14809 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14810 </UL><P>
14811 &lt;End of help on this topic&gt;
14812 </BODY>
14813 </HTML>
14814 ====== h_config_expanded_addrbooks =====
14815 <HTML>
14816 <HEAD>
14817 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
14818 </HEAD>
14819 <BODY>
14820 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
14822 If multiple address books (either personal or global) are defined, and you
14823 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
14824 screen, then set this feature. This feature will have no effect unless the
14825 feature
14826 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
14827 is also set.
14829 &lt;End of help on this topic&gt;
14830 </BODY>
14831 </HTML>
14832 ====== h_config_combined_folder_display =====
14833 <HTML>
14834 <HEAD>
14835 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
14836 </HEAD>
14837 <BODY>
14838 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
14840 This feature affects the folder list display screens.
14841 Normally, each folder list is viewed within its collection only.  This
14842 command allows folder lists to be viewed within a single screen that
14843 combines the contents of all collections.
14846 The way that commands work won't be changed.
14847 For example, the Select All command will select all of the folders in the
14848 current collection, not all of the entries in all of the collections.
14849 The WhereIs command will change a little.
14850 It will search through all of the folders in the current collection as well
14851 as all the folder in any other expanded collection.
14854 When this feature is set, the setting of the feature
14855 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
14856 has an effect.
14858 &lt;End of help on this topic&gt;
14859 </BODY>
14860 </HTML>
14861 ====== h_config_combined_subdir_display =====
14862 <HTML>
14863 <HEAD>
14864 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
14865 </HEAD>
14866 <BODY>
14867 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
14869 This feature affects the Folder List screen when
14871 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14872 feature is enabled.  Normally, selecting a directory from the Folder
14873 List takes you into a new screen displaying only the contents of
14874 that directory.
14877 Enabling this feature will cause the contents of the selected
14878 directory to be
14879 displayed within the boundaries of the &quot;Collection&quot; it
14880 is a part of.  All previously displayed collections will remain
14881 in the screen.
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 directory, as opposed to 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 &lt;End of help on this topic&gt;
14893 </BODY>
14894 </HTML>
14895 ====== h_config_separate_fold_dir_view =====
14896 <HTML>
14897 <HEAD>
14898 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
14899 </HEAD>
14900 <BODY>
14901 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
14903 This feature affects folder collections wherein a folder
14904 and directory can have the same name.  By default, Alpine displays them
14905 only once, denoting that it is both a folder and directory by appending
14906 the folder name with the hierarchy character enclosed
14907 in square brackets.
14911 Enabling this feature will cause Alpine to display such names
14912 separately marking the name representing a directory with a trailing
14913 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
14916 The feature also alters the command set slightly.  By default, the
14917 right-arrow descends into the directory, while hitting the Return key will
14918 cause the folder by that name to be opened.
14921 With this feature set, the Return key will open the highlighted folder, or
14922 enter the highlighted directory.
14925 &lt;End of help on this topic&gt;
14926 </BODY>
14927 </HTML>
14928 ====== h_config_expanded_folders =====
14929 <HTML>
14930 <HEAD>
14931 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
14932 </HEAD>
14933 <BODY>
14934 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
14936 If multiple folder collections are defined, and you
14937 wish to have them all expanded implicitly upon entering the FOLDER LIST
14938 screen, then set this feature. This feature will have no effect unless the
14939 feature
14940 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
14941 is also set.
14943 &lt;End of help on this topic&gt;
14944 </BODY>
14945 </HTML>
14946 ======= h_config_ldap_server =======
14947 <HTML>
14948 <HEAD>
14949 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
14950 </HEAD>
14951 <BODY>
14952 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
14953 This is the name of the host where an LDAP server is running.
14954 For redundancy, this may be a space-delimited set of server names, in which
14955 case the first server that answers is used.
14956 Each of the server names may be optionally followed by
14957 a colon and a port number.
14958 If this form is used then the port number configured below in the
14959 <EM>port</EM> field is not used.
14961 To find out whether your organization has its own LDAP server, 
14962 contact its computing support staff.
14963 <P><UL>
14964 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14965 </UL>
14967 &lt;End of help on this topic&gt;
14968 </BODY>
14969 </HTML>
14970 ======= h_config_ldap_base =======
14971 <HTML>
14972 <HEAD>
14973 <TITLE>LDAP OPTION: Search-Base</TITLE>
14974 </HEAD>
14975 <BODY>
14976 <H1>LDAP OPTION: Search-Base</H1>
14978 This is the search base to be used on this server.  It functions as a filter 
14979 by restricting your searches in the LDAP server database
14980 to the specified contents of the specified fields.  Without it, searches 
14981 submitted to this directory server may fail.  It might be something
14982 like:
14984 <PRE>
14985       O = &lt;Your Organization Name&gt;, C = US
14986 </PRE>
14987 or it might be blank.  
14988 (Some LDAP servers actually ignore anything specified here.)
14990 If in doubt what parameters you should specify here, 
14991 contact the maintainers of the LDAP server.
14992 <P><UL>
14993 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14994 </UL>
14996 &lt;End of help on this topic&gt;
14997 </BODY>
14998 </HTML>
14999 ======= h_config_ldap_port =======
15000 <HTML>
15001 <HEAD>
15002 <TITLE>LDAP OPTION: Port</TITLE>
15003 </HEAD>
15004 <BODY>
15005 <H1>LDAP OPTION: Port</H1>
15007 This is the TCP port number to be used with this LDAP server. If you leave
15008 this blank port 389 will be used.
15010 &lt;End of help on this topic&gt;
15011 </BODY>
15012 </HTML>
15013 ======= h_config_ldap_nick =======
15014 <HTML>
15015 <HEAD>
15016 <TITLE>LDAP OPTION: Nickname</TITLE>
15017 </HEAD>
15018 <BODY>
15019 <H1>LDAP OPTION: Nickname</H1>
15021 This is a nickname to be used in displays. If you don't supply a
15022 nickname the server name
15023 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
15024 will be used instead.  This option is strictly for your convenience.
15026 &lt;End of help on this topic&gt;
15027 </BODY>
15028 </HTML>
15029 ======= h_config_ldap_binddn =======
15030 <HTML>
15031 <HEAD>
15032 <TITLE>LDAP OPTION: Bind-DN</TITLE>
15033 </HEAD>
15034 <BODY>
15035 <H1>LDAP OPTION: Bind-DN</H1>
15037 You may need to authenticate to the LDAP server before you are able to use it.
15038 This is the Distinguished Name to bind to when authenticating to this server.
15039 Try leaving this blank until you know you need it.
15041 Alpine only knows about LDAP Simple authentication.
15042 It does not attempt LDAP SASL authentication.
15043 The DN and password will be sent in the clear unless TLS encryption is
15044 being used on this connection.
15045 Because of this, you may want to set the LDAP feature
15046 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
15047 or the feature
15048 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15049 if you are going to be providing a password.
15050 <P><UL>
15051 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15052 </UL>
15054 &lt;End of help on this topic&gt;
15055 </BODY>
15056 </HTML>
15057 ======= h_config_ldap_opts_impl =======
15058 <HTML>
15059 <HEAD>
15060 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
15061 </HEAD>
15062 <BODY>
15063 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
15065 Set this to have lookups done to this server implicitly from the composer.
15066 If an address doesn't look like a fully-qualified address, it will be looked
15067 up in your address books, and if it doesn't match a nickname there, then it
15068 will be looked up on the LDAP servers that have this feature set.
15069 The lookups will also be done when using the address completion feature
15070 (TAB command) in the composer if any of the serves have this feature set.
15071 Also see the LDAP feature
15072 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
15073 and the Setup/Config feature
15074 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15076 &lt;End of help on this topic&gt;
15077 </BODY>
15078 </HTML>
15079 ======= h_config_ldap_opts_tls =======
15080 <HTML>
15081 <HEAD>
15082 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
15083 </HEAD>
15084 <BODY>
15085 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
15087 When connecting to this server Alpine will attempt to use TLS encryption
15088 on the connection.
15089 Also see the closely related feature
15090 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15092 Note that if this option is set, then 
15093 <A HREF="h_config_ldap_opts_ldaps">
15094 &quot;Require-LDAPS-On-Connection&quot;</A>
15095 can not be enabled for this server. You must disable this feature in
15096 order to use 
15097 <A HREF="h_config_ldap_opts_ldaps">
15098 &quot;Require-LDAPS-On-Connection&quot;</A>
15100 &lt;End of help on this topic&gt;
15101 </BODY>
15102 </HTML>
15103 ======= h_config_ldap_opts_tlsmust =======
15104 <HTML>
15105 <HEAD>
15106 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
15107 </HEAD>
15108 <BODY>
15109 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
15111 When connecting to this server Alpine will attempt to use TLS encryption
15112 on the connection.
15113 If the StartTLS operation fails then the connection will not be used.
15115 Note that if this option is set, then 
15116 <A HREF="h_config_ldap_opts_ldaps">
15117 &quot;Require-LDAPS-On-Connection&quot;</A>
15118 can not be enabled for this server. You must disable this feature in
15119 order to use 
15120 <A HREF="h_config_ldap_opts_ldaps">
15121 &quot;Require-LDAPS-On-Connection&quot;</A>
15123 &lt;End of help on this topic&gt;
15124 </BODY>
15125 </HTML>
15126 ======= h_config_ldap_opts_ldaps =======
15127 <HTML>
15128 <HEAD>
15129 <TITLE>LDAP FEATURE: Require-LDAPS-On-Connection</TITLE>
15130 </HEAD>
15131 <BODY>
15132 <H1>LDAP FEATURE: Require-LDAPS-On-Connection</H1>
15134 When connecting to this server Alpine will use LDAPS (LDAP over SSL/TLS) 
15135 on the connection.
15137 This feature can not be used along with 
15138 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15139  or
15140 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>.
15141 If you want to connect using StartTLS to this server, you must disable
15142 this feature first.
15144 &lt;End of help on this topic&gt;
15145 </BODY>
15146 </HTML>
15147 ====== h_config_ldap_opts_rhs =====
15148 <HTML>
15149 <HEAD>
15150 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
15151 </HEAD>
15152 <BODY>
15153 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
15155 Normally implicit LDAP lookups from the composer are done only for the
15156 strings you type in from the composer screen. In other words, you type in
15157 something in the To or CC field and press return, then the string is looked up.
15158 First that string is looked up in your address books. If a match is found
15159 there, then the results of that match are looked up again. If you place
15160 a string in your address book that you want to have looked up on the LDAP
15161 directory server, you need to turn on this feature. If you set this feature
15162 for a server, you almost always will also want to set the
15163 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
15164 feature. An example might serve to best illustrate this feature.
15166 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
15167 entry with an
15168 address of pres@whitehouse.gov, then you might put an entry in your address
15169 book that looks like:
15171 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
15172 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
15174 Now, when you type &quot;bill&quot; into an
15175 address field in the composer Alpine will
15176 find the &quot;bill&quot; entry in your address book.
15177 It will replace &quot;bill&quot; with
15178 &quot;William Clinton&quot;.
15179 It will then search for an entry with that nickname
15180 in your address book and not find one. If this feature
15181 is set, Alpine will then attempt to lookup
15182 &quot;William Clinton&quot; on the LDAP server and find the entry with address
15183 pres@whitehouse.gov.
15185 A better way to accomplish the same thing is probably to use the feature
15186 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
15188 &lt;End of help on this topic&gt;
15189 </BODY>
15190 </HTML>
15191 ====== h_config_ldap_opts_ref =====
15192 <HTML>
15193 <HEAD>
15194 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
15195 </HEAD>
15196 <BODY>
15197 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
15199 Normally when you save the results of an LDAP directory lookup to your
15200 address book the results of the lookup are saved. If this feature is set
15201 and the entry being saved was found on this directory server, then the
15202 search criteria is saved instead of the results of the search. When this
15203 address book entry is used in the future, instead of copying the results
15204 from the address book the directory lookup will be done again. This could
15205 be useful if the copied result might become stale because the data on
15206 the directory server changes (for example, the entry's email address changes).
15207 You probably don't want to set this feature if the server is at all slow or
15208 unreliable.
15210 The way this actually works is that instead of saving the email address
15211 in your address book, Alpine saves enough information to look up the same
15212 directory entry again. In particular, it saves the server name and the
15213 distinguished name of the entry. It's possible that the server administrators
15214 might change the format of distinguished names on the server, or that the
15215 entry might be removed from the server. If Alpine notices this, you will be warned
15216 and a backup copy of the email address will be used. You may want to create
15217 a new entry in this case, since you will get the annoying warning every
15218 time you use the old entry. You may do that by Saving the entry to a new
15219 nickname in the same address book. You will be asked whether or not you
15220 want to use the backup email address.
15222 A related feature in the Setup/Config screen is
15223 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15225 &lt;End of help on this topic&gt;
15226 </BODY>
15227 </HTML>
15228 ======= h_config_ldap_opts_nosub =======
15229 <HTML>
15230 <HEAD>
15231 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
15232 </HEAD>
15233 <BODY>
15234 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
15236 Spaces in your input are normally handled specially.
15237 Each space character is replaced
15240 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
15242 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
15243 The reason this is done is so the input string
15245 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
15247 (which is converted to &quot;Greg* Donald&quot;) will match
15248 the names &quot;Greg Donald&quot;,
15249 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
15250 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
15251 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
15252 then it would also match the name &quot;Greg Donaldson&quot;.
15254 Turning on this feature will disable this substitution.
15256 &lt;End of help on this topic&gt;
15257 </BODY>
15258 </HTML>
15259 ====== h_config_ldap_searchtypes =======
15260 <HTML>
15261 <HEAD>
15262 <TITLE>LDAP OPTION: Search-Type</TITLE>
15263 </HEAD>
15264 <BODY>
15265 <H1>LDAP OPTION: Search-Type</H1>
15267 This affects the way that LDAP searches are done.
15268 In particular, this tells the server where to look for the string to be matched.
15269 If set to &quot;name&quot; then the string that is being searched for will
15270 be compared with the string in the
15271 &quot;Name&quot; field on the server
15272 (technically, it is the &quot;commonname&quot; field on the server).
15273 &quot;Surname&quot; means we're looking for a
15274 match in the &quot;Surname&quot; field on the
15275 server (actually the &quot;sn&quot; field).
15276 &quot;Givenname&quot; really is &quot;givenname&quot;
15277 and &quot;email&quot; is the electronic mail address (this is actually the field
15278 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
15279 The other three types are combinations of
15280 the types listed so far. &quot;Name-or-email&quot;
15281 means the string should appear
15282 in either the &quot;name&quot; field OR the &quot;email&quot; field.
15283 Likewise, &quot;surname-or-givenname&quot;
15284 means &quot;surname&quot; OR &quot;givenname&quot;
15285 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
15287 This search TYPE is combined with the
15288 search <A HREF="h_config_ldap_searchrules">RULE</A>
15289 to form the actual search query.
15291 The usual default value for this
15292 option is &quot;sur-or-given-or-name-or-email&quot;.
15293 This type of search may be slow on some servers.
15294 Try &quot;name-or-email&quot;, which is often
15295 faster, or just &quot;name&quot; if the performance seems to be a problem.
15297 Some servers have been configured with different attribute names for
15298 these four fields.
15299 In other words, instead of using the attribute name &quot;mail&quot;
15300 for the email address field, the server might be configured to use something
15301 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
15302 Alpine can be configured to use these different attribute names by using
15303 the four configuration options:
15304 <P><UL>
15305 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15306 </UL>
15307 <P><UL>
15308 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15309 </UL>
15310 <P><UL>
15311 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15312 </UL>
15313 <P><UL>
15314 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15315 </UL>
15317 &lt;End of help on this topic&gt;
15318 </BODY>
15319 </HTML>
15320 ====== h_config_ldap_searchrules =======
15321 <HTML>
15322 <HEAD>
15323 <TITLE>LDAP OPTION: Search-Rule</TITLE>
15324 </HEAD>
15325 <BODY>
15326 <H1>LDAP OPTION: Search-Rule</H1>
15328 This affects the way that LDAP searches are done.
15329 If set to &quot;equals&quot; then
15330 only exact matches count.
15331 &quot;Contains&quot; means that the string you type in
15332 is a substring of what you are matching against.
15333 &quot;Begins-with&quot; and &quot;ends-with&quot;
15334 mean that the string starts or ends with the string you type in.
15336 Spaces in your input are normally handled specially, but you can turn that
15337 special handling off with the
15338 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15339 feature.
15341 The usual default value for this option is &quot;begins-with&quot;.
15343 &lt;End of help on this topic&gt;
15344 </BODY>
15345 </HTML>
15346 ======= h_config_ldap_email_attr =======
15347 <HTML>
15348 <HEAD>
15349 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
15350 </HEAD>
15351 <BODY>
15352 <H1>LDAP OPTION: EmailAttribute</H1>
15354 This is the name of the attribute that is searched for when looking for
15355 an email address. The default value for this option is &quot;mail&quot; or
15356 &quot;electronicmail&quot;.
15357 If the server you are using uses a different attribute name for the email
15358 address, put that attribute name here.
15360 This will affect the search filter used if your Search-Type is one that
15361 contains a search for &quot;email&quot;.
15362 It will also cause the attribute value matching this attribute name to be used
15363 as the email address when you look up an entry from the composer.
15365 &lt;End of help on this topic&gt;
15366 </BODY>
15367 </HTML>
15368 ======= h_config_ldap_sn_attr =======
15369 <HTML>
15370 <HEAD>
15371 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
15372 </HEAD>
15373 <BODY>
15374 <H1>LDAP OPTION: SurnameAttribute</H1>
15376 This is the name of the attribute that is searched for when looking for
15377 the surname of the entry. The default value for this option is &quot;sn&quot;.
15378 If the server you are using uses a different attribute name for the surname,
15379 put that attribute name here.
15380 This will affect the search filter used if your Search-Type is one that
15381 contains a search for &quot;surname&quot;.
15383 &lt;End of help on this topic&gt;
15384 </BODY>
15385 </HTML>
15386 ======= h_config_ldap_gn_attr =======
15387 <HTML>
15388 <HEAD>
15389 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
15390 </HEAD>
15391 <BODY>
15392 <H1>LDAP OPTION: GivennameAttribute</H1>
15394 This is the name of the attribute that is searched for when looking for
15395 the given name of the entry. The default value for this option is &quot;givenname&quot;.
15396 If the server you are using uses a different attribute name for the given name,
15397 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;givenname&quot;.
15401 &lt;End of help on this topic&gt;
15402 </BODY>
15403 </HTML>
15404 ======= h_config_ldap_cn_attr =======
15405 <HTML>
15406 <HEAD>
15407 <TITLE>LDAP OPTION: NameAttribute</TITLE>
15408 </HEAD>
15409 <BODY>
15410 <H1>LDAP OPTION: NameAttribute</H1>
15412 This is the name of the attribute that is searched for when looking for
15413 the name of the entry. The default value for this option is &quot;cn&quot;, which
15414 stands for common name.
15415 If the server you are using uses a different attribute name for the name,
15416 put that attribute name here.
15417 This will affect the search filter used if your Search-Type is one that
15418 contains a search for &quot;name&quot;.
15420 &lt;End of help on this topic&gt;
15421 </BODY>
15422 </HTML>
15423 ======= h_config_ldap_time =======
15424 <HTML>
15425 <HEAD>
15426 <TITLE>LDAP OPTION: Timelimit</TITLE>
15427 </HEAD>
15428 <BODY>
15429 <H1>LDAP OPTION: Timelimit</H1>
15431 This places a limit on the number of seconds the LDAP search will continue.
15432 The default is 30 seconds. A value of 0 means no limit. Note that some servers
15433 may place limits of their own on searches.
15435 &lt;End of help on this topic&gt;
15436 </BODY>
15437 </HTML>
15438 ======= h_config_ldap_size =======
15439 <HTML>
15440 <HEAD>
15441 <TITLE>LDAP OPTION: Sizelimit</TITLE>
15442 </HEAD>
15443 <BODY>
15444 <H1>LDAP OPTION: Sizelimit</H1>
15446 This places a limit on the number of entries returned by the LDAP server.
15447 A value of 0 means no limit. The default is 0. Note that some servers
15448 may place limits of their own on searches.
15450 &lt;End of help on this topic&gt;
15451 </BODY>
15452 </HTML>
15453 ======= h_config_ldap_cust =======
15454 <HTML>
15455 <HEAD>
15456 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
15457 </HEAD>
15458 <BODY>
15459 <H1>LDAP OPTION: Custom-Search-Filter</H1>
15461 This one is for advanced users only! If you define this, then the
15462 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
15463 However, the feature
15464 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15465 is still in effect.
15466 That is, the space substitution will take place even in a custom filter unless
15467 you disable it.
15469 If your LDAP service stops working and you suspect it might be because
15470 of your custom filter, just delete this filter and try using the
15471 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
15472 Another option that sometimes causes trouble is the
15473 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
15475 This variable may be set to the string representation of an LDAP search
15476 filter (see RFC1960). In the places where you want the address string to be
15477 substituted in, put a '%s' in this filter string. Here are some examples:
15479 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
15480 is equivalent to the &quot;Custom-Search-Filter&quot;
15481 <PRE>
15482      (cn=%s*)
15483 </PRE>
15484 When you try to match against the string &quot;string&quot; the program replaces
15485 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
15486 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
15488 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
15489 of &quot;contains&quot; is equivalent to
15490 <PRE>
15491      (|(cn=*%s*)(mail=*%s*))
15492 </PRE>
15494 If your server uses a different attribute <EM>name</EM> than
15495 Alpine uses by default,
15496 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
15497 then you may be able to use one or more of the four attribute configuration
15498 options instead of defining a custom filter:
15499 <P><UL>
15500 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15501 </UL>
15502 <P><UL>
15503 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15504 </UL>
15505 <P><UL>
15506 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15507 </UL>
15508 <P><UL>
15509 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15510 </UL>
15512 &lt;End of help on this topic&gt;
15513 </BODY>
15514 </HTML>
15515 ======= h_composer_abook_comment =======
15516 <HTML>
15517 <HEAD>
15518 <TITLE>Addressbook Comment Explained</TITLE>
15519 </HEAD>
15520 <BODY>
15521 This is a comment to help you remember what this entry is. The WhereIs
15522 command searches comments so that it is easier to find an entry with a comment
15523 you know about attached to it. This field is not used in the outgoing message.
15525 Look <A HREF="h_edit_nav_cmds">here</A>
15526 to see the available Editing and Navigation commands.
15528 &lt;End of help on this topic&gt;
15529 </BODY>
15530 </HTML>
15531 ======= h_composer_abook_addrs =======
15532 <HTML>
15533 <HEAD>
15534 <TITLE>Addressbook Lists</TITLE>
15535 </HEAD>
15536 <BODY>
15537 <H1>Addressbook Lists</H1>
15539 This is a list of addresses to send to when sending to this address book
15540 entry.  Each member of the list may be an address or another nickname from
15541 any of your address books.  If it is an address, it is OK to include the
15542 full name field as well as the electronic address portion of that address.
15543 For example, the following are all legitimate entries in this field:
15545 <DL><DT>&nbsp;</DT>
15546 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
15547 <DD>jdoe@some.domain
15548 <DD>John Doe &lt;jdoe@some.domain&gt;
15549 </DL>
15551 The addresses should be listed separated by commas, just like you would
15552 enter them from the composer.
15556 The only difference between a distribution list and a simple entry with a
15557 single address, is that a distribution list has more than one address   
15558 listed in the Addresses: field, whereas a simple personal entry has just  
15559 one address.
15563 For individual address book entries, if there is a full name in the
15564 Fullname: field (filling in the Fullname: field is not required), it is
15565 used.  If the full name is specified in the Address: field and not in the
15566 Fullname: field, then the full name from the Address: field is used.
15570 If you type the nickname of a distribution list from one of your address 
15571 books in the Lcc: field, then the full name of that list is used in the  
15572 To: field.  If you put a list in the To: or Cc: fields, that list will be
15573 expanded into all of its addresses.  If the list has a full name, then
15574 that will appear at the beginning of the addresses.
15576 <DL><DT>&nbsp;</DT>
15577 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
15578 &lt;sal@here.there&gt;
15579 </DL>
15581 If the first address in the distribution list also has a full name, then
15582 the list full name and that full name are combined into something like the
15583 following:
15585 <DL><DT>&nbsp;</DT>
15586 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
15587 </DL>
15590 If you specify a list via Lcc, the full name is used in the To: line.  If
15591 you specify a list in the To: or Cc: fields, then it uses the same method
15592 as for individual entries for filling in the full name.
15596 For help with editing and navigation commands, check the Help for the
15597 Nickname: field.
15600 &lt;End of help on this topic&gt;
15601 </BODY>
15602 </HTML>
15603 ======= h_config_role_nick =======
15604 <HTML>
15605 <HEAD>
15606 <TITLE>Nickname Explained</TITLE>
15607 </HEAD>
15608 <BODY>
15609 <H1>Nickname Explained</H1>
15611 This is a nickname to help you.
15612 You should have a different nickname for each role you define.
15613 The nickname will be used in the SETUP ROLE RULES screen to allow you to
15614 pick a role to edit.
15615 It will also be used when you send a message to let you know you are
15616 sending with a different role than you use by default, and
15617 it will be useful for choosing a role when composing with the Role command
15618 or when composing with one of the Role Uses set to With Confirmation.
15619 This field is not used in the outgoing message.
15621 Look <A HREF="h_edit_nav_cmds">here</A>
15622 to see the available Editing and Navigation commands.
15624 &lt;End of help on this topic&gt;
15625 </BODY>
15626 </HTML>
15627 ======= h_config_role_comment =======
15628 <HTML>
15629 <HEAD>
15630 <TITLE>Comment Explained</TITLE>
15631 </HEAD>
15632 <BODY>
15633 <H1>Comment Explained</H1>
15635 This is a comment to help you.
15636 This comment does not play any functional role, it is simply an optional
15637 comment to help you remember what the rule is for.
15639 Look <A HREF="h_edit_nav_cmds">here</A>
15640 to see the available Editing and Navigation commands.
15642 &lt;End of help on this topic&gt;
15643 </BODY>
15644 </HTML>
15645 ======= h_config_other_nick =======
15646 <HTML>
15647 <HEAD>
15648 <TITLE>Nickname Explained</TITLE>
15649 </HEAD>
15650 <BODY>
15651 <H1>Nickname Explained</H1>
15653 This is a nickname to help you.
15654 You should have a different nickname for each rule you define.
15655 The nickname will be used in the SETUP OTHER RULES screen to allow you to
15656 pick a rule to edit.
15658 Look <A HREF="h_edit_nav_cmds">here</A>
15659 to see the available Editing and Navigation commands.
15661 &lt;End of help on this topic&gt;
15662 </BODY>
15663 </HTML>
15664 ======= h_config_score_nick =======
15665 <HTML>
15666 <HEAD>
15667 <TITLE>Nickname Explained</TITLE>
15668 </HEAD>
15669 <BODY>
15670 <H1>Nickname Explained</H1>
15672 This is a nickname to help you.
15673 You should have a different nickname for each scoring rule you define.
15674 The nickname will be used in the SETUP SCORING RULES screen to allow you to
15675 pick a rule to edit.
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_incol_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 color rule you define.
15693 The nickname will be used in the SETUP INDEX COLOR 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_filt_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 filtering rule you define.
15712 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
15713 pick a rule to edit.
15715 Look <A HREF="h_edit_nav_cmds">here</A>
15716 to see the available Editing and Navigation commands.
15718 &lt;End of help on this topic&gt;
15719 </BODY>
15720 </HTML>
15721 ======= h_config_score_topat =======
15722 <HTML>
15723 <HEAD>
15724 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15725 </HEAD>
15726 <BODY>
15727 <H1>&quot;To:&quot; Pattern Explained</H1>
15729 Any text you enter as the &quot;To pattern&quot;
15730 will be compared to the recipients from the To: line of
15731 the message being scored.
15732 When the text you entered matches
15733 all or part of the To: line of a message, then the Score Value
15734 you have specified will be added to the score for the message.
15735 (Any other non-blank parts of the Pattern must match, too.)
15738 You may enter a complete email address, part of an address, or a
15739 list of addresses or partial addresses.
15740 For example:
15743 <PRE>
15744  To pattern = friend@public.com
15746  To pattern = rated.net
15748  To pattern = xxx@adults.com
15749               admin@msn.com
15750               fool@motleyfool.com
15751 </PRE>
15754 Each of those are valid To patterns.
15757 Messages match those patterns if any of the
15758 addresses in the To: line of the message contains the pattern.
15759 If the pattern is a list of patterns
15760 (like the last example above) then it is a match if any of the patterns in
15761 the list match any of the addresses in the To: line.
15762 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15763 present for a match.
15764 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15765 address2 must be present.
15766 That is exactly what using a list does.)
15769 Some messages may be &quot;bounced&quot; to you, and will
15770 have a &quot;Resent-To:&quot; header line.
15771 If the message contains a Resent-To: line
15772 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15773 Alpine will look for
15774 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15775 the original To: line.
15778 When entering a pattern, you may choose an address from your address book
15779 with the &quot;T&quot; command.
15782 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15783 &quot;!&quot; &quot;toggle NOT&quot; command.
15784 This changes the meaning of the To pattern so that it has the opposite meaning.
15785 It will be considered a match if there are no matches between the
15786 addresses in the To: line and the list of To patterns.
15788 Don't make the mistake of putting the &quot;!&quot; in the data field for
15789 the pattern.
15790 For example, if you type the characters &quot;!frizzle&quot; into the To
15791 pattern, the pattern will look like:
15793 <PRE>
15794  To pattern = !frizzle
15795 </PRE>
15797 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15798 In order to match messages that do not have &quot;frizzle&quot; in
15799 their To field, first type the characters &quot;frizzle&quot; followed
15800 by carriage return for the value of the To pattern, then negate it
15801 by typing the &quot;!&quot; command.
15802 It should end up looking like
15804 <PRE>
15805  ! To pattern = frizzle
15806 </PRE>
15808 You are not limited to using the six standard header patterns that are
15809 normally shown (To, From, Sender, Cc, News, and Subject).
15810 You may add any other header to a Pattern by
15811 using the &quot;eXtraHdr&quot; command to specify a different
15812 message header line; and then the Add or Change command to fill in
15813 a pattern for the new header line, just like you would for a standard header.
15815 A technicality: Since comma is the character used to separate multiple
15816 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15817 you want to include a literal comma in the field.
15818 In other words, if you type a backslash followed by a comma it will
15819 be interpreted as a comma by Alpine, instead of as a separator between
15820 pattern values.
15821 All other backslashes are literal backslashes and should not be escaped.
15823 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15824 for more information on Patterns.
15826 Look <A HREF="h_edit_nav_cmds">here</A>
15827 to see the available Editing and Navigation commands.
15829 &lt;End of help on this topic&gt;
15830 </BODY>
15831 </HTML>
15832 ======= h_config_incol_topat =======
15833 <HTML>
15834 <HEAD>
15835 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15836 </HEAD>
15837 <BODY>
15838 <H1>&quot;To:&quot; Pattern Explained</H1>
15840 Any text you enter as the &quot;To pattern&quot;
15841 will be compared to the recipients from the To: lines of
15842 the messages in the index.
15843 When the text you entered matches
15844 all or part of the To: line of a message, then the Index Line Color you have
15845 specified will be used for that line in the index.
15846 (Any other non-blank parts of the Pattern must match, too.)
15849 You may enter a complete email address, part of an address, or a
15850 list of addresses or partial addresses.
15851 For example:
15854 <PRE>
15855  To pattern = friend@public.com
15856  To pattern = rated.net
15857  To pattern = xxx@adults.com
15858               admin@msn.com
15859               fool@motleyfool.com
15860 </PRE>
15863 Each of those are valid To patterns.
15866 Messages match those patterns if any of the
15867 addresses in the To: line of the message contains the pattern.
15868 If the pattern is a list of patterns
15869 (like the last example above) then it is a match if any of the patterns in
15870 the list match any of the addresses in the To: line.
15871 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15872 present for a match.
15873 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15874 address2 must be present.
15875 That is exactly what using a list does.)
15878 Some messages may be &quot;bounced&quot; to you, and will
15879 have a &quot;Resent-To:&quot; header line.
15880 If the message contains a Resent-To: line
15881 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15882 Alpine will look for
15883 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15884 the original To: line.
15887 When entering a pattern, you may choose an address from your address book
15888 with the &quot;T&quot; command.
15891 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15892 &quot;!&quot; &quot;toggle NOT&quot; command.
15893 This changes the meaning of the To pattern so that it has the opposite meaning.
15894 It will be considered a match if there are no matches between the
15895 addresses in the To: line and the list of To patterns.
15897 Don't make the mistake of putting the &quot;!&quot; in the data field for
15898 the pattern.
15899 For example, if you type the characters &quot;!frizzle&quot; into the To
15900 pattern, the pattern will look like:
15902 <PRE>
15903  To pattern = !frizzle
15904 </PRE>
15906 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15907 In order to match messages that do not have &quot;frizzle&quot; in
15908 their To field, first type the characters &quot;frizzle&quot; followed
15909 by carriage return for the value of the To pattern, then negate it
15910 by typing the &quot;!&quot; command.
15911 It should end up looking like
15913 <PRE>
15914  ! To pattern = frizzle
15915 </PRE>
15918 You are not limited to using the six standard header patterns that are
15919 normally shown (To, From, Sender, Cc, News, and Subject).
15920 You may add any other header to a Pattern by
15921 using the &quot;eXtraHdr&quot; command to specify a different
15922 message header line; and then the Add or Change command to fill in
15923 a pattern for the new header line, just like you would for a standard header.
15925 A technicality: Since comma is the character used to separate multiple
15926 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15927 you want to include a literal comma in the field.
15928 In other words, if you type a backslash followed by a comma it will
15929 be interpreted as a comma by Alpine, instead of as a separator between
15930 pattern values.
15931 All other backslashes are literal backslashes and should not be escaped.
15933 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15934 for more information on Patterns.
15936 Look <A HREF="h_edit_nav_cmds">here</A>
15937 to see the available Editing and Navigation commands.
15939 &lt;End of help on this topic&gt;
15940 </BODY>
15941 </HTML>
15942 ======= h_config_other_topat =======
15943 <HTML>
15944 <HEAD>
15945 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15946 </HEAD>
15947 <BODY>
15948 <H1>&quot;To:&quot; Pattern Explained</H1>
15950 For some of the OTHER RULES actions, there is no message that is being
15951 compared against.
15952 If that is the case, then only the Current Folder Type is checked.
15953 In particular, this To pattern is ignored.
15954 Actions that fall into this category include both
15955 Sort Order and Index Format.
15957 A technicality: Since comma is the character used to separate multiple
15958 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15959 you want to include a literal comma in the field.
15960 In other words, if you type a backslash followed by a comma it will
15961 be interpreted as a comma by Alpine, instead of as a separator between
15962 pattern values.
15963 All other backslashes are literal backslashes and should not be escaped.
15965 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15966 for more information on Patterns.
15968 Look <A HREF="h_edit_nav_cmds">here</A>
15969 to see the available Editing and Navigation commands.
15971 &lt;End of help on this topic&gt;
15972 </BODY>
15973 </HTML>
15974 ======= h_config_filt_topat =======
15975 <HTML>
15976 <HEAD>
15977 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15978 </HEAD>
15979 <BODY>
15980 <H1>&quot;To:&quot; Pattern Explained</H1>
15982 Any text you enter as the &quot;To pattern&quot;
15983 will be compared to the recipients from the To: line of
15984 messages when Alpine opens folders.
15985 When the text you entered matches
15986 all or part of the To: line of a message, then the Filter Action you have
15987 specified will be carried out.
15988 (Any other non-blank parts of the Pattern must match, too.)
15991 You may enter a complete email address, part of an address, or a
15992 list of addresses or partial addresses.
15993 For example:
15996 <PRE>
15997  To pattern = friend@public.com
15998  To pattern = rated.net
15999  To pattern = xxx@adults.com
16000               admin@msn.com
16001               fool@motleyfool.com
16002 </PRE>
16005 Each of those are valid To patterns.
16008 Messages match those patterns if any of the
16009 addresses in the To: line of the message contains the pattern.
16010 If the pattern is a list of patterns
16011 (like the last example above) then it is a match if any of the patterns in
16012 the list match any of the addresses in the To: line.
16013 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16014 present for a match.
16015 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16016 address2 must be present.
16017 That is exactly what using a list does.)
16020 Some messages may be &quot;bounced&quot; to you, and will
16021 have a &quot;Resent-To:&quot; header line.
16022 If the message contains a Resent-To: line
16023 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16024 Alpine will look for
16025 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16026 the original To: line.
16029 When entering a pattern, you may choose an address from your address book
16030 with the &quot;T&quot; command.
16033 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16034 &quot;!&quot; &quot;toggle NOT&quot; command.
16035 This changes the meaning of the To pattern so that it has the opposite meaning.
16036 It will be considered a match if there are no matches between the
16037 addresses in the To: line and the list of To patterns.
16039 Don't make the mistake of putting the &quot;!&quot; in the data field for
16040 the pattern.
16041 For example, if you type the characters &quot;!frizzle&quot; into the To
16042 pattern, the pattern will look like:
16044 <PRE>
16045  To pattern = !frizzle
16046 </PRE>
16048 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16049 In order to match messages that do not have &quot;frizzle&quot; in
16050 their To field, first type the characters &quot;frizzle&quot; followed
16051 by carriage return for the value of the To pattern, then negate it
16052 by typing the &quot;!&quot; command.
16053 It should end up looking like
16055 <PRE>
16056  ! To pattern = frizzle
16057 </PRE>
16060 You are not limited to using the six standard header patterns that are
16061 normally shown (To, From, Sender, Cc, News, and Subject).
16062 You may add any other header to a Pattern by
16063 using the &quot;eXtraHdr&quot; command to specify a different
16064 message header line; and then the Add or Change command to fill in
16065 a pattern for the new header line, just like you would for a standard header.
16067 A technicality: Since comma is the character used to separate multiple
16068 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16069 you want to include a literal comma in the field.
16070 In other words, if you type a backslash followed by a comma it will
16071 be interpreted as a comma by Alpine, instead of as a separator between
16072 pattern values.
16073 All other backslashes are literal backslashes and should not be escaped.
16075 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16076 for more information on Patterns.
16078 Look <A HREF="h_edit_nav_cmds">here</A>
16079 to see the available Editing and Navigation commands.
16081 &lt;End of help on this topic&gt;
16082 </BODY>
16083 </HTML>
16084 ======= h_config_role_topat =======
16085 <HTML>
16086 <HEAD>
16087 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16088 </HEAD>
16089 <BODY>
16090 <H1>&quot;To:&quot; Pattern Explained</H1>
16092 Any text you enter as the &quot;To pattern&quot;
16093 will be compared to the recipients from the To: line of
16094 the message being replied to or forwarded.
16095 (Any other non-blank parts of the Pattern must match, too.)
16096 In the case of the Compose command, this pattern and the other header
16097 patterns are ignored.
16100 You may enter a complete email address, part of an address, or a
16101 list of addresses or partial addresses.
16102 For example:
16105 <PRE>
16106  To pattern = friend@public.com
16107  To pattern = rated.net
16108  To pattern = xxx@adults.com
16109               admin@msn.com
16110               fool@motleyfool.com
16111 </PRE>
16114 Each of those are valid To patterns.
16117 Messages match those patterns if any of the
16118 addresses in the To: line of the message contains the pattern.
16119 If the pattern is a list of patterns
16120 (like the last example above) then it is a match if any of the patterns in
16121 the list match any of the addresses in the To: line.
16122 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16123 present for a match.
16124 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16125 address2 must be present.
16126 That is exactly what using a list does.)
16129 Some messages may be &quot;bounced&quot; to you, and will
16130 have a &quot;Resent-To:&quot; header line.
16131 If the message contains a Resent-To: line
16132 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16133 Alpine will look for
16134 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16135 the original To: line.
16138 When entering a pattern, you may choose an address from your address book
16139 with the &quot;T&quot; command.
16142 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16143 &quot;!&quot; &quot;toggle NOT&quot; command.
16144 This changes the meaning of the To pattern so that it has the opposite meaning.
16145 It will be considered a match if there are no matches between the
16146 addresses in the To: line and the list of To patterns.
16148 Don't make the mistake of putting the &quot;!&quot; in the data field for
16149 the pattern.
16150 For example, if you type the characters &quot;!frizzle&quot; into the To
16151 pattern, the pattern will look like:
16153 <PRE>
16154  To pattern = !frizzle
16155 </PRE>
16157 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16158 In order to match messages that do not have &quot;frizzle&quot; in
16159 their To field, first type the characters &quot;frizzle&quot; followed
16160 by carriage return for the value of the To pattern, then negate it
16161 by typing the &quot;!&quot; command.
16162 It should end up looking like
16164 <PRE>
16165  ! To pattern = frizzle
16166 </PRE>
16169 You are not limited to using the six standard header patterns that are
16170 normally shown (To, From, Sender, Cc, News, and Subject).
16171 You may add any other header to a Pattern by
16172 using the &quot;eXtraHdr&quot; command to specify a different
16173 message header line; and then the Add or Change command to fill in
16174 a pattern for the new header line, just like you would for a standard header.
16176 A technicality: Since comma is the character used to separate multiple
16177 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16178 you want to include a literal comma in the field.
16179 In other words, if you type a backslash followed by a comma it will
16180 be interpreted as a comma by Alpine, instead of as a separator between
16181 pattern values.
16182 All other backslashes are literal backslashes and should not be escaped.
16184 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16185 for more information on Patterns.
16187 Look <A HREF="h_edit_nav_cmds">here</A>
16188 to see the available Editing and Navigation commands.
16190 &lt;End of help on this topic&gt;
16191 </BODY>
16192 </HTML>
16193 ======= h_config_role_frompat =======
16194 <HTML>
16195 <HEAD>
16196 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
16197 </HEAD>
16198 <BODY>
16199 <H1>&quot;From:&quot; Pattern Explained</H1>
16201 This is just like the &quot;To pattern&quot; except that it is compared with
16202 the address in the From: line of the message
16203 instead of the addresses from the To: line.
16204 See the help for the To pattern for more information on header patterns.
16206 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16207 for more information on Patterns.
16209 Look <A HREF="h_edit_nav_cmds">here</A>
16210 to see the available Editing and Navigation commands.
16212 &lt;End of help on this topic&gt;
16213 </BODY>
16214 </HTML>
16215 ======= h_config_role_senderpat =======
16216 <HTML>
16217 <HEAD>
16218 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
16219 </HEAD>
16220 <BODY>
16221 <H1>&quot;Sender:&quot; Pattern Explained</H1>
16223 This is just like the &quot;To pattern&quot; except that it is compared with
16224 the address from the Sender: line of the message
16225 instead of the addresses from the To: line.
16226 See the help for the To pattern for more information on header patterns.
16228 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16229 for more information on Patterns.
16231 Look <A HREF="h_edit_nav_cmds">here</A>
16232 to see the available Editing and Navigation commands.
16234 &lt;End of help on this topic&gt;
16235 </BODY>
16236 </HTML>
16237 ======= h_config_role_ccpat =======
16238 <HTML>
16239 <HEAD>
16240 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
16241 </HEAD>
16242 <BODY>
16243 <H1>&quot;Cc:&quot; Pattern Explained</H1>
16245 This is just like the &quot;To pattern&quot; except that it is compared with
16246 the addresses from the Cc: line of the message
16247 instead of the addresses from the To: line.
16248 See the help for the To pattern for more information on header patterns.
16250 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16251 for more information on Patterns.
16253 Look <A HREF="h_edit_nav_cmds">here</A>
16254 to see the available Editing and Navigation commands.
16256 &lt;End of help on this topic&gt;
16257 </BODY>
16258 </HTML>
16259 ======= h_config_role_recippat =======
16260 <HTML>
16261 <HEAD>
16262 <TITLE>Recipient Pattern Explained</TITLE>
16263 </HEAD>
16264 <BODY>
16265 <H1>Recipient Pattern Explained</H1>
16267 This is just like the &quot;To pattern&quot; except that it is compared with
16268 the addresses from both the To: line and the Cc: line of the
16269 message instead of just the addresses from the To: line.
16270 In other words, it is considered a match if the pattern matches
16271 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
16272 in the Cc: line.
16273 (Notice that defining the Recipient pattern does not have the same
16274 effect as defining both the To and Cc patterns.
16275 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
16276 It is equivalent to having two different rules;
16277 one with a To pattern and the other with the same Cc pattern.)
16279 A technicality: Since comma is the character used to separate multiple
16280 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16281 you want to include a literal comma in the field.
16282 In other words, if you type a backslash followed by a comma it will
16283 be interpreted as a comma by Alpine, instead of as a separator between
16284 pattern values.
16285 All other backslashes are literal backslashes and should not be escaped.
16287 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16288 for more information on Patterns.
16290 Look <A HREF="h_edit_nav_cmds">here</A>
16291 to see the available Editing and Navigation commands.
16293 &lt;End of help on this topic&gt;
16294 </BODY>
16295 </HTML>
16296 ======= h_config_role_particpat =======
16297 <HTML>
16298 <HEAD>
16299 <TITLE>Participant Pattern Explained</TITLE>
16300 </HEAD>
16301 <BODY>
16302 <H1>Participant Pattern Explained</H1>
16304 This is just like the &quot;To pattern&quot; except that it is compared with
16305 the addresses from the From: line, the To: line, and the Cc: line of the
16306 message instead of just the addresses from the To: line.
16307 In other words, it is considered a match if the pattern matches
16308 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
16309 in the To: line, <EM>OR</EM> an address in the Cc: line.
16310 (Notice that defining the Participant pattern does not have the same
16311 effect as defining all of the From, To, and Cc patterns.
16312 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
16313 From <EM>AND</EM> To <EM>AND</EM> Cc.
16314 It is equivalent to having three different rules;
16315 one with a From pattern, another with the same To pattern, and a third with
16316 the same Cc pattern.)
16318 A technicality: Since comma is the character used to separate multiple
16319 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16320 you want to include a literal comma in the field.
16321 In other words, if you type a backslash followed by a comma it will
16322 be interpreted as a comma by Alpine, instead of as a separator between
16323 pattern values.
16324 All other backslashes are literal backslashes and should not be escaped.
16326 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16327 for more information on Patterns.
16329 Look <A HREF="h_edit_nav_cmds">here</A>
16330 to see the available Editing and Navigation commands.
16332 &lt;End of help on this topic&gt;
16333 </BODY>
16334 </HTML>
16335 ======= h_config_role_newspat =======
16336 <HTML>
16337 <HEAD>
16338 <TITLE>News Pattern Explained</TITLE>
16339 </HEAD>
16340 <BODY>
16341 <H1>News Pattern Explained</H1>
16343 If this pattern is non-blank, then for this rule to be considered a
16344 match, at least one of the newsgroups from
16345 the Newsgroups line of the message must match this pattern.
16346 If this pattern is a list of patterns, then at least one of the
16347 newsgroups must match at least one of the patterns.
16348 (Any other non-blank parts of the Pattern must match, too.)
16350 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
16351 &quot;!&quot; &quot;toggle NOT&quot; command.
16352 This changes the meaning of the News pattern so that it has the opposite meaning.
16353 It will be considered a match if there are no matches between the
16354 addresses in the Newsgroups: line and the list of News patterns.
16356 Don't make the mistake of putting the &quot;!&quot; in the data field for
16357 the pattern.
16358 For example, if you type the characters &quot;!frizzle&quot; into the News
16359 pattern, the pattern will look like:
16361 <PRE>
16362  News pattern = !frizzle
16363 </PRE>
16365 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16366 In order to match messages that do not have &quot;frizzle&quot; in
16367 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
16368 by carriage return for the value of the News pattern, then negate it
16369 by typing the &quot;!&quot; command.
16370 It should end up looking like
16372 <PRE>
16373  ! News pattern = frizzle
16374 </PRE>
16376 A technicality: Since comma is the character used to separate multiple
16377 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16378 you want to include a literal comma in the field.
16379 In other words, if you type a backslash followed by a comma it will
16380 be interpreted as a comma by Alpine, instead of as a separator between
16381 pattern values.
16382 All other backslashes are literal backslashes and should not be escaped.
16385 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16386 for more information on Patterns.
16388 Look <A HREF="h_edit_nav_cmds">here</A>
16389 to see the available Editing and Navigation commands.
16391 &lt;End of help on this topic&gt;
16392 </BODY>
16393 </HTML>
16394 ======= h_config_role_subjpat =======
16395 <HTML>
16396 <HEAD>
16397 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
16398 </HEAD>
16399 <BODY>
16400 <H1>&quot;Subject:&quot; Pattern Explained</H1>
16402 This is similar to the other parts of the Pattern.
16403 It is compared with
16404 the contents from the Subject of the message.
16406 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16407 for more information on Patterns.
16409 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
16410 &quot;!&quot; &quot;toggle NOT&quot; command.
16411 This changes the meaning of the Subject pattern so that it has the opposite meaning.
16412 It will be considered a match if there are no matches between the
16413 text in the Subject: line and the list of Subject patterns.
16416 If you wish to have a header pattern that is not one of the six standard
16417 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
16419 A technicality: Since comma is the character used to separate multiple
16420 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16421 you want to include a literal comma in the field.
16422 In other words, if you type a backslash followed by a comma it will
16423 be interpreted as a comma by Alpine, instead of as a separator between
16424 pattern values.
16425 All other backslashes are literal backslashes and should not be escaped.
16427 Look <A HREF="h_edit_nav_cmds">here</A>
16428 to see the available Editing and Navigation commands.
16430 &lt;End of help on this topic&gt;
16431 </BODY>
16432 </HTML>
16433 ======= h_config_role_alltextpat =======
16434 <HTML>
16435 <HEAD>
16436 <TITLE>AllText Pattern Explained</TITLE>
16437 </HEAD>
16438 <BODY>
16439 <H1>AllText Pattern Explained</H1>
16441 This is similar to the header patterns.
16442 Instead of comparing with text in a particular header field it 
16443 is compared with all of the text in the message header and body.
16445 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
16446 &quot;!&quot; &quot;toggle NOT&quot; command.
16447 This changes the meaning of the AllText pattern so that it has the opposite meaning.
16448 It will be considered a match if there are no matches between the
16449 text of the message and the list of AllText patterns.
16451 Don't make the mistake of putting the &quot;!&quot; in the data field for
16452 the pattern.
16453 For example, if you type the characters &quot;!frizzle&quot; into the AllText
16454 pattern, the pattern will look like:
16456 <PRE>
16457  AllText pattern = !frizzle
16458 </PRE>
16460 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16461 In order to match messages that do not have &quot;frizzle&quot; in
16462 the text of the message, first type the characters &quot;frizzle&quot; followed
16463 by carriage return for the value of the AllText pattern, then negate it
16464 by typing the &quot;!&quot; command.
16465 It should end up looking like
16467 <PRE>
16468  ! AllText pattern = frizzle
16469 </PRE>
16471 It is possible that you may notice degraded performance when using
16472 AllText Patterns.
16474 A technicality: Since comma is the character used to separate multiple
16475 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16476 you want to include a literal comma in the field.
16477 In other words, if you type a backslash followed by a comma it will
16478 be interpreted as a comma by Alpine, instead of as a separator between
16479 pattern values.
16480 All other backslashes are literal backslashes and should not be escaped.
16482 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16483 for more information on Patterns.
16485 Look <A HREF="h_edit_nav_cmds">here</A>
16486 to see the available Editing and Navigation commands.
16488 &lt;End of help on this topic&gt;
16489 </BODY>
16490 </HTML>
16491 ======= h_config_role_bodytextpat =======
16492 <HTML>
16493 <HEAD>
16494 <TITLE>BodyText Pattern Explained</TITLE>
16495 </HEAD>
16496 <BODY>
16497 <H1>BodyText Pattern Explained</H1>
16499 This is similar to the header patterns.
16500 Instead of comparing with text in a particular header field it 
16501 is compared with all of the text in the message body.
16503 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
16504 &quot;!&quot; &quot;toggle NOT&quot; command.
16505 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
16506 It will be considered a match if there are no matches between the
16507 text of the body of the message and the list of BodyText patterns.
16509 Don't make the mistake of putting the &quot;!&quot; in the data field for
16510 the pattern.
16511 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
16512 pattern, the pattern will look like:
16514 <PRE>
16515  BdyText pattern = !frizzle
16516 </PRE>
16518 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16519 In order to match messages that do not have &quot;frizzle&quot; in
16520 their BodyText, first type the characters &quot;frizzle&quot; followed
16521 by carriage return for the value of the BodyText pattern, then negate it
16522 by typing the &quot;!&quot; command.
16523 It should end up looking like
16525 <PRE>
16526  ! BodyText pattern = frizzle
16527 </PRE>
16529 It is possible that you may notice degraded performance when using
16530 BodyText Patterns.
16532 A technicality: Since comma is the character used to separate multiple
16533 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16534 you want to include a literal comma in the field.
16535 In other words, if you type a backslash followed by a comma it will
16536 be interpreted as a comma by Alpine, instead of as a separator between
16537 pattern values.
16538 All other backslashes are literal backslashes and should not be escaped.
16540 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16541 for more information on Patterns.
16543 Look <A HREF="h_edit_nav_cmds">here</A>
16544 to see the available Editing and Navigation commands.
16546 &lt;End of help on this topic&gt;
16547 </BODY>
16548 </HTML>
16549 ======= h_config_role_charsetpat =======
16550 <HTML>
16551 <HEAD>
16552 <TITLE>Character Set Pattern Explained</TITLE>
16553 </HEAD>
16554 <BODY>
16555 <H1>Character Set Pattern Explained</H1>
16557 A message may use one or more character sets.
16558 This part of the Pattern matches messages that make use of
16559 certain specified character sets.
16560 It will be considered a match if a message uses any of the character
16561 sets in the list you give here.
16564 When filling in a value for this field, you may use
16565 the &quot;T&quot; command, which presents you with a large list of
16566 possible character sets to choose from.
16567 You may also just type in the name of a character set, and it need not
16568 be one that Alpine knows about.
16571 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
16572 GB2312) you may also use some shorthand names that Alpine provides.
16573 These names are more understandable shorthand names for sets of 
16574 character set names.
16575 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
16576 Selecting one of these shorthand names is equivalent to selecting all of
16577 the character sets that make up the set.
16578 You can see all of these shorthand names and the lists of character sets
16579 they stand for by typing the &quot;T&quot; command.
16582 For the purposes of this Pattern,
16583 Alpine will search through a message for all of the text parts and
16584 collect the character sets declared for each part.
16585 It will also look in the Subject line for a character set used there.
16586 Alpine does not actually look at the text of the message or the text
16587 of the Subject to determine if a declared character set is actually
16588 used, it looks only at the declarations themselves in the MIME part headers
16589 and in the Subject.
16592 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
16593 &quot;!&quot; &quot;toggle NOT&quot; command.
16594 This changes the meaning of the Character Set pattern so that
16595 it has the opposite meaning.
16596 It will be considered a match if none of the character sets in the
16597 list are used in a message.
16599 Don't make the mistake of putting the &quot;!&quot; in the data field for
16600 the pattern.
16601 For example, if you type the characters &quot;!GB2312&quot; into the
16602 Character Set pattern, the pattern will look like:
16604 <PRE>
16605  Charset pattern = !GB2312
16606 </PRE>
16608 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
16609 In order to match messages that do not have the
16610 character set &quot;GB2312&quot;
16611 set, first type the characters &quot;GB2312&quot; followed
16612 by carriage return for the value of the Character Set pattern, then negate it
16613 by typing the &quot;!&quot; command.
16614 It should end up looking like
16616 <PRE>
16617  ! Charset pattern = GB2312
16618 </PRE>
16620 A technicality: Since comma is the character used to separate multiple
16621 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16622 you want to include a literal comma in the field.
16623 In other words, if you type a backslash followed by a comma it will
16624 be interpreted as a comma by Alpine, instead of as a separator between
16625 pattern values.
16626 All other backslashes are literal backslashes and should not be escaped.
16628 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16629 for more information on Patterns.
16631 Look <A HREF="h_edit_nav_cmds">here</A>
16632 to see the available Editing and Navigation commands.
16634 &lt;End of help on this topic&gt;
16635 </BODY>
16636 </HTML>
16637 ======= h_config_role_keywordpat =======
16638 <HTML>
16639 <HEAD>
16640 <TITLE>Keyword Pattern Explained</TITLE>
16641 </HEAD>
16642 <BODY>
16643 <H1>Keyword Pattern Explained</H1>
16645 A folder may have user-defined keywords.
16646 These are similar to the Important flag, which the user may set using the
16647 Flag command.
16648 The difference is that the Important flag is always present for each folder.
16649 User-defined keywords are picked by the user.
16650 You may add new keywords by defining them in the
16651 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
16652 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
16653 the Flag command may be used to set or clear the keyword on individual messages.
16654 If you have given a keyword a nickname when configuring it,
16655 that nickname may be used instead of the actual keyword.
16658 When filling in a value for this field, it may be easiest to use
16659 the &quot;T&quot; command, which presents you with a list of the keywords
16660 you have defined to choose from.
16663 This part of the Pattern matches messages with certain keywords set.
16664 It will be considered a match if a message has any of the keywords in the
16665 list set.
16666 A keyword that you have not defined using the
16667 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16668 will not be a match.
16671 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
16672 &quot;!&quot; &quot;toggle NOT&quot; command.
16673 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
16674 It will be considered a match if none of the keywords in the list are set
16675 for a message.
16676 A keyword that you have not defined using the
16677 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16678 will not be a match, so a <EM>NOT</EM> of that keyword does match.
16680 Don't make the mistake of putting the &quot;!&quot; in the data field for
16681 the pattern.
16682 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
16683 pattern, the pattern will look like:
16685 <PRE>
16686  Keyword pattern = !frizzle
16687 </PRE>
16689 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16690 In order to match messages that do not have the keyword &quot;frizzle&quot;
16691 set, first type the characters &quot;frizzle&quot; followed
16692 by carriage return for the value of the Keyword pattern, then negate it
16693 by typing the &quot;!&quot; command.
16694 It should end up looking like
16696 <PRE>
16697  ! Keyword pattern = frizzle
16698 </PRE>
16700 A technicality: Since comma is the character used to separate multiple
16701 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16702 you want to include a literal comma in the field.
16703 In other words, if you type a backslash followed by a comma it will
16704 be interpreted as a comma by Alpine, instead of as a separator between
16705 pattern values.
16706 All other backslashes are literal backslashes and should not be escaped.
16708 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16709 for more information on Patterns.
16711 Look <A HREF="h_edit_nav_cmds">here</A>
16712 to see the available Editing and Navigation commands.
16714 &lt;End of help on this topic&gt;
16715 </BODY>
16716 </HTML>
16717 ======= h_config_role_arbpat =======
16718 <HTML>
16719 <HEAD>
16720 <TITLE>Extra Header Patterns Explained</TITLE>
16721 </HEAD>
16722 <BODY>
16723 <H1>Extra Header Patterns Explained</H1>
16725 The header patterns that come after the Participant pattern but before the 
16726 AllText pattern are extra header patterns that you have added to a rule's
16727 Pattern. These are just like the other header patterns except that
16728 the contents of the particular header listed on the left hand side will
16729 be used for comparisons.
16731 The &quot;eXtraHdr&quot; command may be used to add more of these
16732 header patterns to the rule you are editing.
16734 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
16735 extra header pattern from the rule you are editing.
16737 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
16738 &quot;!&quot; &quot;toggle NOT&quot; command.
16739 This changes the meaning of the pattern so that it has the opposite meaning.
16740 It will be considered a match if there are no matches between the
16741 text in the header line and the list of patterns.
16743 Don't make the mistake of putting the &quot;!&quot; in the data field for
16744 the pattern.
16745 For example, if you type the characters &quot;!frizzle&quot; into the
16746 pattern, the pattern will look like:
16748 <PRE>
16749  Xyz pattern = !frizzle
16750 </PRE>
16752 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16753 In order to match messages that do not have &quot;frizzle&quot; in
16754 their Xyz field, first type the characters &quot;frizzle&quot; followed
16755 by carriage return for the value of the pattern, then negate it
16756 by typing the &quot;!&quot; command.
16757 It should end up looking like
16759 <PRE>
16760  ! Xyz pattern = frizzle
16761 </PRE>
16764 A technicality: Since comma is the character used to separate multiple
16765 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16766 you want to include a literal comma in the field.
16767 In other words, if you type a backslash followed by a comma it will
16768 be interpreted as a comma by Alpine, instead of as a separator between
16769 pattern values.
16770 All other backslashes are literal backslashes and should not be escaped.
16772 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16773 for more information on Patterns.
16775 Look <A HREF="h_edit_nav_cmds">here</A>
16776 to see the available Editing and Navigation commands.
16778 &lt;End of help on this topic&gt;
16779 </BODY>
16780 </HTML>
16781 ======= h_config_role_cat_cmd =======
16782 <HTML>
16783 <HEAD>
16784 <TITLE>Categorizer Command Explained</TITLE>
16785 </HEAD>
16786 <BODY>
16787 <H1>Categorizer Command Explained</H1>
16789 This is a command that is run with its standard input set to the message
16790 being checked and its standard output discarded.
16791 The full directory path should be specified.
16792 The command will be run and then its exit status will be checked against
16793 the Exit Status Interval, which defaults to just the value zero.
16794 If the exit status of the command falls in the interval, it is considered
16795 a match, otherwise it is not a match.
16798 This option may actually be a list of commands.
16799 The first one that exists and is executable is used.
16800 That makes it possible to use the same configuration with Unix Alpine and
16801 PC-Alpine.
16804 If none of the commands in the list exists and is executable then the rule
16805 is <EM>not</EM> a match.
16806 If it is possible that the command may not exist, you should be careful
16807 to structure your rules so that nothing destructive
16808 happens when the command does not exist.
16809 For example, you might have a filter that filters away spam when there is
16810 a match but does nothing when there is not a match.
16811 That would cause no harm if the command didn't exist.
16812 However, if you have a filter that filters away spam when there is not
16813 a match and keeps it when there is a match, that would filter everything
16814 if the categorizer command didn't exist.
16816 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
16817 setup for the bogofilter filter.
16820 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16821 for more information on Patterns.
16823 Look <A HREF="h_edit_nav_cmds">here</A>
16824 to see the available Editing and Navigation commands.
16826 &lt;End of help on this topic&gt;
16827 </BODY>
16828 </HTML>
16829 ======= h_config_role_cat_cmd_example =======
16830 <HTML>
16831 <HEAD>
16832 <TITLE>Categorizer Command Example</TITLE>
16833 </HEAD>
16834 <BODY>
16835 <H1>Categorizer Command Example</H1>
16837 Bogofilter
16838 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
16839 is a mail filter that attempts to classify mail as spam or
16840 non-spam using statistical analysis of the message content.
16841 When run with no arguments and a message as standard input, it exits with
16842 exit status 0 if it thinks a message is spam and 1 if it thinks
16843 it is not spam.
16844 To use bogofilter as your Categorizer Command you would simply set Command to
16845 the pathname of the bogofilter program.
16846 For example,
16848 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
16850 Exit status of zero is what you are interested in, so you'd set the
16851 Exit Status Interval to
16853 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
16856 In order to prevent downloading an entire huge message to check for spam, you
16857 might want to set the Character Limit to a few thousand characters (the
16858 assumption being that the spam will reveal itself in those characters)
16860 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
16863 You would probably use bogofilter in an Alpine Filter Rule, and have the action
16864 be to move the message to a spam folder.
16865 It would usually be wise to also check the &quot;Message is Recent&quot;
16866 part of the rule so that messages are only checked when they first arrive,
16867 and to restrict the Current Folder Type to just your INBOX.
16868 The reason for checking only Recent messages is to save the time it takes
16869 to run bogofilter on each message.
16870 As an experiment, you might start out by using this in an Indexcolor Rule
16871 instead of a Filter Rule.
16872 In that case, you probably wouldn't check the Recent checkbox.
16874 The use described above assumes that you are somehow maintaining bogofilter's
16875 database of words associated with spam and non-spam messages.
16876 One way to start your database would be to select a bunch of spam messages
16877 in Alpine (you might Save spam messages to a special folder or use Alpine's
16878 Select command to select several) and then Apply
16879 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
16880 a pipe command to the spam messages.
16881 For example, you could have a shell script or an alias
16882 called <EM>this_is_spam</EM>, which would simply be the command
16884 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
16887 It is probably best to use the pipe command's Raw Text, With Delimiter,
16888 and Free Output options,
16889 which are at the bottom of the screen when you type the pipe command.
16890 That's because bogofilter expects the raw message as input, and uses
16891 the Delimiters to tell when a new message starts.
16892 You would not need to use a separate pipe for each message, because
16893 bogofilter can handle multiple messages at once.
16895 Similarly, you would select a group of non-spam messages
16896 and run them through a <EM>this_is_nonspam</EM> script
16897 that was something like
16899 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
16902 For the more adventurous, the next step might be to automate the upkeep of
16903 the bogofilter database.
16904 It might make more sense to have bogofilter be part of the delivery process,
16905 but it is also possible to do it entirely from within Alpine.
16906 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
16907 the &quot;-u&quot; argument will cause bogofilter to update the database.
16909 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16911 You'd want a couple more aliases or shell scripts called something like
16912 <EM>change_to_spam</EM>
16914 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
16917 <EM>change_to_nonspam</EM>
16919 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
16921 When you run across a message in your INBOX that should have been
16922 classified as spam you would pipe it to the change_to_spam script, and
16923 when you run across a message in your spam folder that should have been
16924 left in your INBOX you would pipe it through change_to_nonspam.
16927 There is a technical problem with this approach.
16928 Alpine may check your filters more than once.
16929 In particular, every time you start Alpine the filters will be checked for
16930 each message.
16931 Also, if you have any filters that depend on message state (New, Deleted, etc.)
16932 then Alpine will recheck for matches in messages that have changed state
16933 at the time you close the folder and before expunging.
16934 This is usually ok.
16935 However, in this case it is a problem because the command
16937 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
16939 has the side effect of updating the database.
16940 So you run the risk of updating the database multiple times for a single
16941 message instead of updating it just once per message.
16942 There are some ways to work around this problem.
16943 What you need is a way to mark the message after you have run the filter.
16944 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
16945 Besides having the filter move the message to a spam folder, also have it
16946 set the Bogo keyword.
16947 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
16948 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
16949 This rule can only set the Bogo keyword for the messages that it matches.
16950 You will also need to add a second rule right after this one that
16951 matches all the messages that don't have the Bogo keyword set
16952 (put the keyword in the Keyword pattern and toggle
16953 the Not with the ! command)
16954 and takes the action of setting it.
16955 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
16956 (and so it won't re-run the bogofilter command) if the keyword is already
16957 set.
16959 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
16960 on all messages that don't have the Bogo keyword set.
16961 This will have the side effect of inserting that message in the bogofilter
16962 database, match or not.
16963 If this rule matches (it is spam), the Bogo keyword will be set and
16964 the message will be moved to a spam folder.
16965 If it does not match, the
16966 following rule will mark the message by turning on the keyword.
16967 This second rule should be a non-terminating
16968 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
16969 rule so that it doesn't stop the filtering process before the rest of
16970 your rules are consulted.
16973 In summary, the first rule is something like
16974 <PRE>
16975   Nickname          = bogofilter -u rule
16976   Current Folder Type =
16977                (*) Specific
16978                    Folder = INBOX
16980   ! Keyword pattern = Bogo
16982   External Categorizer Commands =
16983        Command              = /usr/local/bin/bogofilter -u
16984        Exit Status Interval = (0,0)
16985        Character Limit      = <No Value Set: using "-1">  (optionally set this)
16987   Filter Action =
16988        (*) Move
16989            Folder = spam
16990   
16991   Set These Keywords   = Bogo
16992 </PRE>
16994 and the following rule is
16995 <PRE>
16996   Nickname          = Set Bogo Keyword
16997   Current Folder Type =
16998                (*) Specific
16999                    Folder = INBOX
17001   ! Keyword pattern = Bogo
17003   Filter Action =
17004        (*) Just Set Message Status
17006   Set These Keywords   = Bogo
17008   Features =
17009       [X]  dont-stop-even-if-rule-matches
17010 </PRE>
17012 If it is possible for you to insert bogofilter in the delivery process instead
17013 of having it called from Alpine you could prevent having to wait
17014 for the bogofilter processing while you read your mail.
17015 You would have bogofilter add a header to the message at the time of delivery
17016 that identified it as spam or nonspam.
17017 With this method, you could avoid using a Categorizer Command while running Alpine,
17018 and just match on the header instead.
17019 You might still want to use the scripts mentioned above to initialize the
17020 database or to re-classify wrongly classified messages.
17023 Finally, it isn't for the faint-hearted,
17024 but it is also possible to run bogofilter from PC-Alpine.
17025 You can install Cygwin from
17026 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
17027 then compile bogofilter in the cygwin environment, and run it from
17028 within PC-Alpine.
17029 You would end up with a Categorizer command that looked something like
17031 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
17033 Note that the &quot;.exe&quot; extension is explicit,
17034 and that the bogofilter.exe executable should be in the same directory
17035 as cygwin1.dll.
17038 &lt;End of help on this topic&gt;
17039 </BODY>
17040 </HTML>
17041 ======= h_config_role_cat_status =======
17042 <HTML>
17043 <HEAD>
17044 <TITLE>Exit Status Interval Explained</TITLE>
17045 </HEAD>
17046 <BODY>
17047 <H1>Exit Status Interval Explained</H1>
17049 The categorizer command is run and the result is the exit status of
17050 that command.
17051 If that exit status falls in the Exit Status Interval
17052 then it is considered a match, otherwise it is not a match.
17053 Of course for the entire rule to match, it must also be checked against
17054 the other defined parts of the Pattern.
17056 The Exit Status Interval defaults to the single value 0 (zero).
17057 If you define it, it should be set to something like:
17059 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
17061 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
17062 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
17063 positive and negative integers.
17065 Actually, a list of intervals may be used if you wish.
17066 A list would look like
17068 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
17070 When there is an Exit Status Interval defined, it is a match if the exit status
17071 of the categorizer command is contained in any of the intervals.
17072 The intervals include both endpoints.
17074 The default interval is
17076 <CENTER><SAMP>(0,0)</SAMP></CENTER>
17078 and it matches only if the command exits with exit status equal to zero.
17081 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17082 for more information on Patterns.
17084 Look <A HREF="h_edit_nav_cmds">here</A>
17085 to see the available Editing and Navigation commands.
17087 &lt;End of help on this topic&gt;
17088 </BODY>
17089 </HTML>
17090 ======= h_config_role_cat_limit =======
17091 <HTML>
17092 <HEAD>
17093 <TITLE>Character Limit Explained</TITLE>
17094 </HEAD>
17095 <BODY>
17096 <H1>Character Limit Explained</H1>
17098 Setting this option makes it possible to limit how much of the message
17099 is made available to the categorizer command as input.
17100 The default value (-1) means that the entire message is fed to the
17101 command.
17102 A value of 0 (zero) means that only the headers of the message are
17103 made available.
17104 A positive integer means that the headers plus that many characters from
17105 the body of the message are passed to the categorizer.
17108 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17109 for more information on Patterns.
17111 Look <A HREF="h_edit_nav_cmds">here</A>
17112 to see the available Editing and Navigation commands.
17114 &lt;End of help on this topic&gt;
17115 </BODY>
17116 </HTML>
17117 ======= h_config_role_age =======
17118 <HTML>
17119 <HEAD>
17120 <TITLE>Age Interval Explained</TITLE>
17121 </HEAD>
17122 <BODY>
17123 <H1>Age Interval Explained</H1>
17125 The Age Interval, if defined, is part of the Pattern.
17126 If you use this, it should be set to something like:
17128 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
17130 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
17131 The special value &quot;INF&quot; may be used for the max value.
17132 It represents infinity.
17134 In rare cases it may be useful to use the more general form of the value,
17135 which is a comma-separated list of intervals.
17136 It would look something like:
17138 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
17140 When there is an Age Interval defined, it is a match if the age, in days, of
17141 the message is contained in the interval.
17142 The interval includes both endpoints.
17143 If the option is set to a list of intervals then it is a match if the
17144 age of the message is contained in any of the intervals.
17146 Even though this option is called Age, it isn't actually
17147 the <EM>age</EM> of the message.
17148 Instead, it is how many days ago the message arrived in one of your folders.
17149 If the current time is a little past midnight, then a message that arrived
17150 just before midnight arrived yesterday, even though the message is only
17151 a few minutes old.
17152 By default, the date being used is not the date in the Date
17153 header of the message.
17154 It is the date that the message arrived in one of your folders.
17155 When you Save a message from one folder to another that arrival date
17156 is preserved.
17157 If you would like to use the date in the Date header that is possible.
17158 Turn on the option
17159 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
17160 near the bottom of the rule definition.
17162 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
17163 The age interval
17165 <CENTER><SAMP>(2,2)</SAMP></CENTER>
17167 matches all messages that arrived on the day before yesterday.
17168 The interval
17170 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
17172 matches all messages that arrived at least 180 days before today.
17173 The interval
17175 <CENTER><SAMP>(0,1)</SAMP></CENTER>
17177 matches all messages that arrived today or yesterday.
17180 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17181 for more information on Patterns.
17183 Look <A HREF="h_edit_nav_cmds">here</A>
17184 to see the available Editing and Navigation commands.
17186 &lt;End of help on this topic&gt;
17187 </BODY>
17188 </HTML>
17189 ======= h_config_role_size =======
17190 <HTML>
17191 <HEAD>
17192 <TITLE>Size Interval Explained</TITLE>
17193 </HEAD>
17194 <BODY>
17195 <H1>Size Interval Explained</H1>
17197 The Size Interval, if defined, is part of the Pattern.
17198 If you use this, it should be set to something like:
17200 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
17202 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
17203 The special value &quot;INF&quot; may be used for the max value.
17204 It represents infinity.
17206 In rare cases it may be useful to use the more general form of the value,
17207 which is a comma-separated list of intervals.
17208 It would look something like:
17210 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
17212 When there is a Size Interval defined, it is a match if the size of
17213 the message is contained in the interval.
17214 The interval includes both endpoints.
17215 If the option is set to a list of intervals then it is a match if the
17216 size of the message is contained in any of the intervals.
17218 The size interval
17220 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
17222 matches all messages with sizes greater than or equal to 10000, and less
17223 than or equal to 50000.
17224 The interval
17226 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
17228 matches all messages with sizes greater than or equal to 100000.
17231 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17232 for more information on Patterns.
17234 Look <A HREF="h_edit_nav_cmds">here</A>
17235 to see the available Editing and Navigation commands.
17237 &lt;End of help on this topic&gt;
17238 </BODY>
17239 </HTML>
17240 ======= h_config_role_scorei =======
17241 <HTML>
17242 <HEAD>
17243 <TITLE>Score Interval Explained</TITLE>
17244 </HEAD>
17245 <BODY>
17246 <H1>Score Interval Explained</H1>
17248 The Score Interval, if defined, is part of the Pattern.
17249 If you use this, it should be set to something like:
17251 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
17253 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
17254 -32000 and 32000.
17255 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
17256 the min and max values.
17257 These represent negative and positive infinity.
17259 Actually, the value may be a list of intervals rather than just a
17260 single interval if that is useful.
17261 The elements of the list are separated by commas like:
17263 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
17265 When there is a Score Interval defined, it is a match if the score for
17266 the message is contained in any of the intervals.
17267 The intervals include both endpoints.
17268 The score for a message is calculated by looking at every scoring rule
17269 defined and adding up the Score Values for the rules that match the message.
17270 Scoring rules are created using the
17271 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
17274 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17275 for more information on Patterns.
17277 Look <A HREF="h_edit_nav_cmds">here</A>
17278 to see the available Editing and Navigation commands.
17280 &lt;End of help on this topic&gt;
17281 </BODY>
17282 </HTML>
17283 ======= h_config_role_fldr_type =======
17284 <HTML>
17285 <HEAD>
17286 <TITLE>Current Folder Type Explained</TITLE>
17287 </HEAD>
17288 <BODY>
17289 <H1>Current Folder Type Explained</H1>
17291 The Current Folder Type is part of the role's Pattern.
17292 It refers to the type of the currently open folder, which is the folder
17293 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
17294 In order for a role to be considered a match, the current folder must
17295 be of the type you set here.
17296 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17297 all what you might think.
17299 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
17300 example, then
17301 that role will only be a match if the current folder is a newsgroup and
17302 the rest of the Pattern matches.
17303 The value &quot;Specific&quot; may be used when you want to limit the match
17304 to a specific folder (not just a specific type of folder), or to a list of
17305 specific folders.
17307 In order to match a specific folder you Select the &quot;Specific&quot;
17308 button <EM>AND</EM> fill in
17309 the name (or list of names) of
17310 the folder in the &quot;Folder List&quot; field.
17311 If the current folder is any of the folders in the list, that is considered
17312 a match.
17313 The name of each folder in the list may be either &quot;INBOX&quot;,
17314 the technical specification
17315 of the folder (like what appears in your configuration file) or, if the
17316 folder is one of your incoming folders, it may be the nickname you've given
17317 the folder.
17318 Here are a couple samples of specific folder names:
17320 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17322 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17324 The easiest way to fill in the &quot;Folder List&quot; field is to use
17325 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
17326 highlighted, or to use the &quot;Take&quot; command with the configuration
17327 feature
17328 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
17329 turned on.
17330 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17331 Current Folder Type is set to &quot;Specific&quot;, and any value that
17332 &quot;Folder List&quot; has is ignored unless the type
17333 is set to &quot;Specific&quot;.
17335 When reading a newsgroup, there may be a performance penalty
17336 incurred when collecting the information necessary to check a Pattern.
17337 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17339 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17340 for more information on Patterns.
17342 Look <A HREF="h_edit_nav_cmds">here</A>
17343 to see the available Editing and Navigation commands.
17345 &lt;End of help on this topic&gt;
17346 </BODY>
17347 </HTML>
17348 ======= h_config_filt_rule_type =======
17349 <HTML>
17350 <HEAD>
17351 <TITLE>Filter Action Explained</TITLE>
17352 </HEAD>
17353 <BODY>
17354 <H1>Filter Action Explained</H1>
17356 The Filter Action specifies the action to be taken when the Pattern is a
17357 match.
17358 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
17359 &quot;Just Set Message Status&quot;.
17361 If it is set to &quot;Delete&quot;, then the message that matches the
17362 Pattern will be deleted from the open folder.
17364 If it is set to &quot;Move&quot;, then the name of the folder to which
17365 the matching message should be moved is given in the &quot;Folder List&quot; field on the
17366 next line of the screen.
17367 A list of folders separated by commas may be given, in which case the
17368 message will be copied to all of the folders in the list before it is
17369 deleted.
17371 If it is set to neither of those two values (it is set to the value
17372 labeled &quot;Just Set Message Status&quot;) then the message status
17373 setting will happen
17374 but the message will not be deleted or moved.
17376 If you are Moving a message you may also set Message Status if you wish.
17378 The easiest way to fill in the &quot;Folder List&quot; field is to use
17379 the T command that is available when the &quot;Folder List&quot; line is
17380 highlighted.
17381 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17382 Filter Action is set to &quot;Move&quot;, and any value that
17383 &quot;Folder List&quot; has is ignored unless the type
17384 is set to &quot;Move&quot;.
17386 There are a few tokens that may be used in the names in the Folder List.
17387 They are all related to the date on which the filtering is taking place.
17388 The tokens are words surrounded by underscores.
17389 For example, if you want your filter to move messages to a folder named
17390 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
17391 you could specify the folder as
17392 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
17393 which would result in a file named something like
17394 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
17396 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
17397 which would result in a file named something like
17398 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
17399 The available tokens are listed
17400 <A HREF="h_index_tokens">here</A>.
17402 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17403 for more information on Patterns.
17405 Look <A HREF="h_edit_nav_cmds">here</A>
17406 to see the available Editing and Navigation commands.
17408 &lt;End of help on this topic&gt;
17409 </BODY>
17410 </HTML>
17411 ======= h_config_score_fldr_type =======
17412 <HTML>
17413 <HEAD>
17414 <TITLE>Current Folder Type Explained</TITLE>
17415 </HEAD>
17416 <BODY>
17417 <H1>Current Folder Type Explained</H1>
17419 The Current Folder Type is part of the scoring rule's Pattern.
17420 It refers to the type of the folder that
17421 the message being scored is in.
17422 In order for a rule to be considered a match, the current folder must
17423 be of the type you set here.
17424 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17425 all what you might think.
17427 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17428 example, then
17429 that Pattern will only match if the current folder is a newsgroup and
17430 the rest of the Pattern matches.
17431 The value &quot;Specific&quot; may be used when you want to limit the match
17432 to a specific folder (not just a specific type of folder), or to a list of
17433 specific folders.
17435 In order to match a specific folder you Select the &quot;Specific&quot;
17436 button <EM>AND</EM> fill in
17437 the name (or list of names) of
17438 the folder in the &quot;Folder List&quot; field.
17439 If the current folder is any of the folders in the list, that is considered
17440 a match.
17441 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17442 of the folder (like what appears in your configuration file) or, if the
17443 folder is one of your incoming folders, it may be the nickname you've given
17444 the folder.
17445 Here are a couple samples of specific folder names:
17447 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17449 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17451 The easiest way to fill in the &quot;Folder List&quot; field is to use
17452 the T command that is available when the &quot;Folder List&quot; line is
17453 highlighted.
17454 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17455 Current Folder Type is set to &quot;Specific&quot;, and any value that
17456 &quot;Folder List&quot; has is ignored unless the type
17457 is set to &quot;Specific&quot;.
17459 When reading a newsgroup, there may be a performance penalty
17460 incurred when collecting the information necessary to check a Pattern.
17461 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17462 For example, if you have Index Line Coloring rules that have Score Intervals
17463 defined then the scores for all the visible messages will need to be calculated.
17464 If some of your Scoring rules have 
17465 a Current Folder Type of
17466 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
17467 screen to draw more slowly when in a newsgroup.
17469 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17470 for more information on Patterns.
17472 Look <A HREF="h_edit_nav_cmds">here</A>
17473 to see the available Editing and Navigation commands.
17475 &lt;End of help on this topic&gt;
17476 </BODY>
17477 </HTML>
17478 ======= h_config_other_fldr_type =======
17479 <HTML>
17480 <HEAD>
17481 <TITLE>Current Folder Type Explained</TITLE>
17482 </HEAD>
17483 <BODY>
17484 <H1>Current Folder Type Explained</H1>
17486 The Current Folder Type is part of the rule's Pattern.
17487 It refers to the type of the folder being viewed.
17488 In order for a rule to be considered a match, the current folder must
17489 be of the type you set here.
17490 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17491 all what you might think.
17493 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17494 example, then
17495 that Pattern will only match if the current folder is a newsgroup.
17496 The value &quot;Specific&quot; may be used when you want to limit the match
17497 to a specific folder (not just a specific type of folder), or to a list of
17498 specific folders.
17500 In order to match a specific folder you Select the &quot;Specific&quot;
17501 button <EM>AND</EM> fill in
17502 the name (or list of names) of
17503 the folder in the &quot;Folder List&quot; field.
17504 If the current folder is any of the folders in the list, that is considered
17505 a match.
17506 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17507 of the folder (like what appears in your configuration file) or, if the
17508 folder is one of your incoming folders, it may be the nickname you've given
17509 the folder.
17510 Here are a couple samples of specific folder names:
17512 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17514 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17516 The easiest way to fill in the &quot;Folder List&quot; field is to use
17517 the T command that is available when the &quot;Folder List&quot; line is
17518 highlighted.
17519 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17520 Current Folder Type is set to &quot;Specific&quot;, and any value that
17521 &quot;Folder List&quot; has is ignored unless the type
17522 is set to &quot;Specific&quot;.
17524 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17525 for more information on Patterns.
17527 Look <A HREF="h_edit_nav_cmds">here</A>
17528 to see the available Editing and Navigation commands.
17530 &lt;End of help on this topic&gt;
17531 </BODY>
17532 </HTML>
17533 ======= h_config_incol_fldr_type =======
17534 <HTML>
17535 <HEAD>
17536 <TITLE>Current Folder Type Explained</TITLE>
17537 </HEAD>
17538 <BODY>
17539 <H1>Current Folder Type Explained</H1>
17541 The Current Folder Type is part of the Line Coloring rule's Pattern.
17542 It refers to the type of the folder for which the MESSAGE INDEX is
17543 being viewed.
17544 In order for a rule to be considered a match, the current folder must
17545 be of the type you set here.
17546 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17547 all what you might think.
17549 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17550 example, then
17551 that Pattern will only match if the current folder is a newsgroup and
17552 the rest of the Pattern matches.
17553 The value &quot;Specific&quot; may be used when you want to limit the match
17554 to a specific folder (not just a specific type of folder), or to a list of
17555 specific folders.
17557 In order to match a specific folder you Select the &quot;Specific&quot;
17558 button <EM>AND</EM> fill in
17559 the name (or list of names) of
17560 the folder in the &quot;Folder List&quot; field.
17561 If the current folder is any of the folders in the list, that is considered
17562 a match.
17563 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17564 of the folder (like what appears in your configuration file) or, if the
17565 folder is one of your incoming folders, it may be the nickname you've given
17566 the folder.
17567 Here are a couple samples of specific folder names:
17569 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17571 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17573 The easiest way to fill in the &quot;Folder List&quot; field is to use
17574 the T command that is available when the &quot;Folder List&quot; line is
17575 highlighted.
17576 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17577 Current Folder Type is set to &quot;Specific&quot;, and any value that
17578 &quot;Folder List&quot; has is ignored unless the type
17579 is set to &quot;Specific&quot;.
17581 When reading a newsgroup, there may be a performance penalty
17582 incurred when collecting the information necessary to check a Pattern.
17583 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17584 For example, a rule with a non-Normal Index Line Color
17585 and a Current Folder Type of
17586 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
17587 screen to draw more slowly when in a newsgroup.
17589 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17590 for more information on Patterns.
17592 Look <A HREF="h_edit_nav_cmds">here</A>
17593 to see the available Editing and Navigation commands.
17595 &lt;End of help on this topic&gt;
17596 </BODY>
17597 </HTML>
17598 ======= h_config_filt_fldr_type =======
17599 <HTML>
17600 <HEAD>
17601 <TITLE>Current Folder Type Explained</TITLE>
17602 </HEAD>
17603 <BODY>
17604 <H1>Current Folder Type Explained</H1>
17606 The Current Folder Type is part of the Filtering rule's Pattern.
17607 It refers to the type of the folder for which the filtering is being done.
17608 In order for a rule to be considered a match, the current folder must
17609 be of the type you set here.
17610 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17611 all what you might think.
17613 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17614 example, then
17615 that Pattern will only match if the current folder is a newsgroup and
17616 the rest of the Pattern matches.
17617 The value &quot;Specific&quot; may be used when you want to limit the match
17618 to a specific folder (not just a specific type of folder), or to a list of
17619 specific folders.
17621 In order to match a specific folder you Select the &quot;Specific&quot;
17622 button <EM>AND</EM> fill in
17623 the name (or list of names) of
17624 the folder in the &quot;Folder List&quot; field.
17625 If the current folder is any of the folders in the list, that is considered
17626 a match.
17627 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17628 of the folder (like what appears in your configuration file) or, if the
17629 folder is one of your incoming folders, it may be the nickname you've given
17630 the folder.
17631 Here are a couple samples of specific folder names:
17633 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17635 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17637 The easiest way to fill in the &quot;Folder List&quot; field is to use
17638 the T command that is available when the &quot;Folder List&quot; line is
17639 highlighted.
17640 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17641 Current Folder Type is set to &quot;Specific&quot;, and any value that
17642 &quot;Folder List&quot; has is ignored unless the type
17643 is set to &quot;Specific&quot;.
17645 When reading a newsgroup, there may be a performance penalty
17646 incurred when collecting the information necessary to check a Pattern.
17647 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17648 For example, a rule with a Current Folder Type of either
17649 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
17650 more slowly when opening a newsgroup.
17652 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17653 for more information on Patterns.
17655 Look <A HREF="h_edit_nav_cmds">here</A>
17656 to see the available Editing and Navigation commands.
17658 &lt;End of help on this topic&gt;
17659 </BODY>
17660 </HTML>
17661 ======= h_config_role_stat_imp =======
17662 <HTML>
17663 <HEAD>
17664 <TITLE>Message Important Status Explained</TITLE>
17665 </HEAD>
17666 <BODY>
17667 <H1>Message Important Status Explained</H1>
17669 This part of the Pattern may have one of three possible values.
17670 The default value is &quot;Don't care&quot;, which matches any message.
17671 The other two values are &quot;Yes&quot;, which means the message must be
17672 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
17673 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
17674 to be a match.
17676 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17677 for more information on Patterns.
17679 Look <A HREF="h_edit_nav_cmds">here</A>
17680 to see the available Editing and Navigation commands.
17682 &lt;End of help on this topic&gt;
17683 </BODY>
17684 </HTML>
17685 ======= h_config_role_stat_new =======
17686 <HTML>
17687 <HEAD>
17688 <TITLE>Message New Status Explained</TITLE>
17689 </HEAD>
17690 <BODY>
17691 <H1>Message New Status Explained</H1>
17693 This part of the Pattern may have one of three possible values.
17694 The default value is &quot;Don't care&quot;, which matches any message.
17695 The other two values are &quot;Yes&quot;, which means the message must be
17696 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
17697 means the message must <EM>not</EM> be &quot;New&quot; in order
17698 to be a match.
17699 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
17700 same as <EM>Seen</EM>.
17702 The nomenclature for New and Recent is a bit confusing:
17704 New means that the message is Unseen.
17705 It could have been in your mailbox for a long time but if you haven't looked
17706 at it, it is still considered New.
17707 That matches the default Alpine index display that shows an N for such a
17708 message.
17710 Recent means that the message was added to this folder since the last time
17711 you opened the folder.
17712 Alpine also shows an N by default for these types of messages.
17713 If you were to run two copies of Alpine that opened a folder one right after
17714 the other, a message would only show up as Recent in (at most) the first
17715 Alpine session.
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_recent =======
17727 <HTML>
17728 <HEAD>
17729 <TITLE>Message Recent Status Explained</TITLE>
17730 </HEAD>
17731 <BODY>
17732 <H1>Message Recent 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;Recent&quot; in order to be a match; or &quot;No&quot;, which
17738 means the message must <EM>not</EM> be &quot;Recent&quot; in order
17739 to be a match.
17740 &quot;Recent&quot; means that the message was added to the folder since
17741 the last time the folder was opened.
17742 If more than one mail client has the folder opened, the message will
17743 appear to be &quot;Recent&quot; to only one of the clients.
17745 The nomenclature for New and Recent is a bit confusing:
17747 New means that the message is Unseen.
17748 It could have been in your mailbox for a long time but if you haven't looked
17749 at it, it is still considered New.
17750 That matches the default Alpine index display that shows an N for such a
17751 message.
17753 Recent means that the message was added to this folder since the last time
17754 you opened the folder.
17755 Alpine also shows an N by default for these types of messages.
17756 If you were to run two copies of Alpine that opened a folder one right after
17757 the other, a message would only show up as Recent in (at most) the first
17758 Alpine session.
17760 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17761 for more information on Patterns.
17763 Look <A HREF="h_edit_nav_cmds">here</A>
17764 to see the available Editing and Navigation commands.
17766 &lt;End of help on this topic&gt;
17767 </BODY>
17768 </HTML>
17769 ======= h_config_role_stat_del =======
17770 <HTML>
17771 <HEAD>
17772 <TITLE>Message Deleted Status Explained</TITLE>
17773 </HEAD>
17774 <BODY>
17775 <H1>Message Deleted Status Explained</H1>
17777 This part of the Pattern may have one of three possible values.
17778 The default value is &quot;Don't care&quot;, which matches any message.
17779 The other two values are &quot;Yes&quot;, which means the message must be
17780 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
17781 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
17782 to be a match.
17784 If you are thinking of using this part of the Pattern as a way to prevent
17785 messages from being filtered more than once in a Filter Pattern,
17786 take a look at the Filter Option
17787 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
17788 instead.
17789 It should work better than using this field since it will hide the filtered
17790 messages even if they are already Deleted.
17791 That option is at the bottom of the Filter configuration screen.
17793 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17794 for more information on Patterns.
17796 Look <A HREF="h_edit_nav_cmds">here</A>
17797 to see the available Editing and Navigation commands.
17799 &lt;End of help on this topic&gt;
17800 </BODY>
17801 </HTML>
17802 ======= h_config_role_stat_ans =======
17803 <HTML>
17804 <HEAD>
17805 <TITLE>Message Answered Status Explained</TITLE>
17806 </HEAD>
17807 <BODY>
17808 <H1>Message Answered Status Explained</H1>
17810 This part of the Pattern may have one of three possible values.
17811 The default value is &quot;Don't care&quot;, which matches any message.
17812 The other two values are &quot;Yes&quot;, which means the message must be
17813 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
17814 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
17815 to be a match.
17817 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17818 for more information on Patterns.
17820 Look <A HREF="h_edit_nav_cmds">here</A>
17821 to see the available Editing and Navigation commands.
17823 &lt;End of help on this topic&gt;
17824 </BODY>
17825 </HTML>
17826 ======= h_config_role_abookfrom =======
17827 <HTML>
17828 <HEAD>
17829 <TITLE>Address in Address Book Explained</TITLE>
17830 </HEAD>
17831 <BODY>
17832 <H1>Address in Address Book Explained</H1>
17834 This option gives you a way to match messages that contain an address
17835 that is in one of your address books.
17836 Only the simple entries in your address books are searched.
17837 Address book distribution lists are ignored!
17839 This part of the Pattern may have one of five possible values.
17840 The default value is &quot;Don't care&quot;, which matches any message.
17841 The value &quot;Yes, in any address book&quot; means at least one of the addresses
17842 from the message must be in at least one of your
17843 address books in order to be a match.
17844 The value &quot;No, not in any address book&quot;
17845 means none of the addresses may
17846 be in any of your address books in order to be a match.
17848 The values &quot;Yes, in specific address books&quot; and
17849 &quot;No, not in any of specific address books&quot; are similar but instead
17850 of depending on all address books you are allowed to give a list of address
17851 books to look in.
17852 Usually this would be a single address book but it may be a
17853 list of address books as well.
17854 For each of these &quot;specific&quot; address book options you Select which
17855 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
17856 name (or list of names) of the address book in the
17857 &quot;Abook List&quot; field.
17858 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
17859 The easiest way to fill in the Abook List field it to use
17860 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
17861 line is highlighted.
17862 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
17863 option is set to one of the two &quot;Specific&quot;, values.
17865 The addresses from the message that are checked for are determined by the
17866 setting you have for &quot;Types of addresses to check for in address book&quot;.
17867 If you set this to &quot;From&quot; the From address from the message will
17868 be looked up in the address book.
17869 If you set it to &quot;To&quot; instead then the To addresses will be used.
17870 If any of the To addresses are in the address book then it is considered
17871 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
17872 You could set it to both From and To, in which case all of the From and To
17873 addresses are used.
17874 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
17875 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
17876 exists or the From address if there is no Reply-To address.
17877 Same for the Sender address.
17879 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17880 for more information on Patterns.
17882 Look <A HREF="h_edit_nav_cmds">here</A>
17883 to see the available Editing and Navigation commands.
17885 &lt;End of help on this topic&gt;
17886 </BODY>
17887 </HTML>
17888 ======= h_config_inabook_from =======
17889 <HTML>
17890 <HEAD>
17891 <TITLE>From</TITLE>
17892 </HEAD>
17893 <BODY>
17894 <H1>From</H1>
17896 Setting the From line will cause the address from the From header line
17897 of the message to be checked for in the address book.
17899 &lt;End of help on this topic&gt;
17900 </BODY>
17901 </HTML>
17902 ======= h_config_inabook_replyto =======
17903 <HTML>
17904 <HEAD>
17905 <TITLE>Reply-To</TITLE>
17906 </HEAD>
17907 <BODY>
17908 <H1>Reply-To</H1>
17910 Setting the Reply-To line will cause the address from the Reply-To header line
17911 of the message to be checked for in the address book.
17912 However, if there is no Reply-To header line in the message the From header
17913 line will be used instead.
17914 We understand this is dumb but we don't have an easy way around it.
17916 &lt;End of help on this topic&gt;
17917 </BODY>
17918 </HTML>
17919 ======= h_config_inabook_sender =======
17920 <HTML>
17921 <HEAD>
17922 <TITLE>Sender</TITLE>
17923 </HEAD>
17924 <BODY>
17925 <H1>Sender</H1>
17927 Setting the Sender line will cause the address from the Sender header line
17928 of the message to be checked for in the address book.
17929 However, if there is no Sender header line in the message the From header
17930 line will be used instead.
17931 We understand this is dumb but we don't have an easy way around it.
17933 &lt;End of help on this topic&gt;
17934 </BODY>
17935 </HTML>
17936 ======= h_config_inabook_to =======
17937 <HTML>
17938 <HEAD>
17939 <TITLE>To</TITLE>
17940 </HEAD>
17941 <BODY>
17942 <H1>To</H1>
17944 Setting the To line will cause the address from the To header line
17945 of the message to be checked for in the address book.
17947 &lt;End of help on this topic&gt;
17948 </BODY>
17949 </HTML>
17950 ======= h_config_inabook_cc =======
17951 <HTML>
17952 <HEAD>
17953 <TITLE>CC</TITLE>
17954 </HEAD>
17955 <BODY>
17956 <H1>CC</H1>
17958 Setting the CC line will cause the address from the CC header line
17959 of the message to be checked for in the address book.
17961 &lt;End of help on this topic&gt;
17962 </BODY>
17963 </HTML>
17964 ======= h_config_role_stat_8bitsubj =======
17965 <HTML>
17966 <HEAD>
17967 <TITLE>Raw 8-bit in Subject Explained</TITLE>
17968 </HEAD>
17969 <BODY>
17970 <H1>Raw 8-bit in Subject Explained</H1>
17972 It seems that lots of unwanted email contains unencoded 8-bit characters
17973 in the Subject.
17974 Normally, characters with the 8th bit set are not allowed in the Subject
17975 header unless they are MIME-encoded.
17976 This option gives you a way to match messages that have Subjects that
17977 contain unencoded 8-bit characters.
17979 This part of the Pattern may have one of three possible values.
17980 The default value is &quot;Don't care&quot;, which matches any message.
17981 The other two values are &quot;Yes&quot;, which means the Subject of
17982 the message must contain unencoded 8-bit characters (characters with the
17983 most significant bit set)
17984 in order to be a match; or &quot;No&quot;, which
17985 means the Subject must <EM>not</EM>
17986 contain unencoded 8-bit characters in order to be a match.
17988 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17989 for more information on Patterns.
17991 Look <A HREF="h_edit_nav_cmds">here</A>
17992 to see the available Editing and Navigation commands.
17994 &lt;End of help on this topic&gt;
17995 </BODY>
17996 </HTML>
17997 ======= h_config_role_bom =======
17998 <HTML>
17999 <HEAD>
18000 <TITLE>Beginning of Month</TITLE>
18001 </HEAD>
18002 <BODY>
18003 <H1>Beginning of Month</H1>
18005 This option gives you a limited ability to take different actions depending on whether
18006 this is the first time Alpine has been run this month or not.
18007 Though it would be nice to have such an option available, this is not the
18008 same as whether or not this is the first time a paricular folder has been
18009 opened this month.
18010 If you want some action (probably Filtering) to take place in a folder each
18011 month, then you will need to be sure that the folder is opened during the
18012 first Alpine session of the month in order for this option to be helpful.
18014 This part of the Pattern may have one of three possible values.
18015 The default value is &quot;Don't care&quot;, which matches any message.
18016 The other two values are &quot;Yes&quot;, which means this is the first
18017 time Alpine has been run this month;
18018 or &quot;No&quot;, which
18019 means this is not the first time Alpine has been run this month.
18021 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18022 for more information on Patterns.
18024 Here are some technical details.
18025 The way that Alpine decides if it is the beginning of the month or not is
18026 to compare today's date with the date stored in the
18027 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18028 variable in the config file.
18029 If the month of today's date is later than the month stored in the variable,
18030 then this is considered to be the first time you have run Alpine this month, and
18031 that turns the Beginning of the Month option on.
18033 Look <A HREF="h_edit_nav_cmds">here</A>
18034 to see the available Editing and Navigation commands.
18036 &lt;End of help on this topic&gt;
18037 </BODY>
18038 </HTML>
18039 ======= h_config_role_boy =======
18040 <HTML>
18041 <HEAD>
18042 <TITLE>Beginning of Year</TITLE>
18043 </HEAD>
18044 <BODY>
18045 <H1>Beginning of Year</H1>
18047 This option gives you a limited ability to take different actions depending on whether
18048 this is the first time Alpine has been run this year or not.
18049 Though it would be nice to have such an option available, this is not the
18050 same as whether or not this is the first time a paricular folder has been
18051 opened this year.
18052 If you want some action (probably Filtering) to take place in a folder each
18053 year, then you will need to be sure that the folder is opened during the
18054 first Alpine session of the year in order for this option to be helpful.
18056 This part of the Pattern may have one of three possible values.
18057 The default value is &quot;Don't care&quot;, which matches any message.
18058 The other two values are &quot;Yes&quot;, which means this is the first
18059 time Alpine has been run this year;
18060 or &quot;No&quot;, which
18061 means this is not the first time Alpine has been run this year.
18063 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18064 for more information on Patterns.
18066 Here are some technical details.
18067 The way that Alpine decides if it is the beginning of the year or not is
18068 to compare today's date with the date stored in the
18069 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18070 variable in the config file.
18071 If the year of today's date is later than the year stored in the variable,
18072 then this is considered to be the first time you have run Alpine this year, and
18073 that turns the Beginning of the Year option on.
18075 Look <A HREF="h_edit_nav_cmds">here</A>
18076 to see the available Editing and Navigation commands.
18078 &lt;End of help on this topic&gt;
18079 </BODY>
18080 </HTML>
18081 ======= h_config_role_inick =======
18082 <HTML>
18083 <HEAD>
18084 <TITLE>Initialize Values From Role Explained</TITLE>
18085 </HEAD>
18086 <BODY>
18087 <H1>Initialize Values From Role Explained</H1>
18089 This is a power user feature.
18090 You will usually want to leave this field empty.
18091 The value of this field is the nickname of another one of your roles.
18092 The Action values from that other role
18093 are used as the initial values of the Action items for this role.
18094 If you put something in any of the action fields for this role, that will
18095 override whatever was in the corresponding field of the initializer role.
18097 You might use this field if the &quot;Action&quot; part of one of your roles
18098 is something you want to use in more than one role.
18099 Instead of filling in those action values again for each role, you
18100 may give the nickname of the role where the values are filled in.
18101 It's just a shortcut way to define Role Actions.
18103 Here's an example to help explain how this works.
18104 Suppose you have a role with nickname &quot;role1&quot; and role1 has
18105 (among other things)
18107 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
18109 set.
18110 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
18111 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
18112 from role1 by default (and any of the other inheritable action values
18113 that are set).
18114 So if role2 had
18116 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
18118 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
18119 However, if role2 had
18121 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
18123 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
18125 If you wish,
18126 you may choose a nickname from your list of roles by using the
18127 &quot;T&quot; command.
18128 If the role you are using to initialize also has a role it initializes from,
18129 then that initialization happens first.
18130 That is, inheritance works as expected with the grandparent and
18131 great-grandparent (and so on) roles having the expected effect.
18133 Look <A HREF="h_edit_nav_cmds">here</A>
18134 to see the available Editing and Navigation commands.
18136 &lt;End of help on this topic&gt;
18137 </BODY>
18138 </HTML>
18139 ======= h_config_role_setfrom =======
18140 <HTML>
18141 <HEAD>
18142 <TITLE>Set From Explained</TITLE>
18143 </HEAD>
18144 <BODY>
18145 <H1>Set From Explained</H1>
18147 This describes part of the action to be taken if the Pattern for this
18148 role is a match.
18149 This field consists of a single address that will be used as the From
18150 address on the message you are sending.
18151 This should be a fully-qualified address like
18153 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18155 or just
18157 <CENTER><SAMP>user@domain</SAMP></CENTER>
18159 If you wish,
18160 you may choose an address from your address book with the
18161 &quot;T&quot; command.
18163 If this is left blank, then your normal From address will be used.
18165 You may also find it useful to add the changed From address to the
18166 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
18167 configuration option.
18169 Look <A HREF="h_edit_nav_cmds">here</A>
18170 to see the available Editing and Navigation commands.
18172 &lt;End of help on this topic&gt;
18173 </BODY>
18174 </HTML>
18175 ======= h_config_role_setreplyto =======
18176 <HTML>
18177 <HEAD>
18178 <TITLE>Set Reply-To Explained</TITLE>
18179 </HEAD>
18180 <BODY>
18181 <H1>Set Reply-To Explained</H1>
18183 This describes part of the action to be taken if the Pattern for this
18184 role is a match.
18185 This field consists of a single address that will be used as the Reply-To
18186 address on the message you are sending.
18187 This may be a fully-qualified address like
18189 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18191 or just
18193 <CENTER><SAMP>user@domain</SAMP></CENTER>
18195 If you wish,
18196 you may choose an address from your address book with the
18197 &quot;T&quot; command.
18199 If this is left blank, then there won't be a Reply-To address unless
18200 you have configured one specially with the
18201 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
18202 configuration option.
18204 Look <A HREF="h_edit_nav_cmds">here</A>
18205 to see the available Editing and Navigation commands.
18207 &lt;End of help on this topic&gt;
18208 </BODY>
18209 </HTML>
18210 ======= h_config_role_setfcc =======
18211 <HTML>
18212 <HEAD>
18213 <TITLE>Set Fcc Explained</TITLE>
18214 </HEAD>
18215 <BODY>
18216 <H1>Set Fcc Explained</H1>
18218 This describes part of the action to be taken if the Pattern for this
18219 role is a match.
18220 This field consists of a single folder name that will be used in
18221 the Fcc field of the message you are sending.
18222 You may put anything here that you would normally type into the Fcc
18223 field from the composer.
18225 In addition, an fcc of &quot;&quot; (two double quotation marks) means
18226 no Fcc.
18228 A blank field here means that Alpine will use its normal rules for deciding
18229 the default value of the Fcc field.
18230 For many roles, perhaps most, it may make more sense for you to use the
18231 other Alpine facilities for setting the Fcc.
18232 In particular, if you want the Fcc to depend on who you are sending the
18233 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
18234 is probably more useful.
18235 In that case, you would want to leave the Fcc field here blank.
18236 However, if you have a role that depends on who the message you are replying
18237 to was From, or what address that message was sent to;
18238 then it might make sense to set the Fcc for that role here.
18240 If you wish,
18241 you may choose a folder from your folder collections by using the
18242 &quot;T&quot; command.
18244 Look <A HREF="h_edit_nav_cmds">here</A>
18245 to see the available Editing and Navigation commands.
18247 &lt;End of help on this topic&gt;
18248 </BODY>
18249 </HTML>
18250 ======= h_config_role_usesmtp =======
18251 <HTML>
18252 <HEAD>
18253 <TITLE>Use SMTP Server Explained</TITLE>
18254 </HEAD>
18255 <BODY>
18256 <H1>Use SMTP Server Explained</H1>
18258 This describes part of the action to be taken if the Pattern for this
18259 role is a match.
18260 If this field has a value, then it will be used as the SMTP server
18261 to send mail when this role is being used (unless the SMTP server variable
18262 is set in the system-wide fixed configuration file).
18263 It has the same semantics as the
18264 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18265 variable in the Setup/Config screen.
18267 If you are using this to post from home when you are at home and from
18268 work when you are at work you need to be careful about postponing messages.
18269 When you postpone a composition that was using a role with this variable
18270 set, the SMTP server list will be saved
18271 with the postponed composition.
18272 It cannot be changed later.
18273 Because of this, you may want to make this a list of SMTP servers
18274 with the preferred server at the front of the list and alternate servers
18275 later in the list.
18276 In your &quot;Home&quot; role you would put the home SMTP server first and
18277 the work SMTP server last.
18278 In your &quot;Work&quot; role you would put the work SMTP server first and
18279 the home SMTP server last.
18280 Then if you start a composition as &quot;Work&quot;, postpone
18281 it, and then later resume it from home the work SMTP server will fail but
18282 the home SMTP server later in the list will succeed.
18284 You may be able to simplify things by making the regular
18285 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18286 variable in the Setup/Config screen a list instead of using roles
18287 to set the SMTP server.
18290 Look <A HREF="h_edit_nav_cmds">here</A>
18291 to see the available Editing and Navigation commands.
18293 &lt;End of help on this topic&gt;
18294 </BODY>
18295 </HTML>
18296 ======= h_config_role_usenntp =======
18297 <HTML>
18298 <HEAD>
18299 <TITLE>Use NNTP Server Explained</TITLE>
18300 </HEAD>
18301 <BODY>
18302 <H1>Use NNTP Server Explained</H1>
18304 This describes part of the action to be taken if the Pattern for this
18305 role is a match.
18306 If this field has a value, then it will be used as the NNTP server
18307 to post to newsgroups when this role is being used (unless the NNTP server
18308 variable
18309 is set in the system-wide fixed configuration file).
18310 It has the same semantics as the
18311 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18312 variable in the Setup/Config screen.
18314 This role setting can facilitate posting to the right nntp server for someone
18315 who reads news from various news sources.  The feature
18316 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
18317 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
18318 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
18319 nntp servers for roles may be more desirable for some people.
18321 If you are using this to post from home when you are at home and from
18322 work when you are at work you need to be careful about postponing messages.
18323 When you postpone a composition that was using a role with this variable
18324 set, the NNTP server list will be saved
18325 with the postponed composition.
18326 It cannot be changed later.
18327 Because of this, you may want to make this a list of NNTP servers
18328 with the preferred server at the front of the list and alternate servers
18329 later in the list.
18330 In your &quot;Home&quot; role you would put the home NNTP server first and
18331 the work NNTP server last.
18332 In your &quot;Work&quot; role you would put the work NNTP server first and
18333 the home NNTP server last.
18334 Then if you start a composition as &quot;Work&quot;, postpone
18335 it, and then later resume it from home the work NNTP server will fail but
18336 the home NNTP server later in the list will succeed.
18338 You may be able to simplify things by making the regular
18339 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18340 variable in the Setup/Config screen a list instead of using roles
18341 to set the NNTP server.
18344 Look <A HREF="h_edit_nav_cmds">here</A>
18345 to see the available Editing and Navigation commands.
18347 &lt;End of help on this topic&gt;
18348 </BODY>
18349 </HTML>
18350 ======= h_config_role_setotherhdr =======
18351 <HTML>
18352 <HEAD>
18353 <TITLE>Set Other Headers Explained</TITLE>
18354 </HEAD>
18355 <BODY>
18356 <H1>Set Other Headers Explained</H1>
18358 This describes part of the action to be taken if the Pattern for this
18359 role is a match.
18360 This field gives you a way to set values for headers besides
18361 &quot;From&quot; and &quot;Reply-To&quot;.
18362 If you want to set either of those, use the specific
18363 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
18365 This field is similar to the
18366 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
18367 Each header you specify here must include the header tag 
18368 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
18369 and may optionally include a value for that header.
18370 In order to see these headers when you compose using this role you 
18371 must use the rich header
18372 <!--chtml if pinemode="function_key"-->(F5)
18373 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
18374 Here's an example that shows how you might set the To address.
18376 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
18378 Headers set in this way are different from headers set with the
18379 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
18380 will replace any value that already exists.
18381 For example, if you are Replying to a message there will already be at
18382 least one address in the To header (the address you are Replying to).
18383 However, if you Reply using a role that sets the To header, that role's
18384 To header value will be used instead.
18386 Limitation: Because commas are used to separate the list of
18387 Other Headers, it is not possible to have the value of a
18388 header contain a comma;
18389 nor is there currently an &quot;escape&quot; mechanism provided
18390 to make this work.
18392 Look <A HREF="h_edit_nav_cmds">here</A>
18393 to see the available Editing and Navigation commands.
18395 &lt;End of help on this topic&gt;
18396 </BODY>
18397 </HTML>
18398 ======= h_config_role_setlitsig =======
18399 <HTML>
18400 <HEAD>
18401 <TITLE>Set Literal Signature Explained</TITLE>
18402 </HEAD>
18403 <BODY>
18404 <H1>Set Literal Signature Explained</H1>
18406 This describes part of the action to be taken if the Pattern for this
18407 role is a match.
18408 This field contains the actual text for your signature, as opposed to
18409 the name of a file containing your signature.
18410 If this is defined it takes precedence over any value set in the
18411 &quot;Set Signature&quot; field.
18413 This is simply a different way to store the signature.
18414 The signature is stored inside your Alpine configuration file instead of in
18415 a separate file.
18416 Tokens work the same way they do with
18417 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
18418 help text there for more information.
18421 The two character sequence &#92;n (backslash followed by
18422 the character n) will be used to signify a line-break in your signature.
18423 You don't have to enter the &#92;n, but it will be visible in the
18424 CHANGE THIS ROLE RULE window after you are done editing the signature.
18426 Look <A HREF="h_edit_nav_cmds">here</A>
18427 to see the available Editing and Navigation commands.
18429 &lt;End of help on this topic&gt;
18430 </BODY>
18431 </HTML>
18432 ======= h_config_role_setsig =======
18433 <HTML>
18434 <HEAD>
18435 <TITLE>Set Signature Explained</TITLE>
18436 </HEAD>
18437 <BODY>
18438 <H1>Set Signature Explained</H1>
18440 This describes part of the action to be taken if the Pattern for this
18441 role is a match.
18443 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
18444 option from Setup/Config
18445 or the &quot;Set LiteralSig&quot; option for this role are defined,
18446 then this option will be ignored.
18447 You can tell that that is the case because the value of this
18448 option will show up as
18450 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
18452 You may either use all Literal Signatures (signatures stored in your
18453 configuration file) throughout Alpine, or all signature files.
18454 You can't mix the two.
18456 This field consists of a filename that will be used as the signature
18457 file when using this role.
18459 If the filename is followed by a vertical bar (|) then instead
18460 of reading the contents of the file the file is assumed to be a
18461 program that will produce the text to be used on its standard output.
18462 The program can't have any arguments and doesn't receive any input from Alpine,
18463 but the rest of the processing works as if the contents came from a file.
18465 Instead of storing the data in a local file, the
18466 signature data may be stored remotely in an IMAP folder.
18467 In order to do this, 
18468 you must use a remote name for the signature.
18469 A remote signature name might look like:
18471 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
18474 The syntax used here is the same as the syntax used for a remote
18475 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18476 Note that you may not access an existing signature file remotely,
18477 you have to create a new <EM>folder</EM> that contains the signature data.
18478 If the name you use here for the signature data is a remote name, then when
18479 you edit the file using the &quot;F&quot; command the data will
18480 be saved remotely in the folder.
18481 You aren't required to do anything special to create the folder, it
18482 gets created if you use a remote name.
18485 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18486 the name of the file) you have specified.
18487 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18489 Besides containing regular text, a signature file may also
18490 contain (or a signature program may produce) tokens that are replaced with text
18491 that depends on the message you are replying to or forwarding.
18492 The tokens all look like _word_ (a word surrounded by underscores).
18493 For example, if the token
18495 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18497 is included in the text of the signature file, then when you reply to
18498 or forward a message, the token will be replaced with the actual date
18499 the message you are replying to or forwarding was sent.
18501 If you use a role that has a signature file for a plain composition
18502 (that is, not a reply or forward) then there is no original message, so
18503 any tokens that depend on the message will be replaced with nothing.
18504 So if you want a signature file to be useful for new compositions it
18505 shouldn't include any of the tokens that depend on the message being
18506 replied to or forwarded.
18508 The list of available tokens is
18509 <A HREF="h_index_tokens">here</A>.
18511 Actually, for the adventurous, there is a way to conditionally include text based
18512 on whether or not a token would result in specific replacement text.
18513 For example, you could include some text based on whether or not
18514 the _NEWS_ token would result in any newsgroups if it was used.
18515 It's explained in detail
18516 <A HREF="h_reply_token_conditionals">here</A>.
18518 In the very unlikely event that you want to include a literal token in
18519 a signature file, you must precede it with a backslash character.
18520 For example, to include the literal text _DATE_ you must actually use
18521 &#92;_DATE_.
18522 It is not possible to have a literal backslash followed by an expanded token.
18524 A blank field here means that Alpine will use its normal rules for deciding
18525 which file (if any) to use for the signature file.
18527 An alternate method for storing the signature is available in
18528 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
18530 Look <A HREF="h_edit_nav_cmds">here</A>
18531 to see the available Editing and Navigation commands.
18533 &lt;End of help on this topic&gt;
18534 </BODY>
18535 </HTML>
18536 ======= h_config_role_settempl =======
18537 <HTML>
18538 <HEAD>
18539 <TITLE>Set Template Explained</TITLE>
18540 </HEAD>
18541 <BODY>
18542 <H1>Set Template Explained</H1>
18544 This describes part of the action to be taken if the Pattern for this
18545 role is a match.
18546 This field consists of a filename that will be used as the template
18547 file when using this role.
18548 The template file is a file that is included at the top of the message you
18549 are composing.
18551 If the filename is followed by a vertical bar (|) then instead
18552 of reading the contents of the file the file is assumed to be a
18553 program that will produce the text to be used on its standard output.
18554 The program can't have any arguments and doesn't receive any input from Alpine,
18555 but the rest of the processing works as if the contents came from a file.
18557 Instead of storing the data in a local file, the
18558 template may be stored remotely in an IMAP folder.
18559 In order to do this, 
18560 you must use a remote name for the template.
18561 A remote template name might look like:
18563 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
18566 The syntax used here is the same as the syntax used for a remote
18567 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18568 Note that you may not access an existing template file remotely,
18569 you have to create a new <EM>folder</EM> that contains the template data.
18570 If the name you use here for the template is a remote name, then when
18571 you edit the file using the &quot;F&quot; command the data will
18572 be saved remotely in the folder.
18573 You aren't required to do anything special to create the folder, it
18574 gets created if you use a remote name.
18576 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18577 the name of the file) you have specified.
18578 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18580 Besides containing regular text, the template file may also
18581 contain (or a template file program may produce) tokens that are replaced with text
18582 that depends on the message you are replying to or forwarding.
18583 The tokens all look like _word_ (a word surrounded by underscores).
18584 For example, if the token
18586 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18588 is included in the text of the template file, then when you reply to
18589 or forward a message, the token will be replaced with the actual date
18590 the message you are replying to or forwarding was sent.
18592 If you use a role that has a template file for a plain composition
18593 (that is, not a reply or forward) then there is no original message, so
18594 any tokens that depend on the message will be replaced with nothing.
18595 So if you want a template file to be useful for new compositions it
18596 shouldn't include any of the tokens that depend on the message being
18597 replied to or forwarded.
18599 The list of available tokens is
18600 <A HREF="h_index_tokens">here</A>.
18602 Actually, for the adventurous, there is a way to conditionally include text based
18603 on whether or not a token would result in specific replacement text.
18604 For example, you could include some text based on whether or not
18605 the _NEWS_ token would result in any newsgroups if it was used.
18606 It's explained in detail
18607 <A HREF="h_reply_token_conditionals">here</A>.
18609 In the very unlikely event that you want to include a literal token in
18610 a template file, you must precede it with a backslash character.
18611 For example, to include the literal text _DATE_ you must actually use
18612 &#92;_DATE_.
18613 It is not possible to have a literal backslash followed by an expanded token.
18615 A blank template field means that Alpine will not use a template file when
18616 this role is being used.
18618 Look <A HREF="h_edit_nav_cmds">here</A>
18619 to see the available Editing and Navigation commands.
18621 &lt;End of help on this topic&gt;
18622 </BODY>
18623 </HTML>
18624 ======= h_config_filt_stat_imp =======
18625 <HTML>
18626 <HEAD>
18627 <TITLE>Set Important Status Explained</TITLE>
18628 </HEAD>
18629 <BODY>
18630 <H1>Set Important Status Explained</H1>
18632 This describes part of the action to be taken if the Pattern for this
18633 filter is a match.
18634 If set to &quot;Don't change it&quot; then this does nothing.
18635 If set to &quot;Set this state&quot; then the Important flag is set
18636 for the matching message.
18637 If set to &quot;Clear this state&quot; then the Important flag is cleared
18638 for the matching message.
18639 The important flag usually causes an asterisk to show up in the MESSAGE
18640 INDEX.
18641 It may also be useful when selecting a set of messages
18642 with the Select command.
18644 Look <A HREF="h_edit_nav_cmds">here</A>
18645 to see the available Editing and Navigation commands.
18647 &lt;End of help on this topic&gt;
18648 </BODY>
18649 </HTML>
18650 ======= h_config_filt_stat_new =======
18651 <HTML>
18652 <HEAD>
18653 <TITLE>Set New Status Explained</TITLE>
18654 </HEAD>
18655 <BODY>
18656 <H1>Set New Status Explained</H1>
18658 This describes part of the action to be taken if the Pattern for this
18659 filter is a match.
18660 If set to &quot;Don't change it&quot; then this does nothing.
18661 If set to &quot;Set this state&quot; then the
18662 matching message is marked New.
18663 If set to &quot;Clear this state&quot; then the
18664 matching message is marked Seen.
18666 Look <A HREF="h_edit_nav_cmds">here</A>
18667 to see the available Editing and Navigation commands.
18669 &lt;End of help on this topic&gt;
18670 </BODY>
18671 </HTML>
18672 ======= h_config_filt_stat_ans =======
18673 <HTML>
18674 <HEAD>
18675 <TITLE>Set Answered Status Explained</TITLE>
18676 </HEAD>
18677 <BODY>
18678 <H1>Set Answered Status Explained</H1>
18680 This describes part of the action to be taken if the Pattern for this
18681 filter is a match.
18682 If set to &quot;Don't change it&quot; then this does nothing.
18683 If set to &quot;Set this state&quot; then the Answered flag is set
18684 for the matching message.
18685 If set to &quot;Clear this state&quot; then the Answered flag is cleared
18686 for the matching message.
18688 Look <A HREF="h_edit_nav_cmds">here</A>
18689 to see the available Editing and Navigation commands.
18691 &lt;End of help on this topic&gt;
18692 </BODY>
18693 </HTML>
18694 ======= h_config_filt_stat_del =======
18695 <HTML>
18696 <HEAD>
18697 <TITLE>Set Deleted Status Explained</TITLE>
18698 </HEAD>
18699 <BODY>
18700 <H1>Set Deleted Status Explained</H1>
18702 This describes part of the action to be taken if the Pattern for this
18703 filter is a match.
18704 If set to &quot;Don't change it&quot; then this does nothing.
18705 If set to &quot;Set this state&quot; then the
18706 matching message is marked Deleted.
18707 If set to &quot;Clear this state&quot; then the
18708 matching message is marked UnDeleted.
18710 You should not use this option unless you are prepared to have matching
18711 messages expunged from the folder permanently.
18712 For example, if you type the Expunge command, this filter is applied
18713 before the expunge, so matching messages will be marked Deleted and then
18714 will be permanently expunged from the folder.
18715 However, since the index isn't redrawn in between the time that the message
18716 is marked Deleted and the time that you are asked to expunge, the only
18717 indication that you are expunging the message comes in the number of messages
18718 being expunged.
18719 The same thing may happen when you close a folder.
18720 It is also possible that an expunge not initiated by you will
18721 delete matching messages.
18723 Look <A HREF="h_edit_nav_cmds">here</A>
18724 to see the available Editing and Navigation commands.
18726 &lt;End of help on this topic&gt;
18727 </BODY>
18728 </HTML>
18729 ======= h_config_role_scoreval =======
18730 <HTML>
18731 <HEAD>
18732 <TITLE>Score Value Explained</TITLE>
18733 </HEAD>
18734 <BODY>
18735 <H1>Score Value Explained</H1>
18737 A message's score is the sum of the Score Values from all of the Scoring rules
18738 with Patterns that match the message.
18739 The value you give here is the Score Value associated with this rule.
18740 A Score Value is an integer between -100 and 100, with the default
18741 value of zero.
18743 Alternatively, if the
18744 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
18745 field is defined
18746 (on the line right below the &quot;Score Value&quot; field)
18747 then the &quot;Score Value&quot; is ignored and
18748 the &quot;Score From Header&quot; field is used instead.
18750 Look <A HREF="h_edit_nav_cmds">here</A>
18751 to see the available Editing and Navigation commands.
18753 &lt;End of help on this topic&gt;
18754 </BODY>
18755 </HTML>
18756 ======= h_config_role_scorehdrtok =======
18757 <HTML>
18758 <HEAD>
18759 <TITLE>Score Value From Header Explained</TITLE>
18760 </HEAD>
18761 <BODY>
18762 <H1>Score Value From Header Explained</H1>
18764 This option provides a way to use a number that appears in the headers of your
18765 messages as the message's score, or as a component of that score.
18766 If this field is defined then it is used instead of the &quot;Score Value&quot;.
18767 The idea behind this option is that there may be a score embedded in the
18768 headers of messages that has already been calculated outside of Alpine.
18769 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
18770 somewhere in that header there is a score.
18772 The value for this option is the name of the header followed by parentheses
18773 with two arguments inside:
18775 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
18777 No space is allowed between the comma and the start of the field_separators.
18778 It would be interpreted as the first separator if it was there.
18779 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
18780 starts after that and goes to the second separator, and so on.
18781 It's easier to explain with examples.
18783 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
18785 In the above example the header that is used is the &quot;X-Spam&quot; header.
18786 The value of that header (the part after the colon and the space) is split
18787 into fields separated by spaces.
18789 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
18791 The second field is selected and converted to an integer. It only makes sense
18792 if Field2 really is an integer.
18794 Here's an example of a SpamAssassin header.
18795 The exact look of the header will vary, but if your incoming mail
18796 contains headers that look like the following
18798 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
18800 you might want to use the hits value as a score.
18801 Since the score is an integer value you can't make use of the decimal part of
18802 the number, but
18803 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
18804 and &quot;.&quot; as your separators.
18806 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
18808 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
18809 hits.
18810 The second field is &quot;10&quot; so the score value would be 10.
18812 Another example we've seen has headers that look like
18814 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
18816 Because there are two equals before the 7% the value
18818 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
18820 should capture the probability as the score.
18822 The Score From Header scoring value actually works just like the
18823 regular Score Value in that the rest of the pattern has to match before
18824 it is used and the scores from all the different scoring rules that
18825 match for a particular message are added together.
18826 When using the Score From Header method it may (or may not) make sense to
18827 use only a single scoring rule with a pattern that matches every message.
18829 Look <A HREF="h_edit_nav_cmds">here</A>
18830 to see the available Editing and Navigation commands.
18832 &lt;End of help on this topic&gt;
18833 </BODY>
18834 </HTML>
18835 ======= h_config_role_replyuse =======
18836 <HTML>
18837 <HEAD>
18838 <TITLE>Reply Use Explained</TITLE>
18839 </HEAD>
18840 <BODY>
18841 <H1>Reply Use Explained</H1>
18843 This option determines how this particular role will be used when Replying
18844 to a message.
18845 There are three possible values for this option.
18846 The value &quot;Never&quot;
18847 means that this role will not be a candidate for use when Replying.
18848 The role's Pattern will not be checked for a match, however the role will
18849 be available to be manually switched to if there is a confirmation prompt.
18852 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18853 mean that you do want to consider this role when Replying.
18854 For either of these settings, the role's Pattern will be compared with
18855 the message being replied to.
18856 If there is a match then this role will either be used without confirmation
18857 or will be the default when confirmation is asked for, depending on
18858 which of the two options is selected.
18859 If confirmation is requested, you will also have a chance to
18860 manually change the role to any one of your other roles.
18863 You won't be prompted for confirmation if none of your role Patterns
18864 match the message being replied to.
18865 This is independent of the value of the current option.
18866 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18867 feature may be used to change this behavior.
18869 &lt;End of help on this topic&gt;
18870 </BODY>
18871 </HTML>
18872 ======= h_config_role_forwarduse =======
18873 <HTML>
18874 <HEAD>
18875 <TITLE>Forward Use Explained</TITLE>
18876 </HEAD>
18877 <BODY>
18878 <H1>Forward Use Explained</H1>
18880 This option determines how this particular role will be used when Forwarding
18881 a message.
18882 There are three possible values for this option.
18883 The value &quot;Never&quot;
18884 means that this role will not be a candidate for use when Forwarding.
18885 The role's Pattern will not be checked for a match, however the role will
18886 be available to be manually switched to if there is a confirmation prompt.
18889 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18890 mean that you do want to consider this role when Forwarding.
18891 For either of these settings, the role's Pattern will be compared with
18892 the message being forwarded.
18893 If there is a match then this role will either be used without confirmation
18894 or will be the default when confirmation is asked for, depending on
18895 which of the two options is selected.
18896 If confirmation is requested, you will also have a chance to
18897 manually change the role to any one of your other roles.
18900 You won't be prompted for confirmation if none of your role Patterns
18901 match the message being forwarded.
18902 This is independent of the value of the current option.
18903 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18904 feature may be used to change this behavior.
18906 &lt;End of help on this topic&gt;
18907 </BODY>
18908 </HTML>
18909 ======= h_config_role_composeuse =======
18910 <HTML>
18911 <HEAD>
18912 <TITLE>Compose Use Explained</TITLE>
18913 </HEAD>
18914 <BODY>
18915 <H1>Compose Use Explained</H1>
18917 This option determines how this particular role will be used when Composing
18918 a new message using the &quot;Compose&quot; command.
18919 This does not affect what happens when using the &quot;Role&quot; command
18920 to compose a new message.
18921 The &quot;Role&quot; command allows you to select a role from all of the
18922 roles you have defined, regardless of what Uses you've assigned to those
18923 roles.
18926 There are three possible values for this option.
18927 The value &quot;Never&quot;
18928 means that this role will not be a candidate for use when Composing.
18929 The role's Current Folder Type will not be checked for a match, however the role
18930 will be available to be manually switched to if there is a confirmation prompt.
18933 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18934 mean that you do want to consider this role when Composing.
18935 For either of these settings,
18936 the role's Current Folder Type will be checked (since there is no message
18937 to compare with, the rest of the Pattern is considered a match).
18938 If there is a match then this role will either be used without confirmation
18939 or will be the default when confirmation is asked for, depending on
18940 which of the two options is selected.
18941 If confirmation is requested, you will also have a chance to
18942 manually change the role to any one of your other roles.
18945 When using the Compose command the role checking is a little different
18946 because there is no message being replied to or forwarded.
18947 Because of this the Current Folder Type is checked but the header pattern
18948 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
18949 A role is considered to be a match if it is a candidate for Compose Use and
18950 its Current Folder Type matches the currently open folder.
18951 This could be useful if you want to set a role based on the folder you
18952 are reading, or the type of folder you are reading.
18955 You won't be prompted for confirmation if none of your role Patterns
18956 are a match.
18957 This is independent of the value of the current option.
18958 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
18959 feature may be used to change this behavior.
18961 &lt;End of help on this topic&gt;
18962 </BODY>
18963 </HTML>
18964 ======= h_config_filter_folder =======
18965 <HTML>
18966 <HEAD>
18967 <TITLE>Filter Folder Explained</TITLE>
18968 </HEAD>
18969 <BODY>
18970 <H1>Filter Folder Explained</H1>
18972 When the Filter Action is set to &quot;Move&quot;,
18973 the folder or folders specified here will be used to store messages matching
18974 the provided pattern.
18977 If you set the Filter Action to &quot;Move&quot; you must give a folder name
18978 here.
18981 If you wish,
18982 you may choose a folder from your folder collections by using the
18983 &quot;T&quot; command.
18985 Besides regular text, the folder name may also contain
18986 tokens that are replaced with text representing the current date
18987 when you run Alpine.
18988 For example, if the folder name you use is
18990 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
18992 that is replaced with something like
18994 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
18998 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
19000 becomes
19002 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
19004 The token names must be surrounded by underscores in order to be recognized
19005 as tokens.
19006 The tokens that may be used are those that are derived from the current date.
19007 They're listed near the bottom of the list of tokens give
19008 <A HREF="h_index_tokens">here</A>.
19010 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
19011 for more information on Patterns.
19013 Look <A HREF="h_edit_nav_cmds">here</A>
19014 to see the available Editing and Navigation commands.
19016 &lt;End of help on this topic&gt;
19017 </BODY>
19018 </HTML>
19019 ======= h_config_filter_kw_set =======
19020 <HTML>
19021 <HEAD>
19022 <TITLE>Set These Keywords Explained</TITLE>
19023 </HEAD>
19024 <BODY>
19025 <H1>Set These Keywords Explained</H1>
19027 This describes part of the action to be taken if the Pattern for this
19028 filter is a match.
19029 Read a little about keywords in the help text for the
19030 <A HREF="h_common_flag">Flag</A> command.
19031 This option is a list of keywords that will be Set when there is a match.
19032 If you wish, you may choose keywords from the list of keywords you have
19033 defined with the &quot;T&quot; command.
19034 You may add new keywords by defining them in the
19035 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19036 If you have given a keyword a nickname when configuring it,
19037 that nickname may be used instead of the actual keyword.
19040 Look <A HREF="h_edit_nav_cmds">here</A>
19041 to see the available Editing and Navigation commands.
19043 &lt;End of help on this topic&gt;
19044 </BODY>
19045 </HTML>
19046 ======= h_config_filter_kw_clr =======
19047 <HTML>
19048 <HEAD>
19049 <TITLE>Clear These Keywords Explained</TITLE>
19050 </HEAD>
19051 <BODY>
19052 <H1>Clear These Keywords Explained</H1>
19054 This describes part of the action to be taken if the Pattern for this
19055 filter is a match.
19056 Read a little about keywords in the help text for the
19057 <A HREF="h_common_flag">Flag</A> command.
19058 This option is a list of keywords that will be Cleared when there is a match.
19059 If you wish, you may choose keywords from the list of keywords you have
19060 defined with the &quot;T&quot; command.
19061 You may add new keywords by defining them in the
19062 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19063 If you have given a keyword a nickname when configuring it,
19064 that nickname may be used instead of the actual keyword.
19067 Look <A HREF="h_edit_nav_cmds">here</A>
19068 to see the available Editing and Navigation commands.
19070 &lt;End of help on this topic&gt;
19071 </BODY>
19072 </HTML>
19073 ======= h_index_tokens =======
19074 <HTML>
19075 <HEAD>
19076 <TITLE>Tokens for Index and Replying</TITLE>
19077 </HEAD>
19078 <BODY>
19080 This set of special tokens may be used in the
19081 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
19082 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
19083 in signature files,
19084 in template files used in
19085 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
19086 that is the target of a Filter Rule.
19087 Some of them aren't available in all situations.
19089 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
19090 option, but they must be surrounded by underscores for the
19091 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
19092 and in the target of Filter Rules.
19096 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
19098 <DL>
19099 <DT>SUBJECT</DT>
19100 <DD>
19101 This token represents the Subject the sender gave the message.
19102 Alternatives for use in the index screen are SHORTSUBJECT,
19103 SUBJKEY, SHORTSUBJKEY, SUBJKEYINIT, SHORTSUBJKEYINIT, SUBJECTTEXT, 
19104 SUBJKEYTEXT, and SUBJKEYINITTEXT.
19105 You may color the subject text in the MESSAGE INDEX screen differently by using the
19106 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
19107 <A HREF="h_config_index_opening_color">Index Opening Color</A>
19108 options available from
19109 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19110 </DD>
19112 <DT>FROM</DT>
19113 <DD>
19114 This token represents the personal name (or email address if the name
19115 is unavailable) of the person specified in the message's &quot;From:&quot;
19116 header field.
19117 You may color the from text in the MESSAGE INDEX screen differently by using the
19118 <A HREF="h_config_index_from_color">Index From Color</A>
19119 option available from
19120 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19121 </DD>
19123 <DT>ADDRESS</DT>
19124 <DD>
19125 This is similar to the &quot;FROM&quot; token, only it is always the
19126 email address, never the personal name.
19127 For example, &quot;mailbox@domain&quot;.
19128 </DD>
19130 <DT>MAILBOX</DT>
19131 <DD>
19132 This is the same as the &quot;ADDRESS&quot; except that the 
19133 domain part of the address is left off.
19134 For example, &quot;mailbox&quot;.
19135 </DD>
19137 <DT>SENDER</DT>
19138 <DD>
19139 This token represents the personal name (or email address) of the person
19140 listed in the message's &quot;Sender:&quot; header field.
19141 </DD>
19143 <DT>TO</DT>
19144 <DD>
19145 This token represents the personal names (or email addresses if the names
19146 are unavailable) of the persons specified in the
19147 message's &quot;To:&quot; header field.
19148 </DD>
19150 <DT>NEWSANDTO</DT>
19151 <DD>
19152 This token represents the newsgroups from the
19153 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19154 the personal names (or email addresses if the names
19155 are unavailable) of the persons specified in the
19156 message's &quot;To:&quot; header field.
19157 </DD>
19159 <DT>TOANDNEWS</DT>
19160 <DD>
19161 Same as &quot;NEWSANDTO&quot; except in the opposite order.
19162 </DD>
19164 <DT>NEWS</DT>
19165 <DD>
19166 This token represents the newsgroups from the
19167 message's &quot;Newsgroups:&quot; header field.
19168 </DD>
19170 <DT>CC</DT>
19171 <DD>
19172 This token represents the personal names (or email addresses if the names
19173 are unavailable) of the persons specified in the
19174 message's &quot;Cc:&quot; header field.
19175 </DD>
19177 <DT>RECIPS</DT>
19178 <DD>
19179 This token represents the personal names (or email addresses if the names
19180 are unavailable) of the persons specified in both the
19181 message's &quot;To:&quot; header field and
19182 the message's &quot;Cc:&quot; header field.
19183 </DD>
19185 <DT>NEWSANDRECIPS</DT>
19186 <DD>
19187 This token represents the newsgroups from the
19188 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19189 the personal names (or email addresses if the names
19190 are unavailable) of the persons specified in the
19191 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
19192 </DD>
19194 <DT>RECIPSANDNEWS</DT>
19195 <DD>
19196 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
19197 </DD>
19199 <DT>INIT</DT>
19200 <DD>
19201 This token represents the initials from the personal name
19202 of the person specified in the message's &quot;From:&quot;
19203 header field.
19204 If there is no personal name, it is blank.
19205 </DD>
19207 <DT>DATE</DT>
19208 <DD>
19209 This token represents the date on which the message was sent, according
19210 to the &quot;Date&quot; header field.
19211 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19212 The feature
19213 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
19214 which adjusts for the timezone the message was sent from,
19215 may have an effect on the value of this token as well as the values of
19216 all of the other DATE or TIME tokens.
19217 Some of the DATE and TIME tokens are displayed in a locale-specific
19218 way unless the option
19219 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
19220 </DD>
19222 <DT>SMARTDATE</DT>
19223 <DD>
19224 This token represents the date on which the message was sent, according
19225 to the &quot;Date&quot; header field.
19226 It is &quot;Today&quot; if the message was sent today,
19227 &quot;Yesterday&quot; for yesterday,
19228 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
19229 message is from last year and is more than six months old it includes the year, as well.
19230 See the SMARTDATE alternatives below, as well.
19231 </DD>
19233 <DT>SMARTTIME</DT>
19234 <DD>
19235 This token represents the most relevant elements of the date on which
19236 the message was sent (according to the &quot;Date&quot; header field),
19237 in a compact form. If the message was sent today, only the time is used
19238 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
19239 the past week, the day of the week and the hour are used
19240 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
19241 given as date, month, and year (e.g. &quot;23Aug00&quot;,
19242 &quot;9Apr98&quot;).
19243 </DD>
19245 <DT>SMARTTIME24</DT>
19246 <DD>
19247 This token has the structure &quot;day hour:minute&quot;
19248 (e.g. &quot;Sun 19:03&quot;) for messages dated less than a week
19249 from the current date, or &quot;month day&quot; (e.g.
19250 &quot;Nov 23&quot;) for messages dated less than 6 months
19251 ago, or &quot;day/month/year&quot; (e.g &quot;06/Jan/16&quot;)
19252 for messages dated more than 6 months ago. It uses 9 characters
19253 of the width of the screen, and it left aligned.
19254 </DD>
19256 <DT>SMARTDATETIME</DT>
19257 <DD>
19258 This is a combination of SMARTDATE and SMARTTIME.
19259 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
19260 case it is SMARTTIME.
19261 See the SMARTDATETIME alternatives below, as well.
19262 </DD>
19264 <DT>DATEISO</DT>
19265 <DD>
19266 This token represents the date on which the message was sent, according
19267 to the &quot;Date&quot; header field.
19268 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19269 </DD>
19271 <DT>SHORTDATEISO</DT>
19272 <DD>
19273 This token represents the date on which the message was sent, according
19274 to the &quot;Date&quot; header field.
19275 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19276 </DD>
19278 <DT>SHORTDATE1</DT>
19279 <DD>
19280 This token represents the date on which the message was sent, according
19281 to the &quot;Date&quot; header field.
19282 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
19283 </DD>
19285 <DT>SHORTDATE2</DT>
19286 <DD>
19287 This token represents the date on which the message was sent, according
19288 to the &quot;Date&quot; header field.
19289 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
19290 </DD>
19292 <DT>SHORTDATE3</DT>
19293 <DD>
19294 This token represents the date on which the message was sent, according
19295 to the &quot;Date&quot; header field.
19296 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
19297 </DD>
19299 <DT>SHORTDATE4</DT>
19300 <DD>
19301 This token represents the date on which the message was sent, according
19302 to the &quot;Date&quot; header field.
19303 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
19304 </DD>
19306 <DT>LONGDATE</DT>
19307 <DD>
19308 This token represents the date on which the message was sent, according
19309 to the &quot;Date&quot; header field.
19310 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
19311 </DD>
19313 <DT>SMARTDATE alternatives</DT>
19314 <DD>
19315 There are several versions of SMARTDATE that are all the same except
19316 for the way they format dates far in the past.
19317 SMARTDATE formats the date using the information from your locale settings
19318 to format the date string. It may end up formatting dates so that they look
19319 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19320 The feature
19321 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19322 may have an effect on the values of these tokens.
19323 If you want more control you may use one of the following.
19324   <DL>
19325   <DT>SMARTDATE</DT> <DD>If the option
19326 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19327 then this will be locale specific. Control this with the
19328 LC_TIME locale setting on a UNIX system. On Windows
19329 the Regional Options control panel may be used to set the Short date
19330 format. At the programming level, the strftime routine is what Alpine
19331 uses to print the date.
19332 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19333 to SMARTDATES1.</DD>
19334   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
19335   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19336   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
19337   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
19338   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
19339   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
19340   </DL>
19341 </DD>
19343 <DT>SMARTDATETIME alternatives</DT>
19344 <DD>
19345 There are several versions of SMARTDATETIME that are all very similar.
19346 The ones that end in 24 use a 24-hour clock for Today's messages instead
19347 of a 12-hour clock.
19348 The other variation is
19349 for the way they format dates far in the past.
19350 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
19351 to format the date string. It may end up formatting dates so that they look
19352 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19353 The feature
19354 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19355 may have an effect on the values of these tokens.
19356 The possible choices are:
19357   <DL>
19358   <DT>SMARTDATETIME</DT> <DD>If the option
19359 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19360 then this will be locale specific. Control this with the
19361 LC_TIME locale setting on a UNIX system. On Windows
19362 the Regional Options control panel may be used to set the Short date
19363 format. At the programming level, the strftime routine is what Alpine
19364 uses to print the date.
19365 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19366 to SMARTDATETIMES1.</DD>
19367   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
19368   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
19369   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
19370   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19371   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
19372   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
19373   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
19374   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
19375   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
19376   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
19377   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
19378   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
19379   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
19380   </DL>
19381 </DD>
19383 <DT>DAYDATE</DT>
19384 <DD>
19385 This token represents the date on which the message was sent, according
19386 to the &quot;Date&quot; header field.
19387 It looks like &quot;Sat, 23 Oct 1998&quot;.
19388 This token is never converted in any locale-specific way.
19389 </DD>
19391 <DT>PREFDATE</DT>
19392 <DD>
19393 This token represents the date on which the message was sent, according
19394 to the &quot;Date&quot; header field.
19395 It is your operating system's idea of the preferred date representation for the current locale.
19396 Internally it uses the %x version of the date from the strftime routine.
19397 </DD>
19399 <DT>PREFTIME</DT>
19400 <DD>
19401 This token represents the time at which the message was sent, according
19402 to the &quot;Date&quot; header field.
19403 It is the preferred time representation for the current locale.
19404 Internally it uses the %X version of the time from the strftime routine.
19405 </DD>
19407 <DT>PREFDATETIME</DT>
19408 <DD>
19409 This token represents the date and time at which the message was sent, according
19410 to the &quot;Date&quot; header field.
19411 It is the preferred date and time representation for the current locale.
19412 Internally it uses the %c version of the time from the strftime routine.
19413 </DD>
19415 <DT>DAY</DT>
19416 <DD>
19417 This token represents the day of the month on which the message was sent,
19418 according to the &quot;Date&quot; header field.
19419 For example, &quot;23&quot; or &quot;9&quot;.
19420 </DD>
19422 <DT>DAY2DIGIT</DT>
19423 <DD>
19424 This token represents the day of the month on which the message was sent,
19425 according to the &quot;Date&quot; header field.
19426 For example, &quot;23&quot; or &quot;09&quot;.
19427 It is always 2 digits.
19428 </DD>
19430 <DT>DAYORDINAL</DT>
19431 <DD>
19432 This token represents the ordinal number that is the day of
19433 the month on which the message was sent,
19434 according to the &quot;Date&quot; header field.
19435 For example, &quot;23rd&quot; or &quot;9th&quot;.
19436 </DD>
19438 <DT>DAYOFWEEK</DT>
19439 <DD>
19440 This token represents the day of the week on which the message was sent,
19441 according to the &quot;Date&quot; header field.
19442 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19443 </DD>
19445 <DT>DAYOFWEEKABBREV</DT>
19446 <DD>
19447 This token represents the day of the week on which the message was sent,
19448 according to the &quot;Date&quot; header field.
19449 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19450 </DD>
19452 <DT>MONTHABBREV</DT>
19453 <DD>
19454 This token represents the month the message was sent, according
19455 to the &quot;Date&quot; header field.
19456 For example, &quot;Oct&quot;.
19457 </DD>
19459 <DT>MONTHLONG</DT>
19460 <DD>
19461 This token represents the month in which the message was sent, according
19462 to the &quot;Date&quot; header field.
19463 For example, &quot;October&quot;.
19464 </DD>
19466 <DT>MONTH</DT>
19467 <DD>
19468 This token represents the month in which the message was sent, according
19469 to the &quot;Date&quot; header field.
19470 For example, &quot;10&quot; or &quot;9&quot;.
19471 </DD>
19473 <DT>MONTH2DIGIT</DT>
19474 <DD>
19475 This token represents the month in which the message was sent, according
19476 to the &quot;Date&quot; header field.
19477 For example, &quot;10&quot; or &quot;09&quot;.
19478 It is always 2 digits.
19479 </DD>
19481 <DT>YEAR</DT>
19482 <DD>
19483 This token represents the year the message was sent, according
19484 to the &quot;Date&quot; header field.
19485 For example, &quot;1998&quot; or &quot;2001&quot;.
19486 </DD>
19488 <DT>YEAR2DIGIT</DT>
19489 <DD>
19490 This token represents the year the message was sent, according
19491 to the &quot;Date&quot; header field.
19492 For example, &quot;98&quot; or &quot;01&quot;.
19493 It is always 2 digits.
19494 </DD>
19496 <DT>TIME24</DT>
19497 <DD>
19498 This token represents the time at which the message was sent, according
19499 to the &quot;Date&quot; header field.
19500 There is no adjustment made for different time zones, so you'll get
19501 the time the message was sent according to the time zone the sender
19502 was in.
19503 It has the format HH:MM. For example, &quot;17:28&quot;.
19504 </DD>
19506 <DT>TIME12</DT>
19507 <DD>
19508 This token represents the time at which the message was sent, according
19509 to the &quot;Date&quot; header field.
19510 This time is for a 12 hour clock.
19511 It has the format HH:MMpm.
19512 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19513 </DD>
19515 <DT>TIMEZONE</DT>
19516 <DD>
19517 This token represents the numeric timezone from
19518 the &quot;Date&quot; header field.
19519 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
19520 </DD>
19522 </DL>
19525 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
19527 <DL>
19528 <DT>MSGNO</DT>
19529 <DD>
19530 This token represents the message's current position in the folder that,
19531 of course, may change as the folder is sorted or new mail arrives.
19532 </DD>
19534 <DT>STATUS</DT>
19535 <DD>
19536 This token represents a three character wide field displaying various
19537 aspects of the message's state.
19538 The first character is either blank,
19539 a '*' for message marked Important, or a '+' indicating a message
19540 addressed directly to you (as opposed to your having received it via a
19541 mailing list, for example).
19542 When the feature
19543 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
19544 is set, if the first character would have been
19545 blank then it will instead be a '-' if the message is cc'd to you.
19546 The second character is typically blank,
19547 though the arrow cursor may occupy it if either the 
19548 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
19549 or the
19550 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
19551 is set (or you actually are on a slow link).
19552 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
19553 '<A HREF="h_flag_answered">A</A>' (Answered),
19554 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
19555 '<A HREF="h_flag_new">N</A>' (New), or blank.
19557 If you are using a threaded view of the index and this message is at the
19558 top of a collapsed portion of a thread,
19559 then this token refers to all of the messages in the collapsed portion of
19560 the thread instead of just the top message.
19561 The first character will be a '*' if <EM>any</EM> of the messages in the thread
19562 are marked Important, else a '+' if any of the messages are addressed
19563 to you, else a '-' if any of the messages are cc'd to you.
19564 The third character will be a 'D' if <EM>all</EM> of the messages
19565 in the collapsed thread are marked deleted,
19566 an 'A' if <EM>all</EM> of the messages
19567 in the collapsed thread are marked answered,
19568 it will be an 'N' if any of
19569 the messages are undeleted and unseen, and it will be blank otherwise.
19570 </DD>
19572 <DT>FULLSTATUS</DT>
19573 <DD>
19574 This token represents a less abbreviated alternative
19575 to the &quot;STATUS&quot; token.
19576 It is six characters wide.
19577 The first character is '+', '-', or blank, the
19578 second blank, the third either '*' or blank, the fourth
19579 '<A HREF="h_flag_new">N</A>' or blank,
19580 the fifth '<A HREF="h_flag_answered">A</A>'
19581 or blank, and the sixth character is
19582 either '<A HREF="h_flag_deleted">D</A>' or
19583 blank.
19585 If you are using a threaded view of the index and this message is at the
19586 top of a collapsed portion of a thread,
19587 then this token refers to all of the messages in the collapsed portion of
19588 the thread instead of just the top message.
19589 The first character is '+', '-', or blank depending on whether <EM>any</EM>
19590 of the messages in the collapsed thread are addressed to you or cc'd to you.
19591 The third character will be '*' if any of the messages are marked
19592 Important.
19593 The fourth character will be 'N' if all of the messages in the thread
19594 are New, else 'n' if some of the messages in the thread are New, else blank.
19595 The fifth character will be 'A' or 'a' or blank, and the sixth character
19596 will be 'D' or 'd' or blank.
19597 </DD>
19599 <DT>IMAPSTATUS</DT>
19600 <DD>
19601 This token represents an even less abbreviated alternative to the
19602 &quot;STATUS&quot; token.
19603 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
19604 an 'N' if the message is new to this folder since the last time
19605 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
19606 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
19607 new to the folder since it was last opened <EM>but</EM> has not been
19608 viewed, or a blank if the message has been in the folder since it was
19609 last opened and has been viewed.
19611 If you are using a threaded view of the index and this message is at the
19612 top of a collapsed portion of a thread,
19613 then the fourth character will be
19614 'N' if all of the messages in the thread are unseen and recent;
19615 else 'n' if some of the messages in the thread are unseen and recent;
19616 else 'U' if all of the messages in the thread are unseen and not recent;
19617 else 'u' if some of the messages in the thread are unseen and not recent;
19618 else 'R' if all of the messages in the thread are seen and recent;
19619 else 'r' if some of the messages in the thread are seen and recent;
19620 else blank.
19621 </DD>
19623 <DT>SHORTIMAPSTATUS</DT>
19624 <DD>
19625 This is the same as the last four of the six characters of IMAPSTATUS,
19626 so the '+' To Me information will be missing.
19627 </DD>
19629 <DT>SIZE</DT>
19630 <DD>
19631 This token represents the total size, in bytes, of the message.
19632 If a &quot;K&quot; (Kilobyte)
19633 follows the number, the size is approximately 1,000
19634 times that many bytes (rounded to the nearest 1,000).
19635 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19636 1,000,000 times that many bytes.
19637 Commas are not used in this field.
19638 This field is seven characters wide, including the enclosing parentheses.
19639 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19640 The progression of sizes used looks like:
19643 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
19645 </DD>
19647 <DT>SIZECOMMA</DT>
19648 <DD>
19649 This token represents the total size, in bytes, of the message.
19650 If a &quot;K&quot; (Kilobyte)
19651 follows the number, the size is approximately 1,000
19652 times that many bytes (rounded to the nearest 1,000).
19653 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19654 1,000,000 times that many bytes.
19655 Commas are used if the number shown is 1,000 or greater.
19656 The SIZECOMMA field is one character wider than the SIZE field.
19657 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19658 The progression of sizes used looks like:
19661 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
19663 </DD>
19665 <DT>KSIZE</DT>
19666 <DD>
19667 This token represents the total size of the message, expressed in
19668 kilobytes or megabytes, as most appropriate.
19669 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
19670 The progression of sizes used looks like:
19673 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
19675 </DD>
19677 <DT>SIZENARROW</DT>
19678 <DD>
19679 This token represents the total size, in bytes, of the message.
19680 If a &quot;K&quot; (Kilobyte)
19681 follows the number, the size is approximately 1,000
19682 times that many bytes.
19683 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19684 1,000,000 times that many bytes.
19685 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
19686 1,000,000,000 times that many bytes.
19687 This field uses only five characters of screen width, including the enclosing
19688 parentheses.
19689 The progression of sizes used looks like:
19692 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
19694 </DD>
19696 <DT>DESCRIPSIZE</DT>
19697 <DD>
19698 This token is intended to represent a more useful description of the
19699 message than just its size, but it isn't very useful at this point.
19700 The plus sign in this view means there are attachments.
19701 Note that including this token in
19702 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19703 display a little while Alpine collects the necessary information.
19704 </DD>
19706 <DT>SHORTSUBJECT</DT> 
19707 <DD> This token is the same as SUBJECT, but removes 
19708 text between &quot;[&quot; and &quot;]&quot;. Typically text enclosed 
19709 between these characters corresponds to mailing list names, and may be 
19710 unnecessary or unwanted in some instances. 
19711 </DD>
19713 <DT>SUBJKEY</DT>
19714 <DD>
19715 This token is the same as the SUBJECT token unless keywords are set for
19716 the message.
19717 In that case, a list of keywords enclosed in braces will be prepended to
19718 the subject of the message.
19719 Only those keywords that you have defined in your
19720 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19721 in Setup/Config are considered in the list.
19722 In other words, keywords that have been set by some other means, perhaps
19723 by another email program, won't show up unless included in
19724 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19725 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
19726 prepended to the subject in the MESSAGE TEXT screen.
19727 If you have given a keyword a nickname
19728 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19729 instead of the actual keyword.
19730 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19731 option may be used to modify this token slightly.
19732 It is also possible to color keywords in the index using the
19733 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19734 </DD>
19736 <DT>SHORTSUBJKEY</DT>
19737 <DD> This token is the same as SUBJKEY, but it is based on
19738 SHORTSUBJECT, instead of in SUBJECT.
19739 </DD>
19741 <DT>SUBJKEYINIT</DT>
19742 <DD>
19743 This token is the same as the SUBJKEY token except that instead of
19744 prepending a list of keywords to the subject, a list of first initials
19745 of keywords will be prepended instead.
19746 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
19747 set (or Work and Now are the Alpine nicknames of keywords that are set)
19748 then the SUBJKEY token would cause a result like
19750 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
19752 whereas the SUBJKEYINIT token would give
19754 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
19756 Only those keywords that you have defined in your
19757 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19758 in Setup/Config are considered in the list.
19759 In other words, keywords that have been set by some other means, perhaps
19760 by another email program, won't show up unless included in
19761 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19762 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19763 option may be used to modify this token slightly.
19764 It is also possible to color keywords in the index using the
19765 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19766 </DD>
19768 <DT>SHORTSUBJKEYINIT</DT>
19769 <DD> This token is the same as SUBJKEYINIT, but it is based on
19770 SHORTSUBJECT, instead of in SUBJECT.
19771 </DD>
19773 <DT>SUBJECTTEXT</DT>
19774 <DD>
19775 Same as SUBJECT but if there is room in the Subject field for more text,
19776 the opening part of the text of the message is displayed after the subject.
19777 The time needed to fetch the text may cause a performance problem
19778 which can, of course, be avoided by using the SUBJECT version of
19779 the Subject instead.
19780 You may color this opening text differently by using the
19781 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19782 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19783 You may adjust the characters that are displayed between the Subject and the
19784 opening text with the option
19785 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
19786 </DD>
19788 <DT>SUBJKEYTEXT</DT>
19789 <DD>
19790 Same as SUBJKEY but with the opening message text.
19791 </DD>
19793 <DT>OPENINGTEXT</DT>
19794 <DD>
19795 This is similar to SUBJECTTEXT.
19796 Instead of combining the Subject and the opening text in a single
19797 field in the index screen this token allows you to allocate a
19798 separate column just for the opening text of the message.
19799 The time needed to fetch this text may cause a performance problem.
19800 You may color this opening text differently by using the
19801 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19802 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19803 </DD>
19805 <DT>OPENINGTEXTNQ</DT>
19806 <DD>
19807 This is very similar to OPENINGTEXT.
19808 The NQ stands for No Quotes.
19809 The only difference is that quoted text (lines beginning with &gt;) is deleted.
19810 For some messages this may be confusing.
19811 For example, a message might have a line preceding some quoted
19812 text that reads something like &quot;On May 8th person A said.&quot;
19813 That no longer makes sense after the quoted text is deleted and it
19814 will appear that person A said whatever the text after the quote
19815 is, even though that is really person B talking.
19816 </DD>
19818 <DT>SUBJKEYINITTEXT</DT>
19819 <DD>
19820 Same as SUBJKEYINIT but with the opening message text.
19821 </DD>
19823 <DT>KEY</DT>
19824 <DD>
19825 This is a space-delimited list of keywords that are set for the message.
19826 Only those keywords that you have defined in your
19827 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19828 in Setup/Config are considered in the list.
19829 In other words, keywords that have been set by some other means, perhaps
19830 by another email program, won't show up unless included in
19831 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19832 If you have given a keyword a nickname
19833 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19834 instead of the actual keyword.
19835 It is also possible to color keywords in the index using the
19836 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19837 This token defaults to an arbitrary width of 5.
19838 You should set it to whatever width suits you using something
19839 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
19840 </DD>
19842 <DT>KEYINIT</DT>
19843 <DD>
19844 This is a list of keyword initials that are set for the message.
19845 If you have given a keyword a nickname
19846 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
19847 is displayed instead of the initial of the actual keyword.
19848 It is also possible to color keyword initials in the index using the
19849 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19850 This token defaults to an arbitrary width of 2.
19851 You should set it to whatever width suits you using something
19852 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
19853 </DD>
19855 <DT>PRIORITY</DT>
19856 <DD>
19857 The X-Priority header is a non-standard header that is used in a
19858 somewhat standard way by many mail programs.
19859 Alpine expects the value of this header to be a digit with a value
19860 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
19861 Since this priority is something that the sender sets it is only an indication
19862 of the priority that the sender attaches to the mail and it is therefore almost
19863 totally unreliable for use as a filtering criterion.
19864 This token will display the numeric value of the priority if it is between
19865 1 and 5.
19866 It will be suppressed (blank) if the value is 3, which is normal priority.
19867 This token may be colored with the
19868 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19869 </DD>
19871 <DT>PRIORITYALPHA</DT>
19872 <DD>
19873 This is a more verbose interpretation of the X-Priority field.
19874 Once again nothing is displayed unless the value of the field
19875 is 1, 2, 4, or 5.
19876 The values displayed for those values are:
19878 <TABLE>
19879 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
19880 <TR> <TD>2</TD> <TD>High</TD> </TR>
19881 <TR> <TD>4</TD> <TD>Low</TD> </TR>
19882 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
19883 </TABLE>
19885 This token may be colored with the
19886 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19887 </DD>
19889 <DT>PRIORITY!</DT>
19890 <DD>
19891 This is a one character, non-numeric version of the X-Priority field.
19892 If the value of the X-Priority header is 1 or 2 an exclamation
19893 point is displayed.
19894 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
19895 This token may be colored with the
19896 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
19897 </DD>
19899 <DT>ATT</DT>
19900 <DD>
19901 This is a one column wide field that represents the number of attachments
19902 a message has. It will be blank if there are no attachments, a single
19903 digit for one to nine attachments, or an asterisk for more than nine.
19904 Note that including this token in
19905 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19906 display a little while Alpine collects the necessary information.
19907 </DD>
19909 <DT>FROMORTO</DT>
19910 <DD>
19911 This token represents <EM>either</EM> the personal name (or email address) of
19912 the person listed in the message's &quot;From:&quot; header
19913 field, <EM>or</EM>, if that address is yours or one of your
19914 <A HREF="h_config_alt_addresses">alternate addresses</A>,
19915 the first person specified in the
19916 message's &quot;To:&quot; header field
19917 with the prefix &quot;To: &quot; prepended.
19918 If the from address is yours and there is also no &quot;To&quot; address,
19919 Alpine will use the address on the &quot;Cc&quot; line.
19920 If there is no address there, either, Alpine will look for a newsgroup name
19921 from the &quot;Newsgroups&quot; header field and put
19922 that after the &quot;To: &quot; prefix.
19923 </DD>
19925 <DT>FROMORTONOTNEWS</DT>
19926 <DD>
19927 This is almost the same as <EM>FROMORTO</EM>.
19928 The difference is that newsgroups aren't considered.
19929 When a message is from you, doesn't have a To or Cc, and does have
19930 a Newsgroups header; this token will be your name instead of the name
19931 of the newsgroup (like it would be with FROMORTO).
19932 </DD>
19934 <DT>TEXT</DT>
19935 <DD>
19936 This is a different sort of token.
19937 It allows you to display a label within each index line.
19938 It will be the same fixed text for each line.
19939 It is different from all the other tokens in that there is no space column
19940 displayed after this token.
19941 Instead, it is butted up against the following field.
19942 It also has a different syntax.
19943 The text to display is given following a colon after the
19944 word &quot;TEXT&quot;.
19945 For example,
19947 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
19949 would insert the literal text &quot;abc=&quot; (without the quotes)
19950 into the index display line.
19951 You must quote the text if it includes space characters, like
19953 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
19955 </DD>
19957 <DT>HEADER</DT>
19958 <DD>
19959 This allows you to display the text from a particular header line in the
19960 message.
19961 The syntax for this token is substantially different from all the others
19962 in order that you might be able to display a portion of the text following
19963 a particular header.
19964 The header name you are interested in is given following a colon
19965 after the word &quot;HEADER&quot;.
19966 For example,
19968 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
19970 would display the text of the X-Spam header, if any.
19971 Like for other index tokens a width field may (and probably should)
19972 follow this.
19974 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
19976 displays the first ten characters of the X-Spam header.
19977 Unlike other index tokens, the syntax for HEADER is more flexible.
19978 An optional second argument comes after a comma inside the parentheses.
19979 It specifies the &quot;field&quot; number.
19980 By default, the field separator is a space character.
19981 No extra space characters are allowed in the argument list.
19983 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
19985 would display the second field, left-justified, in a 10 character
19986 wide field.
19987 The second field would consist of all the text after the first space
19988 up to the next space or the end of the header.
19989 The default field number is zero, which stands for the entire line.
19990 There is also an optional third argument that is a list of field
19991 separators. It defaults to a space character.
19992 The example
19994 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
19996 would cause the field separators to be any of colon, percent,
19997 or space (there is a space character between the percent and the
19998 right parenthesis).
19999 The first field runs from the start of the header value up to the first
20000 colon, percent, or space; the second goes from there to the next; and so on.
20001 In order to use a comma character as a field separator you must escape
20002 it by preceding it with a backslash (&#92;).
20003 The same is true of the backslash character itself.
20004 There is one further optional argument.
20005 It is an R or an L to specify right or left adjustment of the text
20006 within the field.
20007 The default is to left justify, however if you are displaying numbers
20008 you might prefer to right justify.
20010 Here's an example of a SpamAssassin header.
20011 The exact look of the header will vary, but if your incoming mail
20012 contains headers that look like the following
20014 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
20016 you might want to display the hits value.
20017 The first field starts with the Y in Yes.
20018 To get what you're interested in you might use &quot;=&quot; and
20019 space as the field separators and display the third field, like
20021 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
20023 or maybe you would break at the dot instead
20025 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
20027 Another example we've seen has headers that look like
20029 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
20031 Because there are two equals and a comma before the 7% and a comma
20032 after it, the token
20034 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
20036 should display the probability (for example 7% or 83%) right justified
20037 in a 3-wide field.
20038 </DD>
20040 <DT>ARROW</DT>
20041 <DD>
20042 This gives an alternative way to display the current message in the
20043 MESSAGE INDEX screen.
20044 Usually the current message is indicated by the line being shown in
20045 reverse video.
20046 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
20047 the current line will include an &quot;arrow&quot; that
20048 looks like
20050 <CENTER><SAMP>-&gt;</SAMP></CENTER>
20052 in the ARROW token's field.
20053 For all of the non-current messages, the ARROW field will be filled
20054 with blanks.
20055 If you use the fixed-field width feature the length of the &quot;arrow&quot;
20056 may be adjusted.
20057 The arrow will be drawn as width-1 dashes followed by a greater than sign.
20058 For example, if you use ARROW(3) you will get
20060 <CENTER><SAMP>--&gt;</SAMP></CENTER>
20062 and ARROW(1) will give you just
20064 <CENTER><SAMP>&gt;</SAMP></CENTER>
20066 It is also possible to set the color of the ARROW field.
20067 By default (and for non-current messages) the arrow is colored the same
20068 as the index line it is part of.
20069 You may set it to be another color with the 
20070 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
20071 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20072 </DD>
20074 <DT>SCORE</DT>
20075 <DD>
20076 This gives the
20077 <a href="h_rules_score">score</a>
20078 of each message.
20079 This will be six columns wide to accomodate the widest possible score.
20080 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
20081 to limit the width of the field to the widest score that
20082 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
20083 If you have not defined any score rules the scores will all be zero.
20084 If any of your score rules contain AllText or BodyText patterns
20085 then including SCORE in the <!--#echo var="VAR_index-format"-->
20086 may slow down the display of the MESSAGE INDEX screen.
20087 </DD>
20088 </DL>
20091 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
20093 <DL>
20094 <DT>CURNEWS</DT>
20095 <DD>
20096 This token represents the current newsgroup if there is one.
20097 For example, &quot;comp.mail.pine&quot;.
20098 </DD>
20100 <DT>MSGID</DT>
20101 <DD>
20102 This token represents the message ID of the message.
20103 This token does not work with Filter Rule folder names.
20104 </DD>
20106 <DT>CURDATE</DT>
20107 <DD>
20108 This token represents the current date.
20109 It has the format MMM DD. For example, &quot;Oct 23&quot;.
20110 </DD>
20112 <DT>CURDATEISO</DT>
20113 <DD>
20114 This token represents the current date.
20115 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
20116 </DD>
20118 <DT>CURDATEISOS</DT>
20119 <DD>
20120 This token represents the current date.
20121 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
20122 </DD>
20124 <DT>CURPREFDATE</DT>
20125 <DD>
20126 This token represents the current date.
20127 It is your operating system's idea of the preferred date representation for the current locale.
20128 Internally it uses the %x version of the date from the strftime routine.
20129 </DD>
20131 <DT>CURPREFTIME</DT>
20132 <DD>
20133 This token represents the current time.
20134 It is the preferred time representation for the current locale.
20135 Internally it uses the %X version of the time from the strftime routine.
20136 </DD>
20138 <DT>CURPREFDATETIME</DT>
20139 <DD>
20140 This token represents the current date and time.
20141 It is the preferred date and time representation for the current locale.
20142 Internally it uses the %c version of the time from the strftime routine.
20143 </DD>
20145 <DT>CURTIME24</DT>
20146 <DD>
20147 This token represents the current time.
20148 It has the format HH:MM. For example, &quot;17:28&quot;.
20149 </DD>
20151 <DT>CURTIME12</DT>
20152 <DD>
20153 This token represents the current time.
20154 This time is for a 12 hour clock.
20155 It has the format HH:MMpm.
20156 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
20157 </DD>
20159 <DT>CURDAY</DT>
20160 <DD>
20161 This token represents the current day of the month.
20162 For example, &quot;23&quot; or &quot;9&quot;.
20163 </DD>
20165 <DT>CURDAY2DIGIT</DT>
20166 <DD>
20167 This token represents the current day of the month.
20168 For example, &quot;23&quot; or &quot;09&quot;.
20169 It is always 2 digits.
20170 </DD>
20172 <DT>CURDAYOFWEEK</DT>
20173 <DD>
20174 This token represents the current day of the week.
20175 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
20176 </DD>
20178 <DT>CURDAYOFWEEKABBREV</DT>
20179 <DD>
20180 This token represents the current day of the week.
20181 For example, &quot;Sun&quot; or &quot;Wed&quot;.
20182 </DD>
20184 <DT>CURMONTH</DT>
20185 <DD>
20186 This token represents the current month.
20187 For example, &quot;10&quot; or &quot;9&quot;.
20188 </DD>
20190 <DT>CURMONTH2DIGIT</DT>
20191 <DD>
20192 This token represents the current month.
20193 For example, &quot;10&quot; or &quot;09&quot;.
20194 It is always 2 digits.
20195 </DD>
20197 <DT>CURMONTHLONG</DT>
20198 <DD>
20199 This token represents the current month.
20200 For example, &quot;October&quot;.
20201 </DD>
20203 <DT>CURMONTHABBREV</DT>
20204 <DD>
20205 This token represents the current month.
20206 For example, &quot;Oct&quot;.
20207 </DD>
20209 <DT>CURYEAR</DT>
20210 <DD>
20211 This token represents the current year.
20212 For example, &quot;1998&quot; or &quot;2001&quot;.
20213 </DD>
20215 <DT>CURYEAR2DIGIT</DT>
20216 <DD>
20217 This token represents the current year.
20218 For example, &quot;98&quot; or &quot;01&quot;.
20219 It is always 2 digits.
20220 </DD>
20222 <DT>LASTMONTH</DT>
20223 <DD>
20224 This token represents last month.
20225 For example, if this is November (the 11th month),
20226 it is equal to &quot;10&quot; or if this is October (the 10th month),
20227 it is &quot;9&quot;.
20228 It is possible that this and the other tokens beginning with LASTMONTH
20229 below could be useful when used with a Filtering Rule that
20230 has the &quot;Beginning of Month&quot; option set.
20231 </DD>
20233 <DT>LASTMONTH2DIGIT</DT>
20234 <DD>
20235 This token represents last month.
20236 For example, if this is November (the 11th month),
20237 it is equal to &quot;10&quot; or if this is October (the 10th month),
20238 it is &quot;09&quot;.
20239 It is always 2 digits.
20240 </DD>
20242 <DT>LASTMONTHLONG</DT>
20243 <DD>
20244 This token represents last month.
20245 For example, if this is November the value is &quot;October&quot;.
20246 </DD>
20248 <DT>LASTMONTHABBREV</DT>
20249 <DD>
20250 This token represents last month.
20251 For example, if this is November the value is &quot;Oct&quot;.
20252 </DD>
20254 <DT>LASTMONTHYEAR</DT>
20255 <DD>
20256 This token represents what the year was a month ago.
20257 For example, if this is October, 1998, it is &quot;1998&quot;.
20258 If this is January, 1998, it is &quot;1997&quot;.
20259 </DD>
20261 <DT>LASTMONTHYEAR2DIGIT</DT>
20262 <DD>
20263 This token represents what the year was a month ago.
20264 For example, if this is October, 1998, it is &quot;98&quot;.
20265 If this is January, 1998, it is &quot;97&quot;.
20266 </DD>
20268 <DT>LASTYEAR</DT>
20269 <DD>
20270 This token represents last year.
20271 For example, if this is 1998, it equals &quot;1997&quot;.
20272 It is possible that this
20273 could be useful when used with a Filtering Rule that
20274 has the &quot;Beginning of Year&quot; option set.
20275 </DD>
20277 <DT>LASTYEAR2DIGIT</DT>
20278 <DD>
20279 This token represents last year.
20280 For example, if this is 1998, it equals &quot;97&quot;.
20281 It is always 2 digits.
20282 </DD>
20284 <DT>ROLENICK</DT>
20285 <DD>
20286 This token represents the nickname of the
20287 role currently being used.  If no role is being used,
20288 then no text will be printed for this token.
20289 This token does not work with Filter Rule folder names.
20290 </DD>
20291 </DL>
20294 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
20295 See the help for the
20296 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
20297 to see why you might want to use this.
20298 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
20299 must be surrounded by underscores when used.
20301 <DL>
20302 <DT>NEWLINE</DT>
20303 <DD>
20304 This is an end of line marker.
20305 </DD>
20306 </DL>
20309 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
20311 <DL>
20312 <DT>CURSORPOS</DT>
20313 <DD>
20314 This token is different from the others.
20315 When it is replaced it is replaced with nothing, but it sets an Alpine
20316 internal variable that tells the composer to start with the cursor
20317 positioned at the position where this token was.
20318 If both the template file and the signature file contain
20319 a &quot;CURSORPOS&quot; token, then the position in the template file
20320 is used.
20321 If there is a template file and neither it nor the signature file contains
20322 a &quot;CURSORPOS&quot; token, then the cursor is positioned
20323 after the end of the contents of the
20324 template file when the composer starts up.
20325 </DD>
20326 </DL>
20329 &lt;End of help on this topic&gt;
20330 </BODY>
20331 </HTML>
20332 ======= h_reply_token_conditionals =======
20333 <HTML>
20334 <HEAD>
20335 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
20336 </HEAD>
20337 <BODY>
20338 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
20340 Conditional text inclusion may be used with
20341 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
20342 in signature files, and in template files used in
20343 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
20344 It may <EM>not</EM> be used with the
20345 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
20348 There is a limited if-else capability for including text.
20349 The if-else condition is based
20350 on whether or not a given token would result in replacement text you
20351 specify.
20352 The syntax of this conditional inclusion is
20354 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
20356 The left parenthesis must follow the underscore immediately, with no
20357 intervening space.
20358 It means the token is expanded and the results of that expansion are
20359 compared against the &quot;match_this&quot; argument.
20360 If there is an exact match, then the &quot;if_matched&quot; text is used
20361 as the replacement text.
20362 Otherwise, the &quot;if_not_matched&quot; text is used.
20363 One of the most useful values for the &quot;match_this&quot; argument is
20364 the empty string, &quot;&quot;.
20365 In that case the expansion is compared against the empty string.
20367 Here's an example to make it clearer.
20368 This text could be included in one of your template files:
20370 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
20372 If that is included in a template file that you are using while replying
20373 to a message (because you chose to use the role it was part of),
20374 and that message has a newsgroup header and a newsgroup in that header,
20375 then the text
20377 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
20379 will be included in the message you are about to compose.
20380 On the other hand, if the message you are replying to does not have
20381 a newsgroup, then the text
20383 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
20385 would be included instead.
20386 This would also work in signature files and in
20387 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
20388 If the &quot;match_this&quot;, &quot;if_matched&quot;,
20389 or &quot;if_not_matched&quot; arguments contain
20390 spaces, parentheses, or commas;
20391 they have to be quoted with double quotation marks (like in the example
20392 above).
20393 If you want to include a literal quote (&quot;) in the text you must escape the
20394 quote by preceding it with a backslash (&#92;) character.
20395 If you want to include a literal backslash character you must escape it
20396 by preceding it with another backslash.
20398 The comma followed by &quot;if_not_matched&quot; is optional.
20399 If there is no &quot;if_not_matched&quot;
20400 present then no text is included if the not_matched case is true.
20401 Here's another example:
20403 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
20405 Here you can see that tokens may appear in the arguments.
20406 The same is true for tokens with the conditional parentheses.
20407 They may appear in arguments,
20408 though you do have to be careful to get the quoting and escaping of
20409 nested double quotes correct.
20410 If this was in the signature file being used and you were replying to a message
20411 sent to comp.mail.pine the resulting text would be:
20413 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
20415 If you were replying to a message that wasn't sent to any newsgroup the
20416 resulting text would be a single blank line.
20417 The reason you'd get a blank line is because the end of the line is
20418 outside of the conditional, so is always included.
20419 If you wanted to get rid of that blank line you could do so by moving
20420 the end of line inside the conditional.
20421 In other words, it's ok to have multi-line
20422 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
20423 template file.
20424 The text just continues until the next double quotation, even if it's not
20425 on the same line.
20427 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
20429 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
20431 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
20432 while reading the newsgroup comp.mail.pine the resulting text would be:
20434 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
20436 If you were replying to a message while reading an email folder instead
20437 of a newsgroup the resulting leadin text would be
20439 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
20441 Here's one more (contrived) example illustrating a matching argument
20442 that is not the empty string.
20444 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
20446 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
20447 were replying to
20448 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
20449 would be
20451 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
20453 But if you were replying to a message sent on Oct. 27 (and that wasn't
20454 today) you would get
20456 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
20459 &lt;End of help on this topic&gt;
20460 </BODY>
20461 </HTML>
20462 ======= h_composer_cntxt_nick =======
20463 <HTML>
20464 <HEAD>
20465 <TITLE>Collection Nickname Explained</TITLE>
20466 </HEAD>
20467 <BODY>
20468 <H1>Collection Edit Help -- Nickname Field</H1>
20470 This field is provided so you can add a short nickname to use when
20471 referring to this collection within Alpine.  Spaces are allowed, and
20472 you don't need to use double-quotes.  However, the double-quote
20473 character is not allowed.
20475 Look <A HREF="h_edit_nav_cmds">here</A>
20476 to see the available Editing and Navigation commands.
20478 &lt;End of help on this topic&gt;
20479 </BODY>
20480 </HTML>
20481 ======= h_folder_server_syntax =======
20482 <HTML>
20483 <HEAD>
20484 <TITLE>Server Name Syntax</TITLE>
20485 </HEAD>
20486 <BODY>
20487 <H1>Server Name Syntax</H1>
20489 This help describes the syntax that may be used for server names
20490 that may be associated with remote folders or SMTP servers.
20493 A server name is the hostname of the server.
20494 It's a good idea to use the host's fully-qualified network name.
20497 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
20500 However, IP addresses are allowed if surrounded
20501 with square-brackets.
20504 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
20507 An optional network port number may be supplied by appending
20508 a colon (:) followed by the port number
20509 to the server name.
20510 By default, the IMAP port number, 143, is used.
20513 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
20516 Besides server name and optional port number, various other optional
20517 parameters may be supplied that alter Alpine's interaction with the server.
20518 A parameter is supplied by appending a slash (/) character followed by
20519 the parameter's name and,
20520 depending on the particular parameter, the value assigned to that
20521 name, to the server name (and optional port number).
20522 Parameter names are <EM>not</EM> case sensitive.
20523 Currently supported parameters include:
20525 <DL>
20527 <DT>User</DT>
20528 <DD>This parameter requires an associated value, and is intended to
20529 provide the username identifier with which to establish the server
20530 connection.
20531 If your SMTP server offers SMTP AUTH authentication, adding this 
20532 parameter to the
20533 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
20534 option will cause Alpine to attempt to authenticate to the server using the
20535 supplied username.
20536 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
20537 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
20538 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
20539 option (or to the server name for any folder collection using NNTP)
20540 will cause Alpine to attempt
20541 to authenticate to the server using the supplied username.
20542 An example might be:
20545 <CENTER><SAMP>/user=katie</SAMP></CENTER>
20548 </DD>
20550 <DT>TLS</DT>
20551 <DD>
20552 Normally, when a new connection is made an attempt is made to 
20553 negotiate a secure (encrypted) session using Transport Layer Security (TLS).
20554 If that fails then a non-encrypted connection will be attempted instead.
20555 This is a unary parameter indicating communication with the server must 
20556 take place over a TLS connection. If the attempt to use TLS fails then
20557 this parameter will cause the connection to fail instead of falling
20558 back to an unsecure connection.
20561 <CENTER><SAMP>/tls</SAMP></CENTER>
20564 </DD>
20566 <DT>SSL</DT>
20567 <DD>
20568 This is a unary parameter indicating communication with the server should 
20569 take place over a Secure Socket Layer connection.  The server must support
20570 this method, and be prepared to accept connections on the appropriate
20571 port (993 by default).
20572 Alpine must be linked with an SSL library for this option to be operational.
20575 <CENTER><SAMP>/ssl</SAMP></CENTER>
20578 </DD>
20580 <DT>TLS1</DT>
20581 <DD>
20582 This parameter indicates that the connection to the server will be made
20583 over the SSL port, but using the TLSv1 protocol, instead of the usual
20584 SSLv3 or SSLv2 protocols.
20585 Alpine must be linked with an SSL library for this option to be operational.
20588 <CENTER><SAMP>/tls1</SAMP></CENTER>
20591 </DD>
20593 <DT>DTLS1</DT>
20594 <DD>
20595 This parameter indicates that the connection to the server will be made
20596 over the SSL port, but using the DTLSv1 protocol, instead of the usual
20597 SSLv3 or SSLv2 protocols.
20598 Alpine must be linked with an SSL library for this option to be operational.
20601 <CENTER><SAMP>/dtls1</SAMP></CENTER>
20604 </DD>
20606 <DT>TLS1_1</DT>
20607 <DD>
20608 This parameter indicates that the connection to the server will be made
20609 over the SSL port, but using the TLSv1.1 protocol, instead of the usual
20610 SSLv3 or SSLv2 protocols.
20611 Alpine must be linked with an SSL library for this option to be operational.
20614 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
20617 </DD>
20619 <DT>TLS1_2</DT>
20620 <DD>
20621 This parameter indicates that the connection to the server will be made
20622 over the SSL port, but using the TLSv1.2 protocol, instead of the usual
20623 SSLv3 or SSLv2 protocols.
20624 Alpine must be linked with an SSL library for this option to be operational.
20627 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
20630 </DD>
20633 <DT>NoValidate-Cert</DT>
20634 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
20635 This is needed if the server uses self-signed certificates or if Alpine
20636 cannot validate the certificate for some other known reason.
20638 </DD>
20640 <DT>Anonymous</DT>
20641 <DD>This is a unary parameter (that means it does not have a value)
20642 indicating that the connection be logged in as
20643 &quot;anonymous&quot; rather than a specific user.
20644 Not all servers offer anonymous
20645 access; those which do generally only offer read-only access to certain
20646 &quot;public&quot; folders.
20649 <CENTER><SAMP>/anonymous</SAMP></CENTER>
20652 </DD>
20654 <DT>Secure</DT>
20655 <DD>This is a unary parameter indicating that the connection use the
20656 most secure authentication method mutually supported by Alpine and the
20657 server.
20658 Alpine is capable of authenticating connections to 
20659 the server using several methods.
20660 By default, Alpine will attempt each
20661 method until either a connection is established or the
20662 list of methods is exhausted.
20663 This parameter causes Alpine to instead fail 
20664 the connection if the first (generally most &quot;secure&quot;) method fails.
20667 <CENTER><SAMP>/secure</SAMP></CENTER>
20670 </DD>
20672 <DT>Submit</DT>
20673 <DD>This is a unary parameter for use with the
20674 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
20675 It indicates that the connection should be made to the Submit server
20676 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
20677 (port 587) instead of the SMTP port (25).
20678 At the time this help was written the submit option was equivalent to
20679 specifying port 587.
20682 <CENTER><SAMP>/submit</SAMP></CENTER>
20686 <CENTER><SAMP>host:587</SAMP></CENTER>
20689 </DD>
20691 <DT>Debug</DT>
20692 <DD>This is a unary parameter indicating that the connection be established
20693 in a verbose mode.  Basically, it causes Alpine to log the communication with
20694 the server in Alpine's debug file.
20695 Normally, the pine -d command-line flag would be used instead.
20697 </DD>
20699 <DT>NoRsh</DT>
20700 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
20701 the UNIX remote shell program.
20702 Including &quot;NoRsh&quot; will cause connections to this server to skip
20703 the &quot;rsh&quot; attempt.
20704 This might be useful to avoid long timeouts caused by rsh firewalls, for
20705 example.
20707 </DD>
20709 <DT>Loser</DT>
20710 <DD>This option makes sense only for IMAP servers that do not perform
20711 a SEARCH command correctly. If your filtering rules
20712 fail to filter some messages, that should have been filtered, then this
20713 option will make Alpine download all data necessary data to perform that 
20714 search. There is a performance penalty when using this option. Downloading 
20715 the data to perfom the search will take longer than requesting the IMAP
20716 server to perform the filtering, but the filtering will be done correctly.
20718 </DD>
20721 <DT>Service</DT>
20722 <DD>This parameter requires an associated value.  The default value is
20723 &quot;IMAP&quot; which indicates communication with the server based
20724 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
20725 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
20727 Other service values include:
20728  <DL>
20729  <DT>NNTP</DT>
20730  <DD>This value indicates communication with the server takes place via
20731 the Network News Transfer Protocol.  Use this to define a collection
20732 of newsgroups on a remote news server.  So
20735 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
20737 or just
20739 <CENTER><SAMP>/NNTP</SAMP></CENTER>
20742 is the way to specify NNTP access.
20744  </DD>
20746  <DT>POP3</DT>
20747  <DD>This value indicates communication with the server takes place via the
20748 Post Office Protocol 3 protocol.
20751 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
20753 or just
20755 <CENTER><SAMP>/POP3</SAMP></CENTER>
20758 Note that there are several important issues
20759 to consider when selecting this option:
20760 <OL>
20761  <LI> POP3 provides access to only your INBOX.  In other words,
20762 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
20763  <LI> Alpine's implementation of POP3 does not follow the traditional POP
20764 model and will leave your mail on the server. Refer to the
20765 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
20766  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
20767 </OL>
20768 </DD>
20769 </DL>
20770 </DL>
20773 Note that it is possible to include more than one parameter in a server
20774 specification by concatenating the parameters. For example:
20777 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
20781 &lt;End of help on this topic&gt;
20782 </BODY>
20783 </HTML>
20784 ======= h_composer_cntxt_server =======
20785 <HTML>
20786 <HEAD>
20787 <TITLE>Collection Server: Explained</TITLE>
20788 </HEAD>
20789 <BODY>
20790 <H1>Collection Edit Help -- Server Field</H1>
20792 This collection's &quot;Server:&quot; definition indicates the
20793 hostname of the server providing access to the folders in this
20794 collection.
20795 The syntax of this server name is the same as for other server names used
20796 in remote folder names in
20797 Alpine and is described
20798 <A HREF="h_folder_server_syntax">here</A>.
20801 &lt;End of help on this topic&gt;
20802 </BODY>
20803 </HTML>
20804 ======= h_composer_cntxt_path =======
20805 <HTML>
20806 <HEAD>
20807 <TITLE>Collection Path: Explained</TITLE>
20808 </HEAD>
20809 <BODY>
20810 <H1>Collection Edit Help -- Path Field</H1>
20812 The collection's &quot;Path:&quot; definition indicates the location
20813 of the folders in this collection.  If the path or any of its components
20814 do not exist, Alpine will prompt you for their creation when exiting the
20815 Add/Change screen.
20817 <P> 
20818 By default the path is interpreted as defining a section of your personal
20819 folder area.  This area and how you specify it are defined by the
20820 server, if one is specified in the collection, or, typically, the home
20821 directory if no server is defined.
20824 To define a collection outside the default &quot;area&quot;, prefix
20825 the path with the &quot;namespace&quot; to use when interpreting the
20826 given path.  If a namespace is specified, the Path begins with the
20827 sharp, &quot;#&quot;, character followed by the name of the namespace
20828 and then the namespace's path-element-delimiter.  Aside from the
20829 path's format, namespaces can also imply access rights, content
20830 policy, audience, location, and, occasionally, access methods.
20833 Each server exports its own set (possibly of size one) of 
20834 namespaces.  Hence, it's likely communication with your server's
20835 administrator will be required for specific configurations.  Some of
20836 the more common namespaces, however, include:
20838 <DL>
20839 <DT>#news.</DT>
20840 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
20841 names are hierarchically defined with each level delimited by a period.
20842 </DD>
20843 <DT>#public/</DT>
20844 <DD>This specifies a folder area that the server may export to the general
20845 public.
20846 </DD>
20847 <DT>#shared/</DT>
20848 <DD>This specifies a folder area that the folder may export to groups
20849 of users.
20850 </DD>
20851 <DT>#ftp/</DT>
20852 <DD>This specifies a folder area that is the same as that it may have 
20853 exported via the &quot;File Transfer Protocol&quot;.
20854 </DD>
20855 <DT>#mh/</DT>
20856 <DD>This specifies the personal folder area associated with folders
20857 and directories that were created using the MH message handling system.
20858 </DD>
20859 </DL>
20862 In addition, the server may support access to other user's folders,
20863 provided you have suitable permissions.  Common methods use a prefix
20864 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
20865 indicate the root of the other user's folder area.
20868 No, nothing's simple.
20871 &lt;End of help on this topic&gt;
20872 </BODY>
20873 </HTML>
20874 ======= h_composer_cntxt_view =======
20875 <HTML>
20876 <HEAD>
20877 <TITLE>Collection View: Explained</TITLE>
20878 </HEAD>
20879 <BODY>
20880 <H1>Collection Edit Help -- View Field</H1>
20882 The collection's &quot;View:&quot; definition provides a way to limit
20883 the displayed list of folders within a collection.  By default, only
20884 folders that contain the specified characters anywhere in their name
20885 are shown in the collection's folder list.
20888 Additionally, you can use a wildcard character to better control
20889 the list of folders selected for display.  The wildcard specifier is
20890 the star, &quot;*&quot;, character.
20893 So, for example, to define a collection of all folders ending with
20894 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
20895 quote characters!).  Or, similarly, to define a collection of folders
20896 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
20897 specify a view of &quot;a*z&quot;.
20900 &lt;End of help on this topic&gt;
20901 </BODY>
20902 </HTML>
20903 ======= h_composer_abook_add_server =======
20904 <HTML>
20905 <HEAD>
20906 <TITLE>Addressbook Server Name Field Explained</TITLE>
20907 </HEAD>
20908 <BODY>
20909 This field should be left blank if the address book is stored in a regular
20910 file on this system.  If it is a remote address book stored on an IMAP
20911 server then this is the name of that IMAP server.
20913 Look <A HREF="h_edit_nav_cmds">here</A>
20914 to see the available Editing and Navigation commands.
20916 &lt;End of help on this topic&gt;
20917 </BODY>
20918 </HTML>
20919 ======= h_composer_abook_add_folder =======
20920 <HTML>
20921 <HEAD>
20922 <TITLE>Addressbook Folder Name Field Explained</TITLE>
20923 </HEAD>
20924 <BODY>
20925 For a remote address book (one for which the Server Name is filled in)
20926 this is the name of a folder on the remote server. The address book data
20927 will be stored in this folder. This folder should be used only for
20928 storing this single address book, not for other address books or for
20929 other messages.
20931 For a local address book (one for which the Server Name is not filled in)
20932 this is the name of a file in which the address book will be stored.
20933 The file is in the same directory as the Alpine configuration file if the
20934 configuration file is local.
20935 If the configuration file is remote, then this will be in the home directory
20936 for Unix Alpine and in the directory specified by the
20937 &quot;-aux local_directory&quot; command line argument.
20939 Look <A HREF="h_edit_nav_cmds">here</A>
20940 to see the available Editing and Navigation commands.
20942 &lt;End of help on this topic&gt;
20943 </BODY>
20944 </HTML>
20945 ======= h_composer_abook_add_nick =======
20946 <HTML>
20947 <HEAD>
20948 <TITLE>Addressbook NickName Field Explained</TITLE>
20949 </HEAD>
20950 <BODY>
20951 This is just an optional nickname for this address book. If present, it
20952 is used in some of the displays and error messages in the address book
20953 maintenance screens. It is for your convenience only and serves no
20954 other purpose.
20956 Look <A HREF="h_edit_nav_cmds">here</A>
20957 to see the available Editing and Navigation commands.
20959 &lt;End of help on this topic&gt;
20960 </BODY>
20961 </HTML>
20962 ======= h_composer_qserv_cn =======
20963 <HTML>
20964 <HEAD>
20965 <TITLE>Directory Query Form Explained</TITLE>
20966 </HEAD>
20967 <BODY>
20969 Fill in as many of these fields as you wish to narrow down your
20970 search. All the fields you fill in must match in order for an entry
20971 to be returned. You may use the wildcard character &quot;*&quot; in
20972 any of the fields, it matches any zero or more characters at that
20973 point in the string. There are no implicit wildcards, so the match is
20974 exact unless you include wildcards.
20977 Note that if an attribute isn't present at all, then the match will fail.
20978 For example, if a server doesn't support the Locality attribute, then no
20979 matter what you put in the Locality field (other than leaving it empty)
20980 the search will fail.
20983 This field, the Common Name field, is typically a person's full name.
20986 <H1>EDITING and NAVIGATION COMMANDS</H1>
20987 <!--chtml if pinemode="function_key"-->
20988 <PRE>
20989 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
20990 ^B (Left Arrow)    Back character       | ^D       Delete current character
20991 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
20992 ^P (Up Arrow)      Previous line        |
20993 ^N (Down Arrow)    Next line            | F9       Cut marked text or
20994 ^A                 Beginning of line    |            delete current line
20995 ^E                 End of line          | F10      Undelete line(s)
20996 F7                 Previous page        |
20997 F8                 Next page            |-------------------------------------
20998 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
20999 ----------------------------------------|
21000 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
21001 F2   Cancel      |   F1    Get help     |
21002 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
21003 </PRE>
21004 <!--chtml else-->
21005 <PRE>
21006 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21007 ^B (Left Arrow)    Back character       | ^D       Delete current character
21008 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21009 ^P (Up Arrow)      Previous line        |
21010 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
21011 ^A                 Beginning of line    |            delete current line
21012 ^E                 End of line          | ^U       Undelete line(s)
21013 ^Y                 Previous page        |
21014 ^V                 Next page            |-------------------------------------
21015 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21016 ----------------------------------------|
21017 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
21018 ^C   Cancel      |   ^G    Get help     |
21019 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
21020 </PRE>
21021 <!--chtml endif-->
21022 <P><UL>
21023 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21024 </UL><P>
21025 &lt;End of help on this topic&gt;
21026 </BODY>
21027 </HTML>
21028 ======= h_composer_qserv_sn =======
21030 The Surname is usually the family name of a person.
21032 <End of help on this topic>
21033 ======= h_composer_qserv_gn =======
21035 This is the part of a person's name that isn't the surname or initials.
21037 <End of help on this topic>
21038 ======= h_composer_qserv_mail =======
21040 This is the email address of a person.
21042 <End of help on this topic>
21043 ======= h_composer_qserv_org =======
21045 This is the organization a person belongs to.
21047 <End of help on this topic>
21048 ======= h_composer_qserv_unit =======
21050 This is the organizational unit a person belongs to.
21052 <End of help on this topic>
21053 ======= h_composer_qserv_country =======
21055 This is the country a person belongs to.
21057 <End of help on this topic>
21058 ======= h_composer_qserv_state =======
21060 This is the state a person belongs to.
21062 <End of help on this topic>
21063 ======= h_composer_qserv_locality =======
21065 This is the locality a person belongs to.
21067 <End of help on this topic>
21068 ======= h_composer_qserv_custom =======
21070 This one is for advanced users only! If you put something in this field,
21071 then the rest of the fields are ignored.
21073 This field may be set to the string representation of an LDAP search
21074 filter (see RFC1960). Here are some examples:
21076 To search for an entry with a surname equal to "clinton" you could set
21077 the custom filter to:
21079      (sn=clinton)
21080     
21081 This is equivalent to putting "clinton" in the SurName field.
21082 To search for an entry that has a surname that begins with "clint" and
21083 has a givenname equal to "william" you could use:
21085      (&(sn=clint*)(givenname=william))
21086     
21087 This is equivalent to setting the SurName field to "clint*" and the
21088 GivenName field to "william".
21089 To search for an entry where either the common name OR the email address
21090 contains "abcde" you could use:
21092      (|(cn=*abcde*)(mail=*abcde*))
21094 That isn't equivalent to anything you can do by setting the other fields
21095 because of the OR.
21097 <End of help on this topic>
21098 ======= h_composer_qserv_qq =======
21100 This one is a little different from the rest of the categories.  It causes
21101 a search to be formed from the configured search filter that you filled
21102 in when you added the directory server to your configuration. It can also
21103 be combined with the other fields if you'd like.
21105 <End of help on this topic>
21106 ======= h_address_format =======
21107 <HTML>
21108 <HEAD>
21109 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
21110 </HEAD>
21111 <BODY>
21112 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
21114 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
21115 and then a domain, with no spaces.  
21116 For example, jsmith@art.example.com might be the email address
21117 of a person  
21118 with the username &quot;jsmith&quot; who has an account in the domain
21119 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
21120 right of the &quot;@&quot; sign can vary - a shorter example would be 
21121 isabelle@elsewhere.edu (the shortest possible form: here, only the 
21122 organization's domain is specified after the &quot;@&quot; sign); a longer 
21123 example would be 
21124  jsingh@shakti.edutech.example.com
21125 (here, the name of the host &quot;shakti&quot; in the domain 
21126 edutech.example.com is also specified).  
21127 <P>  
21128 If you do not know the exact email address of someone you want to write 
21129 to, ask them what it is using other means of communication than email; or 
21130 use the tools for 
21131 finding people's addresses that are available on the Internet.
21133 If you are sending to someone on the same system as you are, you can leave
21134 the &quot;@&quot; sign and all the information to its right off of the 
21135 address, and Alpine will fill it in automatically, 
21136 unless the feature 
21137 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
21140 When an email address you send a message to is not reachable -- either because 
21141 it is simply an incorrect address, or because email can temporarily not be 
21142 delivered to it due to a technical problem on the way to or at the recipient's 
21143 end -- you will almost always get an error notification email message back.
21145 If you encounter problems with, or have questions about, email delivery or
21146 email address syntax, contact your local network computing consultants.
21147 <P><UL>
21148 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21149 </UL>
21151 &lt;End of help on this topic&gt;
21152 </BODY>
21153 </HTML>
21154 ======= h_flag_user_flag =======
21155 <HTML>
21156 <HEAD>
21157 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
21158 </HEAD>
21159 <BODY>
21160 <H1>STATUS FLAG: User Defined Keyword</h1>
21162 This is a keyword that is defined for this folder.
21163 It was most likely defined by the owner of the folder.
21164 Alpine will not set or clear this flag on its own.
21166 <P><UL>
21167 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21168 </UL><P>
21169 &lt;End of help on this topic&gt;
21170 </BODY>
21171 </HTML>
21172 ======= h_flag_important =======
21173 <html>
21174 <title>STATUS FLAG: Important</title>
21175 <body>
21176 <h1>STATUS FLAG: Important</h1>
21179 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
21180 MESSAGE&nbsp;INDEX
21181 screen, can only be set by the user, and is intended to be used in
21182 whatever fashion makes sense to you.  You are the only one that can set or
21183 clear it. 
21186 &lt;End of help on this topic&gt;
21187 </BODY>
21188 </HTML>
21189 ======= h_flag_new =======
21190 <html>
21191 <title>STATUS FLAG: New</title>
21192 <body>
21193 <h1>STATUS FLAG: New</h1>
21196 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
21197 MESSAGE&nbsp;INDEX screen,
21198 is automatically set when messages are delivered to your Inbox (or other
21199 folder specified outside of Alpine).  Likewise, it is cleared automatically
21200 the first time you read the message it is associated with.
21203 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
21204 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
21205 you'd like to be reminded of it next time you read mail.  This can be done
21206 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
21210 &lt;End of help on this topic&gt;
21211 </BODY>
21212 </HTML>
21213 ======= h_flag_answered =======
21214 <html>
21215 <title>STATUS FLAG: Answered</title>
21216 <body>
21217 <h1>STATUS FLAG: Answered</h1>
21219 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
21220 MESSAGE&nbsp;INDEX
21221 screen, is automatically set when you reply to a message.  This flag is not
21222 automatically cleared.
21225 &lt;End of help on this topic&gt;
21226 </BODY>
21227 </HTML>
21228 ======= h_flag_forwarded =======
21229 <html>
21230 <title>STATUS FLAG: Forwarded</title>
21231 <body>
21232 <h1>STATUS FLAG: Forwarded</h1>
21234 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
21235 MESSAGE&nbsp;INDEX
21236 screen, is automatically set when you forward a message.  This flag is not
21237 automatically cleared.
21240 &lt;End of help on this topic&gt;
21241 </BODY>
21242 </HTML>
21243 ======= h_flag_deleted =======
21244 <html>
21245 <title>STATUS FLAG: Deleted</title>
21246 <body>
21247 <h1>STATUS FLAG: Deleted</h1>
21249 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
21250 MESSAGE&nbsp;INDEX
21251 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
21252 It is cleared
21253 when you use the &quot;U&nbsp;Undelete&quot; command.
21256 Messages marked with this flag will be permanently removed from
21257 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
21258 command, or
21259 when you indicate acceptance of their removal upon leaving the folder.
21262 Note, there can be other actions implicit in the
21263 &quot;D&nbsp;Delete&quot; command,
21264 such as advancing to the next message, that may be momentarily undesirable.
21265 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
21266 flag <A HREF="h_common_flag">explicitly</A>.
21269 &lt;End of help on this topic&gt;
21270 </BODY>
21271 </HTML>
21272 ====== h_config_incoming_timeo ======
21273 <HTML>
21274 <HEAD>
21275 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
21276 </HEAD>
21277 <BODY>
21278 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
21280 This option has no effect unless the feature
21281 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21282 is set, which in turn has no effect unless
21283 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21284 is set.
21286 Sets the time in seconds that Alpine will
21287 attempt to open a network connection used for monitoring for Unseen
21288 messages in Incoming Folders. The default is 5.
21289 If a connection has not completed within this many seconds Alpine will
21290 give up and consider it a failed connection.
21292 <UL>   
21293 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21294 </UL><P>
21295 &lt;End of help on this topic&gt;
21296 </BODY>
21297 </HTML>
21298 ====== h_config_psleep ======
21299 <HTML>
21300 <HEAD>
21301 <TITLE>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</TITLE>
21302 </HEAD>
21303 <BODY>
21304 <H1>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</H1>
21307 In the good old days a mailcap viewer was used to examine an 
21308 attachment before saving it, and after viewing the attachment control 
21309 would return to the operating system when the viewer was closed. Therefore, 
21310 when the mailcap viewer returned control to the operating system, it 
21311 could be assumed that the user who opened the attachment was done
21312 examining it, and the copy of the attachment that was used, could be removed.
21315 However, today this assumption is not longer valid. Some viewers return 
21316 control to the operating system before they actually read the attachment
21317 to be examined. This causes Alpine to delete the attachment before it 
21318 is read by the viewer, causing the viewer to fail opening the attachment.
21321 In order to work around this problem, Alpine checks, after the viewer has 
21322 returned control to the operating system, if there is any process that is 
21323 using the attachment. This variable controls the number of seconds that 
21324 must elapse between checks. Once it is found that no process is using the 
21325 attachment, this is removed.
21328 The minimum value for this variable is 60 (checks will be made once per 
21329 minute), and the maximum value is 600 (checks will be made once every 10 
21330 minutes). The default value is 60.
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_incoming_interv ======
21340 <HTML>
21341 <HEAD>
21342 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
21343 </HEAD>
21344 <BODY>
21345 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
21347 This option has no effect unless the feature
21348 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21349 is set, which in turn has no effect unless
21350 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21351 is set.
21353 This option specifies, in seconds, how often Alpine will check
21354 for new mail and state changes in Incoming Folders when Incoming Folders
21355 Checking is turned on.
21356 The default is 3 minutes (180).
21357 This value applies only to folders that are local to the system that
21358 Alpine is running on or that are accessed using the IMAP protocol.
21359 The similar option
21360 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
21361 applies to all other monitored folders.
21363 <UL>   
21364 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21365 </UL><P>
21366 &lt;End of help on this topic&gt;
21367 </BODY>
21368 </HTML>
21369 ====== h_config_incoming_second_interv ======
21370 <HTML>
21371 <HEAD>
21372 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
21373 </HEAD>
21374 <BODY>
21375 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
21377 This option has no effect unless the feature
21378 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21379 is set, which in turn has no effect unless
21380 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21381 is set.
21383 This option together with the option
21384 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21385 specifies, in seconds, how often Alpine will check
21386 for new mail and state changes in Incoming Folders when Incoming Folders
21387 Checking is turned on.
21388 The default for this option is 3 minutes (180).
21389 For folders that are local to this system or
21390 that are accessed using the IMAP protocol
21391 the value of the option
21392 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21393 is used.
21394 For all other monitored folders, the value of this option is used.
21396 The reason there are two separate options is because it is usually
21397 less expensive to check local and IMAP folders than it is to check
21398 other types, like POP or NNTP folders.
21399 You may want to set this secondary value to a higher number than
21400 the primary check interval.
21402 <UL>   
21403 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21404 </UL><P>
21405 &lt;End of help on this topic&gt;
21406 </BODY>
21407 </HTML>
21408 ====== h_config_incoming_list ======
21409 <HTML>
21410 <HEAD>
21411 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
21412 </HEAD>
21413 <BODY>
21414 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
21416 This option has no effect unless the feature
21417 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21418 is set, which in turn has no effect unless
21419 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21420 is set.
21422 When monitoring the Incoming Message Folders for Unseen messages Alpine will
21423 normally monitor all Incoming Folders.
21424 You may use this option to restrict the list of monitored folders to a
21425 subset of all Incoming Folders.
21427 <UL>   
21428 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21429 </UL><P>
21430 &lt;End of help on this topic&gt;
21431 </BODY>
21432 </HTML>
21433 ====== h_config_pers_name ======
21434 <HTML>
21435 <HEAD>
21436 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
21437 </HEAD>
21438 <BODY>
21439 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
21441 This value is used to determine the full name part of the "From" address
21442 on messages you send.
21443 <!--chtml if pinemode="os_windows"-->
21444  PC-Alpine requires that this be set in order to properly construct the "From" address.
21445 <!--chtml else-->
21446  If unset, Unix Alpine will obtain your full name from
21447  the system password file. PC-Alpine, on the other hand, requires that this be set.
21448 <!--chtml endif-->
21450 If you want to change the value of what gets included in the From header
21451 in messages you send (other than just the Personal Name)
21452 look <A HREF="h_config_change_your_from">here</A> for a description.
21453 <P><UL>
21454 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21455 </UL><P>
21456 &lt;End of help on this topic&gt;
21457 </BODY>
21458 </HTML>
21459 ====== h_config_pruned_folders ======
21460 <html>
21461 <header>
21462 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
21463 </header>
21464 <body>
21465 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
21467 This variable allows you to define a list of one or more folders that
21468 Alpine will offer to prune for you in the same way it automatically offers
21469 to prune your "sent-mail" folder each month.
21470 Each folder in this list must be a folder in your default folder collection
21471 (the first folder collection if you have more than one), and it is just
21472 the relative name of the folder in the collection, not the fully-qualified name.
21473 It is similar to sent-mail.
21474 Instead of something like
21476 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
21478 the correct value to use would be
21480 <CENTER><SAMP>folder</SAMP></CENTER>
21482 There is an assumption here that your first collection is the folders in
21484 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
21487 Once a month, for each folder listed, Alpine will offer to move
21488 the contents of the folder to a new folder of the same name but with
21489 the previous month's date appended.  Alpine will then look for any such
21490 date-appended folder names created for a previous month, and offer each
21491 one it finds for deletion.
21494 If you decline the first offer, no mail is moved and no new folder is
21495 created.
21498 The new folders will be created
21499 in your default folder collection.
21502 <UL>   
21503 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21504 </UL><P>
21505 &lt;End of help on this topic&gt;
21506 </body>
21507 </html>
21508 ====== h_config_upload_cmd ======
21509 <HTML>
21510 <HEAD>
21511 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
21512 </HEAD>
21513 <BODY>
21514 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
21516 This option affects the behavior of the Composer's &quot;Read File&quot; 
21517 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
21518 commands.  It specifies
21519 a Unix program name, and any necessary command line arguments, that Alpine can
21520 use to transfer files from your personal computer into messages that you are
21521 composing.<P>
21523 <B>Note:</B> this facility is intended for use with serial line transfer 
21524 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21525 to work with TCP/IP file transfer programs such as ftp.<P>
21527 If a program is specified, the commands listed above are modified to offer a
21528 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
21529 specified here must match the transfer program or protocol available on the
21530 personal computer.<P>
21532 Alpine expects to exchange uploaded data via a file on your Unix system.  When
21533 the specified upload program finishes, Alpine expects the uploaded data to be
21534 contained in this file.<P>
21536 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
21537 generates a
21538 temporary file name that it will pass to the specified Unix program.  Alpine
21539 will read the resulting uploaded text from this file and then delete it when
21540 the upload command is finished.<P>
21542 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
21543 prompt
21544 you for the name of the file that is to contain the uploaded information that
21545 it is to attach.  Alpine will attach this file to the composition, but will
21546 <B>not</B> delete this file after the upload command is finished.<P>
21548 The special token &quot;_FILE_&quot; may be included among the Unix program's 
21549 command
21550 line arguments.  Alpine will replace this symbol with the name of the file
21551 being used to exchange the uploaded information.  This token allows you to
21552 position the file name where it is required in the Unix program's command
21553 line arguments.<P>
21555 If the &quot;_FILE_&quot; token is not present in the specified command, the
21556 temporary file's name is automatically appended to the specified Unix
21557 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21558 <B>last</B> command line argument.
21559 <P><UL>
21560 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21561 </UL><P>
21562 &lt;End of help on this topic&gt;
21563 </BODY>
21564 </HTML>
21565 ====== h_config_upload_prefix ======
21566 <HTML>
21567 <HEAD>
21568 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
21569 </HEAD>
21570 <BODY>
21571 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
21573 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
21574 It defines text to be written to the terminal emulator (via standard output)
21575 immediately prior to starting upload command.  This is useful for
21576 integrated serial line file transfer agents that permit command passing
21577 (e.g., Kermit's APC method).<P>
21579 The special token &quot;_FILE_&quot; may be included in the string specification.
21580 That symbol will be replaced with the (Alpine-created) name of the temporary
21581 file in which Alpine will expect to find the uploaded file.
21582 <P><UL>
21583 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21584 </UL><P>
21585 &lt;End of help on this topic&gt;
21586 </BODY>
21587 </HTML>
21588 ====== h_config_download_cmd ======
21589 <HTML>
21590 <HEAD>
21591 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
21592 </HEAD>
21593 <BODY>
21594 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
21596 This option affects the behavior of the Export command.  It specifies a Unix
21597 program name, and any necessary command line arguments, that Alpine can use to
21598 transfer the exported message to your personal computer's disk.<P>
21599 Note: this facility is intended for use with serial line transfer 
21600 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21601 to work with TCP/IP file transfer programs such as ftp.<P>
21602 If a program is specified, the Export command is modified to offer a
21603 subcommand (^V) to activate the transfer (in lieu of saving it to
21604  the machine where Alpine is running).  Obviously, the Unix program
21605 specified here must match the transfer program or protocol available on the
21606 personal computer.<P>
21608 When this subcommand is selected and before Alpine invokes the specified Unix
21609 program, Alpine will create a temporary file containing the text of the
21610 exported message.  Alpine uses this file to pass the exported message text to
21611 the specified Unix program.<P>
21613 The special token &quot;_FILE_&quot; may be included among the Unix program's command
21614 line arguments.  Alpine will replace this symbol with the temporary file's name
21615 before executing the Unix program.  This token allows you to position the
21616 file name where it is required in the Unix program's command line arguments.
21618 If the &quot;_FILE_&quot; token is not present in the specified command, the
21619 temporary file's name is automatically appended to the specified Unix
21620 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21621 <B>last</B> command line argument.
21622 <P><UL>
21623 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21624 </UL><P>
21625 &lt;End of help on this topic&gt;
21626 </BODY>
21627 </HTML>
21628 ====== h_config_download_prefix ======
21629 <HTML>
21630 <HEAD>
21631 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
21632 </HEAD>
21633 <BODY>
21634 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
21636 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
21637 It defines text to be written to the terminal emulator (via standard output)
21638 immediately prior to starting the download command.  This is useful for
21639 integrated serial line file transfer agents that permit command passing
21640 (e.g., Kermit's APC method).
21642 The special token &quot;_FILE_&quot; may be included in the string 
21643 specification.
21644 That symbol will be replaced with the (Alpine-created) name of the temporary
21645 file into which Alpine will place the message to be downloaded.
21646 <P><UL>
21647 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21648 </UL><P>
21649 &lt;End of help on this topic&gt;
21650 </BODY>
21651 </HTML>
21652 ====== h_config_mailcap_path ======
21653 <HTML>
21654 <HEAD>
21655 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
21656 </HEAD>
21657 <BODY>
21658 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
21659 This variable is used to replace Alpine's default mailcap file search path.
21660 It takes one or more file names (full paths must be specified) in which to
21661 look for mail capability data.  The default search path can be found in this
21662 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
21663 If there is more than one file name listed, list members should be delimited
21664 by 
21665 <!--chtml if pinemode="os_windows"-->
21666 a semi-colon (;) under Windows; for example:<PRE>
21667         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
21668 </PRE>
21669 <!--chtml else-->
21670 a colon (:) under UNIX; for example:<PRE>
21671         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
21672 </PRE>
21673 <!--chtml endif-->
21674 <P><UL>
21675 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21676 </UL>
21678 &lt;End of help on this topic&gt;
21679 </BODY>
21680 </HTML>
21681 ====== h_config_mimetype_path ======
21682 <HTML>
21683 <HEAD>
21684 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
21685 </HEAD>
21686 <BODY>
21687 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
21689 This variable is used to replace Alpine's default mime.types file search path.
21690 It takes one or more file names (full paths must be specified) in which to
21691 look for file-name-extension to MIME type mapping data.  The default search
21692 path can be found in this
21693 <A HREF="h_news_config">Alpine Configuration</A> help.
21697 If there is more than one file name listed, list members should be delimited
21698 by a colon (:) under UNIX and a semi-colon (;) under Windows.
21700 &lt;End of help on this topic&gt;
21701 </BODY></HTML>
21702 ====== h_config_set_att_ansi ======
21703 <HTML><HEAD>
21704 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
21705 </HEAD>
21706 <BODY>
21707 <H1>OPTION: Set printer to attached ansi printer</H1>
21709 Type "S" to set your printer to "attached-to-ansi".<BR>
21710 It is OK to include "attached-to-ansi" in your personal list below.
21712 &lt;End of help on this topic&gt;
21713 </BODY></HTML>
21714 ====== h_config_set_att_ansi2 ======
21715 <HTML><HEAD>
21716 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
21717 </HEAD>
21718 <BODY>
21719 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
21721 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
21722 It is OK to include "attached-to-ansi-no-formfeed" in your personal
21723 list below.
21727 This is the same as the "attached-to-ansi" option except that a
21728 formfeed character will not be appended to the end of the print job.
21729 If your printer already ejects the paper by itself at the end of the
21730 job, you may prefer the "no-formfeed" form of this printer so that you
21731 don't get an extra blank page between print jobs.
21734 &lt;End of help on this topic&gt;
21735 </BODY></HTML>
21736 ====== h_config_set_att_wyse ======
21737 <HTML><HEAD>
21738 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
21739 </HEAD>
21740 <BODY>
21741 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
21743 Type "S" to set your printer to "attached-to-wyse".<BR>
21744 It is OK to include "attached-to-wyse" in your personal list below.
21746 This is very similar to "attached-to-ansi".
21747 The only difference is in the control characters sent to turn the printer
21748 on and off.
21749 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
21750 to turn on the printer and ESC LEFT_BRACKET 4 i
21751 to turn it off.
21752 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
21753 &lt;End of help on this topic&gt;
21754 </BODY></HTML>
21755 ====== h_config_set_att_wyse2 ======
21756 <HTML><HEAD>
21757 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
21758 </HEAD>
21759 <BODY>
21760 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
21762 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
21763 It is OK to include "attached-to-wyse-no-formfeed" in your personal
21764 list below.
21768 This is the same as the "attached-to-wyse" 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_stand_print ======
21778 <HTML>
21779 <HEAD>
21780 <TITLE>OPTION: Set default printer</TITLE>
21781 </HEAD>
21782 <H1>OPTION: Set default printer</H1>
21783 <BODY>
21784 Move to the printer you want and type "S" to set it to be your
21785 default printer.  This list is not modifiable by you and has been
21786 set up by the system administrators.  If there is more than one printer
21787 listed in the Command List, you will be able to cycle through that
21788 whole list at the time you print, starting with your default.
21789 It is OK to include entries from this Standard list in your personal
21790 list below.
21792 &lt;End of help on this topic&gt;
21793 </BODY>
21794 </HTML>
21795 ====== h_config_set_custom_print ======
21796 <HTML>
21797 <HEAD>
21798 <TITLE>OPTION: Set default printer</TITLE>
21799 </HEAD>
21800 <H1>OPTION: Set default printer</H1>
21801 <BODY>
21802 You may add as many print commands as you want to your personal list.
21803 Specify one of them as your default printer by moving to the printer
21804 you want and typing "S".  If there is more than one printer listed
21805 in the Command List, you will be able to cycle through that list at
21806 the time you print, starting with your default.  It is OK to include
21807 entries from the Standard list above or to include the command
21808 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
21809 "attached-to-wyse-no-formfeed" as one of the entries here.
21811 &lt;End of help on this topic&gt;
21812 </BODY>
21813 </HTML>
21814 ====== h_config_user_id =====
21815 <HTML>
21816 <HEAD>
21817 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
21818 </HEAD>
21819 <BODY>
21820 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
21822 This value is used as part of the "From" address on messages you send.
21823 It is also the default login name for remote IMAP server access.  Set this
21824 to the username part you want to appear on outgoing email.
21826 If you want to change the value of what gets included in the From header
21827 in messages you send (other than just the User ID)
21828 look <A HREF="h_config_change_your_from">here</A> for a description.
21830 <P><UL>   
21831 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21832 </UL><P>
21833 &lt;End of help on this topic&gt;
21834 </BODY>
21835 </HTML>
21836 ====== h_config_user_dom =====
21837 <HTML>
21838 <HEAD>
21839 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
21840 </HEAD>
21841 <BODY>
21842 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
21844 This value specifies the domain part (right-hand side) of your return
21845 address on outgoing email and is also used as the default domain for email
21846 composed to a local user.
21847 <!--chtml if pinemode="os_windows"-->
21848  This value is required for PC-Alpine. If you are unsure as to what this should be,
21849  contact your local help desk, system administrator, or Internet Service Provider.
21850 <!--chtml else-->
21851  If unset, Unix Alpine will obtain the domain from
21852  the system.  Often this value will be set for your whole site by the
21853  system administrator.<P>
21854 <!--chtml endif-->
21855 If you set this, see also the <A HREF="h_config_quell_local_lookup">
21856 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
21858 If you want to change the value of what gets included in the From header
21859 in messages you send (other than just the User Domain)
21860 look <A HREF="h_config_change_your_from">here</A> for a description.
21861 <P><UL>
21862 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21863 </UL><P>
21864 &lt;End of help on this topic&gt;
21865 </BODY>
21866 </HTML>
21867 ====== h_config_smtp_server =====
21868 <HTML>
21869 <HEAD>
21870 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
21871 </HEAD>
21872 <BODY>
21873 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
21874 This value specifies the name of one or more SMTP 
21875 (Simple Mail Transfer Protocol) servers for sending mail. 
21876 <!--chtml if pinemode="os_windows"-->
21877 You must have an SMTP server for use with PC-Alpine.
21878 SMTP servers are
21879 normally set up by a system administrator for use by all members of a given
21880 campus or department.
21881 Contact your local help desk to ask what SMTP
21882 servers you should use.  
21883 <!--chtml else-->
21884 Unix Alpine users may not need to set an SMTP server.
21885 Alpine will attempt to execute the program (usually sendmail) that is used
21886 to insert mail into the mail system.
21887 If this works for you, you may leave this option blank.
21888 If there is an SMTP server running on the Unix host you may be able to
21889 improve sending performance slightly by setting the SMTP server option
21890 to &quot;localhost&quot; or to the actual name of the Unix host.
21892 If the Unix host doesn't work the way Alpine was expecting you will need to
21893 set the value of this option.
21894 SMTP servers are
21895 normally set up by a system administrator for use by all members of a given
21896 campus or department.
21897 Contact your local help desk to ask what SMTP
21898 servers you should use.  
21899 <!--chtml endif-->
21901 Your SMTP server may offer SMTP AUTH authentication.
21902 It may even require it.
21903 If your SMTP server offers SMTP AUTH authentication you may specify a
21904 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
21905 This parameter requires an associated value,
21906 the username identifier with which to establish the server
21907 connection.
21908 An example might be:
21911 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
21914 If AUTH authentication is offered by the server, this will cause Alpine to
21915 attempt to use it.
21916 If AUTH authentication is not offered by the server, this will cause Alpine
21917 to fail sending with an error similar to:
21920 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
21923 Another type of authentication that is used by some ISPs is called
21924 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
21925 which means that you have to authenticate
21926 yourself to the POP or IMAP server by opening a mailbox before you
21927 can send mail.
21928 To do this, you usually only have to open your INBOX.
21931 You may tell Alpine to use the
21932 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
21933 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
21934 parameter
21935 in this option.
21936 At this time &quot;/submit&quot; is simply equivalent to specifying
21937 port 587, though it may imply more than that at some point in the future.
21938 Some ISPs are blocking port 25 in order to reduce the amount of spam
21939 being sent to their users.
21940 You may find that the submit option allows you to get around such a block.
21943 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
21946 To specify any non-standard port number on the SMTP server you may follow
21947 the hostname with a colon followed by the portnumber.
21950 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
21953 Normally, when a connection is made to the Smtp-Server Alpine will attempt
21954 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
21955 If that fails then a non-encrypted connection will be attempted instead.
21956 You may specify that a TLS connection is required if you wish.
21957 If you append &quot;/tls&quot; to the name then the connection will fail
21958 instead of falling back to a non-secure connection.
21961 <CENTER><SAMP>smtpserver.example.com/tls</SAMP></CENTER>
21965 For more details about server name possibilities see
21966 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
21969 <UL>
21970 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21971 </UL>
21973 &lt;End of help on this topic&gt;
21974 </BODY>
21975 </HTML>
21976 ====== h_config_nntp_server =====
21977 <HTML>
21978 <HEAD>
21979 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
21980 <BODY>
21981 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
21983 This value specifies the name of one or more NNTP
21984 (Network News Transfer Protocol)
21985 servers for reading and posting USENET news.
21986 NNTP servers are normally
21987 set up by a system administrator for use by all members of a given campus
21988 or department.
21989 Contact your local help desk to ask what NNTP servers you should use.  
21990 <!--chtml if pinemode="os_windows"--><!--chtml else-->
21991 Often Unix Alpine users will find that this variable has been
21992 set for the whole system (and they don't have to worry about it).  
21993 <!--chtml endif-->
21994 When you define an NNTP server here, Alpine implicitly defines a news
21995 collection for you, assuming that server as the news server and assuming
21996 that you will use the NNTP protocol and a local newsrc configuration file
21997 for reading news.
21998 For more about reading news with Alpine, see
21999 <A HREF="h_reading_news">how to use Alpine to read news</A>.
22001 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
22002 or &quot;AUTHINFO USER&quot; authentication.
22003 It may even require it.
22004 If your NNTP server does offer such authentication you may specify a user name
22005 parameter to cause Alpine to attempt to authenticate.
22006 The same is true for the server name in a folder collection that uses NNTP.
22007 This parameter requires an associated value,
22008 the username identifier with which to establish the server connection.
22009 An example might be:
22012 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
22015 If authentication is offered by the server, this will cause Alpine to
22016 attempt to use it.
22017 If authentication is not offered by the server, this will cause Alpine
22018 to fail with an error similar to:
22021 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
22023 For more details about the server name possibilities see
22024 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22025 <P><UL>
22026 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22027 </UL><P>
22028 &lt;End of help on this topic&gt;
22029 </BODY>
22030 </HTML>
22031 ====== h_config_inbox_path =====
22032 <HTML>
22033 <HEAD>
22034 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
22035 </HEAD>
22036 <BODY>
22037 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
22039 This value overrides the default value of your INBOX name/path/location.
22040 <!--chtml if pinemode="os_windows"-->
22041 PC-Alpine users must specify an inbox path and it must be a folder on an
22042 IMAP server.  
22043 <!--chtml else-->
22044 Unix and VMS Alpine users will often find that this variable
22045 has been pre-configured by your system administrator.  
22046 <!--chtml endif-->
22047 You may be able to specify an alternate INBOX that is either a local folder 
22048 or a folder on an IMAP server.
22050 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
22051 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
22052 mail server.
22054 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22055 details on the syntax of folder definitions.
22057 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
22058 mail is disappearing.
22059 <P><UL>
22060 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22061 </UL><P>
22062 &lt;End of help on this topic&gt;
22063 </BODY>
22064 </HTML>
22065 ====== h_config_change_your_from =====
22066 <HTML>
22067 <HEAD>
22068 <TITLE>How to Change your From Address</TITLE>
22069 </HEAD>
22070 <BODY>
22071 <H1>How to Change your From Address</H1>
22073 If the From address that Alpine includes in mail that you send is not correct,
22074 you may want to configure a different default value for the From address.
22075 You may follow these directions to change the default:
22078 <UL>
22079   <LI> Go to the Main Alpine Menu
22080   <LI> From there type the Setup Command
22081   <LI> From there type the Config Command
22082 </UL>
22085 You've probably already seen this SETUP CONFIGURATION screen.
22086 If not, there are many options you may want to set here.
22087 To set the value of the From header you may use the
22088 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
22089 Find it by scrolling down a few pages or use the WhereIs command to
22090 search for &quot;customized&quot;.
22091 You may want to read the help text associated with the option.
22093 To add a custom From header, type the Add command and enter the
22094 full header line, including the leading &quot;From:&nbsp;&quot;.
22095 For example:
22097 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22099 Now exit the Setup command and try sending mail to yourself to see
22100 what the From line looks like.
22102 When you are in the composer you may edit the custom From line by typing
22103 Ctrl-R while your cursor is in the headers of the message and then moving
22104 to the From line and editing.
22105 If you want to leave the default value the same but add the possibility
22106 of being able to edit the header when you compose, add just the header
22107 name without a value.
22108 For example:
22110 <CENTER><SAMP>From:</SAMP></CENTER>
22112 If you change your From address you may also find it useful to add the
22113 changed From address to the
22114 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22115 configuration option.
22117 <UL>   
22118 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22119 </UL><P>
22120 &lt;End of help on this topic&gt;
22121 </BODY>
22122 </HTML>
22123 ====== h_config_default_fcc =====
22124 <HTML>
22125 <HEAD>
22126 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
22127 </HEAD>
22128 <BODY>
22129 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
22131 This value specifies where a copy of outgoing mail should be saved.  If
22132 this is not a path name, it will be in the default collection for saves.
22133 Any valid folder specification, local or IMAP, is allowed.  This default
22134 folder carbon copy only applies when the 
22135 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
22136 is set to use the default folder.  
22137 <!--chtml if pinemode="os_windows"-->
22138 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
22139 <!--chtml else-->
22140 Unix Alpine default
22141 is normally &quot;sent-mail&quot; in the default folder collection. 
22142 <!--chtml endif-->
22144 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
22145 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
22146 IMAP server (remember that in order to later access this remote folder through Alpine, it
22147 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22148 for more information). An example:<p>
22149 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
22151 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
22153 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22154 details on the syntax of folder definitions.
22156 <UL>   
22157 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22158 </UL><P>
22159 &lt;End of help on this topic&gt;
22160 </BODY>
22161 </HTML>
22162 ====== h_config_def_save_folder =====
22163 <HTML>
22164 <HEAD>
22165 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
22166 </HEAD>
22167 <BODY>
22168 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
22170 This option determines the default folder name for save-message operations 
22171 (&quot;saves&quot;).
22173 If 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 only applies when the
22176 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
22177 doesn't override it.  
22178 <!--chtml if pinemode="os_windows"-->
22179 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
22180 <!--chtml else-->
22181 Unix Alpine default
22182 is normally &quot;saved-messages&quot; in the default folder collection.
22183 <!--chtml endif-->
22184 If you access your email through an IMAP server, especially if you often switch between Unix
22185 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
22186 IMAP server (remember that in order to later access this remote folder through Alpine, it
22187 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22188 for more information). An example:<p>
22189 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
22191 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22192 details on the syntax of folder definitions.
22194 <UL>   
22195 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22196 </UL><P>
22197 &lt;End of help on this topic&gt;
22198 </BODY>
22199 </HTML>
22200 ====== h_config_postponed_folder =====
22201 <HTML>
22202 <HEAD>
22203 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
22204 </HEAD>
22205 <BODY>
22206 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
22208 This value overrides the default name for the folder where postponed
22209 messages are saved.  If this is not a path name, it will be in the default
22210 collection for message Saves.  Any valid folder specification, local or
22211 remote, is allowed. 
22212 PC-Alpine default
22213 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
22214 The Unix Alpine default is normally &quot;postponed-msgs&quot;
22215 in the default collection. 
22217 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
22218 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
22219 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
22220 in all Alpine copies you use. 
22221 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
22222 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
22223 for more information). An
22224 example:<p> 
22225 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
22227 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22228 details on the syntax of folder definitions.
22230 <UL>   
22231 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22232 </UL><P>
22233 &lt;End of help on this topic&gt;
22234 </BODY>
22235 </HTML>
22236 ====== h_config_read_message_folder =====
22237 <HTML>
22238 <HEAD>
22239 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
22240 </HEAD>
22241 <BODY>
22242 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
22244 By virtue of specifying a folder name here, Alpine will be configured to
22245 save all messages that you have read during a session into the designated
22246 &quot;read messages&quot; folder.  This allows you to more easily distinguish
22247 between your really new email (in your INBOX) and those that you have
22248 already read.  Depending on how you define the 
22249 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22250 setting, you may or may not be asked when you quit
22251 Alpine if you want read messages to be moved to this folder.  In either
22252 case, moving the messages means they will be deleted from your INBOX.
22254 If this is not a path name, it will be in the default collection for
22255 saves.  Any valid folder specification, local or remote (via IMAP), is
22256 allowed.  There is no default for the name of the read message folder.
22258 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22259 details on the syntax of folder definitions.
22261 <UL>   
22262 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22263 </UL><P>
22264 &lt;End of help on this topic&gt;
22265 </BODY>
22266 </HTML>
22267 ====== h_config_form_folder =====
22268 <HTML>
22269 <HEAD>
22270 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
22271 </HEAD>
22272 <BODY>
22273 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
22275 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
22276 contain messages that you have composed and that are intended to be
22277 sent in their original form repeatedly.
22280 Setting this variable will alter Alpine's usual behavior when you
22281 execute the Compose command.  Normally, Alpine offers a chance to
22282 continue a postponed or interrupted message should one or the other
22283 exist.  When this variable is set to a folder name that exists, Alpine
22284 will also offer the chance to select a message from the folder to
22285 insert into the composer (much like when continuing a postponed message).
22286 The difference, however, is that Alpine will not automatically delete
22287 the selected message from the Form Letter Folder.
22289 Setting this variable will also affect Alpine's behavior when you
22290 Postpone a message from the composer.  Normally, Alpine simply stashes
22291 the message away in your
22292 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
22293 Regardless of the specified folder's existence, Alpine will ask which
22294 folder you intend the message to be stored in.  Choose the
22295 &quot;F&quot; option to store the message in your Form Letter Folder.
22296 This is the most common way to add a message to the folder.
22299 Another method of adding messages to the folder is via the Alpine
22300 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
22301 you expect to send in the same form again, you can enter the Form
22302 Letter Folder's name in this field.  Alpine, as usual, will copy the
22303 message as it's sent.  Note, when you later select this message from 
22304 your Form Letter Folder, it will have the same recipients as the original
22305 message.
22308 To delete a message from the Form Letter Folder, you can either select
22309 the folder from a suitable FOLDER LIST screen, or use the Delete
22310 command in the MESSAGE INDEX offered when selecting from the folder as
22311 part of the Compose command.  You can delete a Form Letter Folder just
22312 as any other folder from a suitable FOLDER LIST screen.
22315 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
22316 facility can be used
22317 to replace the Form Letter Folder.
22320 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22321 details on the syntax of folder definitions.
22324 <UL>   
22325 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22326 </UL><P>
22327 &lt;End of help on this topic&gt;
22328 </BODY>
22329 </HTML>
22330 ====== h_config_archived_folders =====
22331 <HTML>
22332 <HEAD>
22333 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
22334 </HEAD>
22335 <BODY>
22336 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
22338 This is like
22339 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
22340 only more general.  You may archive
22341 any of the folders in your incoming collection.  This is a list of folder
22342 pairs, with the first separated from the second in the pair by a space.
22343 The first folder in a pair is the folder you want to archive, and the
22344 second folder is the folder that read messages from the first should be
22345 moved to.  Depending on how you define the
22346 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22347 setting, you may or may not be asked when you
22348 leave the first folder if you want read messages to be moved to the
22349 second folder.  In either case, moving the messages means they will be
22350 deleted from the first folder.
22352 The name of the first folder in each pair can be either the technical
22353 specification of the folder (like what appears in your configuration file)
22354 or (much easier) the nickname that you gave the folder when you made it
22355 an incoming folder.
22357 For example:<p>
22358 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
22359 <p>or, using nicknames:<p>
22360 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
22362 If these are not path names, they will be in the default collection for
22363 saves. Any valid folder specification, local or remote (via IMAP), is
22364 allowed. There is no default.
22366 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22367 details on the syntax of folder definitions.
22369 <UL>   
22370 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22371 </UL><P>
22372 &lt;End of help on this topic&gt;
22373 </BODY>
22374 </HTML>
22375 ====== h_config_newsrc_path ======
22376 <HTML>
22377 <HEAD>
22378 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
22379 </HEAD>
22380 <BODY>
22381 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
22383 This option overrides the default name Alpine uses for your "newsrc" news
22384 status and subscription file.  If set, Alpine will take this value as the
22385 full pathname for the desired newsrc file.<P>
22387 If this option is <B>not</B> set, 
22388 <!--chtml if pinemode="os_windows"-->
22389 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
22390 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
22391 directory as your pinerc file for NEWSRC.
22392 <!--chtml else-->
22393 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
22394 your account's home directory).
22395 <!--chtml endif-->
22396 <P><UL>
22397 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22398 </UL>
22400 &lt;End of help on this topic&gt;
22401 </BODY>
22402 </HTML>
22403 ====== h_config_literal_sig =====
22404 <HTML>
22405 <HEAD>
22406 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
22407 </HEAD>
22408 <BODY>
22409 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
22411 With this option your actual signature, as opposed to
22412 the name of a file containing your signature,
22413 is stored in the Alpine configuration file.
22414 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
22417 This is simply a different way to store the signature.
22418 The signature is stored inside your Alpine configuration file instead of in
22419 a separate file.
22420 Tokens work the same way they do with the
22421 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
22422 help.
22425 The Setup/Signature command on Alpine's MAIN MENU will edit
22426 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
22427 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
22428 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
22429 instead.
22432 The two character sequence &#92;n (backslash followed by
22433 the character n) will be used to signify a line-break in your signature.
22434 You don't have to enter the &#92;n, but it will be visible in the
22435 SETUP CONFIGURATION window after you are done editing the signature.
22438 <UL>   
22439 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22440 </UL><P>
22441 &lt;End of help on this topic&gt;
22442 </BODY>
22443 </HTML>
22444 ====== h_config_signature_file =====
22445 <HTML>
22446 <HEAD>
22447 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
22448 </HEAD>
22449 <BODY>
22450 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
22452 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
22453 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
22454 You can tell that that is the case because the value of the
22455 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
22457 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
22459 You may either use all Literal Signatures (signatures stored in your
22460 configuration file) throughout Alpine, or all signature files.
22461 You can't mix the two.
22463 This is the name of a file that will be automatically inserted into
22464 outgoing messages.
22465 It typically contains information such as your
22466 name, email address and organizational affiliation.
22467 Alpine adds the
22468 signature into the message as soon as you enter the composer so you
22469 can choose to remove it or edit it on a message by message basis.
22470 Signature file placement in message replies is controlled by the
22471 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
22472 setting in the feature list.
22475 The default file name is
22476 <!--chtml if pinemode="os_windows"-->
22477 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
22478 PINERC file is a local file.
22479 If your PINERC file is remote, then it will be in the directory specified
22480 by the &quot;-aux local_directory&quot; command line option.
22481 <!--chtml else-->
22482 &quot;.signature&quot;.
22483 <!--chtml endif-->
22486 To create or edit your signature file choose Setup from the MAIN MENU
22487 and then select S for Signature (Main/Setup/Signature).  This puts you
22488 into the Signature Editor where you can enter a <EM>few</EM> lines of
22489 text containing your identity and affiliation.
22492 If the filename is followed by a vertical bar (|) then instead
22493 of reading the contents of the file the file is assumed to be a
22494 program that will produce the text to be used on its standard output.
22495 The program can't have any arguments and doesn't receive any input from Alpine,
22496 but the rest of the processing works as if the contents came from a file.
22499 Instead of storing the data in a local file, the
22500 signature data may be stored remotely in an IMAP folder.
22501 In order to do this, 
22502 you must use a remote name for the file.
22503 A remote <!--#echo var="VAR_signature-file"--> name might look like:
22505 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
22508 The syntax used here is the same as the syntax used for remote configuration
22509 files from the command line.
22510 Note that you may not access an existing signature file remotely,
22511 you have to create a new <EM>folder</EM> that contains the signature data.
22512 If the name you use here for the signature file is a remote name, then when
22513 you edit the file from the Setup/Signature command the data will be stored
22514 remotely in the folder.
22515 You aren't required to do anything special to create the folder, it
22516 gets created automatically if you use a remote name.
22519 Besides regular text, the signature file may also contain
22520 (or a signature program may produce) tokens that
22521 are replaced with text that usually depends on the message you are replying
22522 to or forwarding.
22523 For example, if the signature file contains the token
22525 <CENTER><SAMP>_DATE_</SAMP></CENTER>
22527 anywhere in the text, then that token is replaced by the date
22528 the message you are replying to or forwarding was sent.
22529 If it contains
22531 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
22533 that is replaced with the current date.
22534 The first is an example of a token that depends on the message you
22535 are replying to (or forwarding) and the second is an example which
22536 doesn't depend on anything other than the current date.
22537 You have to be a little careful with this facility since tokens that
22538 depend on the message you are replying to or forwarding will be replaced
22539 by nothing in the case where you are composing a new message from scratch.
22540 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
22541 in this respect.
22542 It allows you to use different signature files in different cases.
22545 The list of tokens available for use in the signature file is
22546 <A HREF="h_index_tokens">here</A>.
22549 Instead of, or along with the use of &quot;roles&quot; to give you
22550 different signature files in different situations, there is also
22551 a way to conditionally include text based
22552 on whether or not a token would result in specific replacement text.
22553 For example, you could include some text based on whether or not
22554 the _NEWS_ token would result in any newsgroups if it was used.
22555 This is explained in detail
22556 <A HREF="h_reply_token_conditionals">here</A>.
22557 This isn't for the faint of heart.
22559 In the very unlikely event that you want to include a literal token
22560 in the signature you must precede it with a backslash character.
22561 For example,
22563 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
22565 would produce something like
22567 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
22569 It is not possible to have a literal backslash followed by an expanded token.
22571 An alternate method for storing the signature data is available by using the
22572 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
22573 This variable will be used by default.
22575 <UL>   
22576 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22577 </UL><P>
22578 &lt;End of help on this topic&gt;
22579 </BODY>
22580 </HTML>
22581 ====== h_config_init_cmd_list =====
22582 <HTML>
22583 <HEAD>
22584 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
22585 </HEAD>
22586 <BODY>
22587 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
22589 The initial keystroke--or command--list option lets you start Alpine at
22590 any place you like.
22591 Whatever keystrokes you specify here will be executed
22592 by Alpine upon startup as a macro.
22593 The words SPACE, TAB, DOWN, UP, LEFT, and
22594 RIGHT indicate the pressing of those keys.
22595 CR indicates the pressing of the RETURN key.
22596 F1 through F12 represent the function keys, and ^ followed
22597 by a character indicates that key pressed along with the control key (in
22598 other words, ^P means Ctrl-P).
22599 As a shortcut notation, an element of the list may be several characters
22600 surrounded by double-quotes (").
22601 That will be expanded into the individual keystrokes
22602 (excluding the double-quote characters).
22603 For example, the quoted-string
22605 <P><CENTER>"ABC"</CENTER>
22608 is interpreted the same as the three separate list members
22610 <P><CENTER>A and B and C</CENTER>
22613 which is also the same as
22615 <P><CENTER>A,B,C</CENTER>
22618 An example: To view message 1 on startup,
22619 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
22621 <P><CENTER>I,J,1,CR,V</CENTER>
22624 An equivalent version of this is
22626 <P><CENTER>"IJ1",CR,V</CENTER>
22629 Restrictions: You cannot pre-type into the composer with the initial
22630 keystroke list, and you cannot mix function key commands with letter
22631 commands.
22633 <P><UL>   
22634 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22635 </UL>
22637 &lt;End of help on this topic&gt;
22638 </BODY>
22639 </HTML>
22640 ====== h_config_comp_hdrs =====
22641 <html>
22642 <header>
22643 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
22644 </header>
22645 <body>
22646 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
22648 You can control which headers you want visible when composing outgoing
22649 email using this option.
22650 You can specify any of the regular set, any
22651 <A HREF="h_compose_richhdr">Rich Header</A>,
22652 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22653 that you have already defined.
22654 If you use this setting at all, you must specify all the
22655 headers you want to see, you can't just add to the regular header set.
22656 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
22658 Note that the "Newsgroups:" header will be abbreviated in the Composer
22659 display, but should be spelled out in full here.<p>
22660 <UL>   
22661 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22662 </UL><P>
22663 &lt;End of help on this topic&gt;
22664 </body>
22665 </html>
22666 ====== h_config_custom_hdrs =====
22667 <HTML>
22668 <HEAD>
22669 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
22670 </HEAD>
22671 <BODY>
22672 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
22674 You may add your own custom headers to outgoing messages.
22675 Each header you specify here must include the header tag 
22676 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
22677 and may optionally include a value for that header.
22678 If you want to see these custom headers each time you compose a message,
22679 you must add them to your
22680 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
22681 otherwise they become part
22682 of the rich header set that you only see when you press the
22683 <A HREF="h_compose_richhdr">Rich Header</A>
22684 <!--chtml if pinemode="function_key"-->(F5)
22685 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
22686 (If you are looking for a way to change which headers are <EM>displayed</EM>
22687 when you view a message, take a look at the
22688 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
22689 option instead.)
22690 Here's an example that shows how you might set your From address
22692 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22694 and another showing how you might set a Reply-To address
22696 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
22698 You may also set non-standard header values here.
22699 For example, you could add
22701 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
22703 or even
22705 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
22707 If you include a value after the colon then that header will be included
22708 in your outgoing messages unless you delete it before sending.
22709 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
22710 it will not be included in outgoing messages unless you edit a value
22711 in manually.
22712 For example, if
22714 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
22716 is in the list, then the Reply-To header will be available for editing
22717 but won't be included unless a value is added while in the composer.
22719 It's actually a little more complicated than that.
22720 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
22721 defaults.
22722 If the message you are about to compose already has a value for a header,
22723 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
22724 For example, if you are Replying to a message the Subject field
22725 will already be filled in.
22726 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
22727 custom subject will <EM>NOT</EM> be used.
22728 The subject derived from the subject of the message you are Replying
22729 to will be used instead.
22731 It is also possible to make header setting even more complicated and more
22732 automatic by using
22733 <A HREF="h_rules_roles">Roles</A>,
22734 but if all you want to do is set a default value for a header, you don't
22735 need to think about Roles.
22737 If you change your From address you may also find it useful to add the
22738 changed From address to the
22739 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22740 configuration option.
22742 Limitation: Because commas are used to separate the list of
22743 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
22744 header contain a comma.
22745 Nor is there currently an &quot;escape&quot; mechanism provided
22746 to make this work.
22747 <P><UL>
22748 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22749 </UL>
22751 &lt;End of help on this topic&gt;
22752 </BODY>
22753 </HTML>
22754 ====== h_config_viewer_headers =====
22755 <HTML>
22756 <HEAD>
22757 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
22758 </HEAD>
22759 <BODY>
22760 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
22762 You may change the default list of headers that are viewed by listing
22763 the headers you want to view here.  If the headers in your
22764 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
22765 will be shown.  The order of the headers you list will be honored.  If
22766 the special value &quot;all-except&quot; is included as the first
22767 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
22768 message except those in the list will be shown.  The values are all
22769 case insensitive.
22772 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
22773 then the original default headers are ignored.  So, if you just wanted
22774 to add the header Organization to the list, you would have to list
22775 Organization plus all of the other headers originally in the default
22776 list.  If you just included Organization and nothing else, then you
22777 would see only the Organization header, nothing else.
22780 The default list of headers includes:
22781 <UL>
22782   <LI>From
22783   <LI>Resent-From
22784   <LI>To
22785   <LI>Resent-To
22786   <LI>Cc
22787   <LI>Resent-cc
22788   <LI>Bcc
22789   <LI>Newsgroups
22790   <LI>Followup-To
22791   <LI>Date
22792   <LI>Resent-Date
22793   <LI>Subject
22794   <LI>Resent-Subject
22795   <LI>Reply-To
22796 </UL>
22799 If you are looking for a way to control which headers are included in
22800 outgoing mail and are visible or not in the composer, take a look at the
22801 options
22802 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22803 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
22804 this option.
22806 <UL>   
22807 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22808 </UL><P>
22809 &lt;End of help on this topic&gt;
22810 </BODY>
22811 </HTML>
22812 ====== h_config_viewer_margin_left =====
22813 <HTML>
22814 <HEAD>
22815 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
22816 </HEAD>
22817 <BODY>
22818 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
22820 This variable controls the left-hand vertical margin's width in
22821 Alpine's Message Viewing screen.
22822 Its value is the number of space characters preceding each displayed line.
22823 For consistency with
22824 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
22825 you may specify the column number to start in
22826 (column numbering begins with number 1)
22827 instead of the width of the margin by appending a lower case letter
22828 &quot;c&quot; to the number.
22829 For example, a value of &quot;2c&quot; means to start the text in column two,
22830 which is entirely equivalent to a value of &quot;1&quot;, which means to
22831 leave a margin of 1 space.
22833 The default is a left margin of 0 (zero).
22834 Misconfigurations (for example, negative values or values with starting
22835 left columns greater than the ending right column)
22836 are silently ignored.
22837 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
22838 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22839 instead.
22842 &lt;End of help on this topic&gt;
22843 </BODY>
22844 </HTML>
22845 ====== h_config_viewer_margin_right =====
22846 <HTML>
22847 <HEAD>
22848 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
22849 </HEAD>
22850 <BODY>
22851 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
22853 This variable controls the right-hand vertical margin's width in
22854 Alpine's Message Viewing screen.
22855 Its value is the number of space characters following each displayed line.
22856 You may specify the column number to end the text in
22857 (column numbering begins with number 1)
22858 instead of the width of the margin by appending a lower case letter
22859 &quot;c&quot; to the number.
22860 For example, a value of &quot;76c&quot; means to end the text in column 76.
22861 If the screen is 80 characters wide, this is equivalent to a value
22862 of &quot;4&quot;, which means to leave a margin of 4 spaces.
22863 However, if you use different size screens at different times, then these
22864 two values are not equivalent.
22866 The default right margin is 4.
22867 Misconfigurations (for example, negative values or values with starting
22868 left columns greater than the ending right column)
22869 are silently ignored.
22870 If the number of columns for text between the
22871 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
22872 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
22873 instead.
22876 &lt;End of help on this topic&gt;
22877 </BODY>
22878 </HTML>
22879 ====== h_config_quote_suppression =====
22880 <HTML>
22881 <HEAD>
22882 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
22883 </HEAD>
22884 <BODY>
22885 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
22887 This option should be used with care.
22888 It will cause some of the quoted text to be eliminated from the
22889 display when viewing a message in the MESSAGE TEXT screen.
22890 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
22891 value &quot;5&quot;,
22892 this will cause quoted text that is longer than five lines to be truncated.
22893 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
22894 Quoted text of more than six lines will have the first five lines displayed
22895 followed by a line that looks something like
22897 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
22899 As a special case, if exactly one line of quoted text would be hidden, the
22900 entire quote will be shown instead.
22901 So for the above example, quoted text that is exactly six lines long will
22902 will be shown in its entirety.
22903 (In other words, instead of hiding a single line and adding a line
22904 that announces that one line was hidden, the line is just shown.)
22906 If the sender of a message has carefully chosen the quotes that he or she
22907 includes, hiding those quotes may change the meaning of the message.
22908 For that reason, Alpine requires that when you want to set the value of this
22909 variable to something less than four lines, you actually have to set it
22910 to the negative of that number.
22911 So if you want to set this option to &quot;3&quot;, you actually have to
22912 set it to &quot;-3&quot;.
22913 The only purpose of this is to get you to think about whether or not you
22914 really want to do this!
22915 If you want to delete all quoted text you set the value of this option
22916 to the special value &quot;-10&quot;.
22918 The legal values for this option are
22920 <TABLE>   
22921 <TR>
22922   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22923   <TD> Default, don't hide anything </TD>
22924 </TR>
22925 <TR>
22926   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
22927   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
22928 </TR>
22929 <TR>
22930   <TD> &nbsp;4,5,6,...&nbsp; </TD>
22931   <TD> Suppress if more than that many lines </TD>
22932 </TR>
22933 <TR>
22934   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
22935   <TD> Suppress all quoted lines </TD>
22936 </TR>
22937 </TABLE>
22939 If you set this option to a non-default value you may sometimes wish to
22940 view the quoted text that is not shown.
22941 When this is the case, the
22942 <A HREF="h_common_hdrmode">HdrMode Command</A>
22943 may be used to show the hidden text.
22944 Typing the &quot;H&quot; command once will show the hidden text.
22945 Typing a second &quot;H&quot; will also turn on Full Header mode.
22946 The presence or absence of the HdrMode command is determined by the
22947 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
22948 Feature-List option in your Alpine configuration, so you will want to
22949 be sure that is turned on if you use quote suppression.
22951 For the purposes of this option, a quote is a line that begins with the
22952 character &quot;&gt;&quot;.
22954 Quotes are only suppressed when displaying a message on the screen.
22955 The entire quote will be left intact when printing or forwarding or something
22956 similar.
22958 &lt;End of help on this topic&gt;
22959 </BODY>
22960 </HTML>
22961 ====== h_config_saved_msg_name_rule =====
22962 <HTML>
22963 <HEAD>
22964 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
22965 </HEAD>
22966 <BODY>
22967 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
22969 This option determines the default folder name when saving
22970 a message.
22973 The default option is &quot;default-folder&quot;, which is the folder
22974 called &quot;saved-messages&quot; in Unix Alpine and
22975 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
22976 the Alpine option called
22977 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
22980 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
22981 get the chosen option's value for the message being saved (or for the
22982 first message being saved if using an aggregrate save).
22983 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
22984 value of who the message came from (i.e. the from address).
22985 Alpine then attempts to save the message to a folder matching that value.
22986 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
22987 &quot;by-sender&quot;.
22988 The opposite is also true.
22989 If &quot;by-recipient&quot; is chosen and the message was posted to a
22990 newsgroup, Alpine will use the newsgroup name.
22991 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
22992 &quot;by-from&quot;.
22995 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
22996 to use the personal name part of the address instead of the mailbox part.
22997 If any of the &quot;by-nick&quot; options are chosen, the
22998 address is looked up in your address book and if found, the
22999 nickname for that entry is used.
23000 Only simple address book entries are checked, not distribution lists.
23001 Similarly, if any of the
23002 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
23003 address book entry is used.
23004 If by-realname, or the by-nick or by-fcc lookups result in no value,
23005 then if the chosen option ends with the &quot;then-from&quot;,
23006 &quot;then-sender&quot;, &quot;then-replyto&quot;,
23007 or &quot;then-recip&quot; suffix, Alpine
23008 reverts to the same behavior as &quot;by-from&quot;,
23009 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
23010 depending on which option was specified.
23011 If the chosen option doesn't end with one of
23012 the &quot;then-&quot; suffixes, then Alpine reverts to the default
23013 folder when no match is found in the address book.
23016 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
23017 to save to the folder that you saved to the last time you saved a
23018 message.  The first time you save a message in an Alpine session, Alpine
23019 attempts to save the message to the default folder.
23022 Here is an example to make some of the options clearer.
23023 If the message is From
23025 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
23027 and this rule is set to &quot;by-from&quot;, then the default folder offered
23028 in the save dialog would be &quot;flint&quot;.
23030 If this rule is set to &quot;by-realname-of-from&quot; then the default would
23031 be &quot;Fred Flintstone&quot;.
23033 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
23034 for the address &quot;flint@bedrock.org&quot; in your address book.
23035 If an entry is found and it has a nickname associated with it, that nickname
23036 will be offered as the default folder.
23037 If not, the default saved message folder will be offered as the default.
23039 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
23040 for the address &quot;flint@bedrock.org&quot; in your address book.
23041 If an entry is found and it has an Fcc associated with it, that Fcc
23042 will be offered as the default folder.
23043 If not, the default saved message folder will be offered as the default.
23045 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
23046 for the address &quot;flint@bedrock.org&quot; in your address book.
23047 If an entry is found and it has a nickname associated with it, that nickname
23048 will be offered as the default folder.
23049 If it is not found (or has no nickname) then the default offered will be
23050 the same as it would be for the &quot;by-from&quot; rule.
23051 That is, it would be &quot;flint&quot;
23053 <UL>   
23054 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23055 </UL><P>
23056 &lt;End of help on this topic&gt;
23057 </BODY>
23058 </HTML>
23059 ====== h_config_fcc_rule =====
23060 <HTML>
23061 <HEAD>
23062 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
23063 </HEAD>
23064 <BODY>
23065 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
23067 This option determines the default name for folder carbon copy. Choose
23068 one:
23070 <DL>
23071 <DT>default-fcc</DT>
23072 <DD>This is the normal default, the value of which is set in the
23073 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
23074 configuration.
23075 </DD>
23077 <DT>last-fcc-used</DT>
23078 <DD> Causes Alpine to use the folder that was last
23079 used in the fcc field
23080 </DD>
23082 <DT>by-nickname</DT>
23083 <DD>Means that Alpine will use the nickname
23084 from your address book that matches the first address in the To line.
23085 If there is no match, it will use the value of the
23086 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
23087 </DD>
23089 <DT>by-recipient</DT>
23090 <DD>Means Alpine will form a folder name
23091 based on the left hand side of the first address in the To line.
23092 </DD>
23094 <DT>by-nick-then-recip</DT>
23095 <DD>Means that it will use the
23096 matching nickname from your address book if there is one, otherwise it
23097 will extract the recipient name from the address and use that (like
23098 by-recipient).
23099 </DD>
23101 <DT>current-folder</DT>
23102 <DD>Causes a copy to be written to
23103 the currently open folder, unless that is the INBOX.  In the case
23104 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
23105 used instead.
23106 </DD>
23107 </DL>
23110 Note: Whatever the fcc specified by the rule here, it will be
23111 over-ridden by any fcc entries you have in your address book.
23114 <UL>   
23115 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23116 </UL><P>
23117 &lt;End of help on this topic&gt;
23118 </BODY>
23119 </HTML>
23120 ====== h_config_sort_key =====
23121 <HTML>
23122 <HEAD>
23123 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
23124 </HEAD>
23125 <BODY>
23126 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
23128 This option determines the order in which messages will be displayed in
23129 the MESSAGE INDEX screen.  Choose from:
23131 <UL>
23132  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23133  <LI> <A HREF="h_index_sort_date">Date</A>
23134  <LI> <A HREF="h_index_sort_subj">Subject</A>
23135  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23136  <LI> <A HREF="h_index_sort_thread">Thread</A>
23137  <LI> <A HREF="h_index_sort_from">From</A>
23138  <LI> <A HREF="h_index_sort_size">Size</A>
23139  <LI> <A HREF="h_index_sort_score">Score</A>
23140  <LI> <A HREF="h_index_sort_to">To</A>
23141  <LI> <A HREF="h_index_sort_cc">Cc</A>
23142 </UL>
23145 Each type of sort may also be reversed.
23146 Normal default is by &quot;Arrival&quot;.
23149 A possible point of confusion arises when you change the configuration
23150 of the <!--#echo var="VAR_sort-key"-->.
23151 The folder will normally be re-sorted when you go back to viewing the
23152 index.
23153 However, if you have manually sorted the folder with the
23154 Sort
23155 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23156 command, then it will not be re-sorted until the next time it is opened.
23159 <UL>   
23160 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23161 </UL><P>
23162 &lt;End of help on this topic&gt;
23163 </BODY>
23164 </HTML>
23165 ====== h_config_other_startup =====
23166 <HTML>
23167 <HEAD>
23168 <TITLE>OPTION: Set Startup Rule</TITLE>
23169 </HEAD>
23170 <BODY>
23171 <H1>OPTION: Set Startup Rule</H1>
23173 This option determines which message will be the <EM>current message</EM> when
23174 the folder is first opened.
23175 It works the same way that the option
23176 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
23177 works, so look there for help.
23178 It may be used for any folder, not just incoming folders.
23181 <UL>   
23182 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23183 </UL><P>
23184 &lt;End of help on this topic&gt;
23185 </BODY>
23186 </HTML>
23187 ====== h_config_perfolder_sort =====
23188 <HTML>
23189 <HEAD>
23190 <TITLE>Set Sort Order</TITLE>
23191 </HEAD>
23192 <BODY>
23193 <H1>Set Sort Order</H1>
23195 This option determines the order in which messages will be displayed in
23196 the MESSAGE INDEX screen when the Current Folder Type set in the
23197 Pattern is a match. Choose from:
23199 <UL>
23200  <LI> <A HREF="h_index_sort_default">Default</A>
23201  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23202  <LI> <A HREF="h_index_sort_date">Date</A>
23203  <LI> <A HREF="h_index_sort_subj">Subject</A>
23204  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23205  <LI> <A HREF="h_index_sort_thread">Thread</A>
23206  <LI> <A HREF="h_index_sort_from">From</A>
23207  <LI> <A HREF="h_index_sort_size">Size</A>
23208  <LI> <A HREF="h_index_sort_score">Score</A>
23209  <LI> <A HREF="h_index_sort_to">To</A>
23210  <LI> <A HREF="h_index_sort_cc">Cc</A>
23211 </UL>
23214 Each type of sort may also be reversed.
23215 Normal default is by &quot;Arrival&quot;.
23218 A possible point of confusion arises when you change the configuration
23219 of the Sort Order for the currently open folder.
23220 The folder will normally be re-sorted when you go back to viewing the
23221 index.
23222 However, if you have manually sorted the folder with the
23223 Sort
23224 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23225 command, then it will not be re-sorted until the next time it is opened.
23228 <UL>   
23229 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23230 </UL><P>
23231 &lt;End of help on this topic&gt;
23232 </BODY>
23233 </HTML>
23234 ====== h_config_fld_sort_rule =====
23235 <HTML>
23236 <HEAD>
23237 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
23238 </HEAD>
23239 <BODY>
23240 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
23242 This option controls the order in which folder list entries will be
23243 presented in the FOLDER LIST screen.  Choose one of the following:
23245 <DL>
23246 <DT>Alphabetical</DT>
23247 <DD>sort by alphabetical name independent of type
23248 </DD>
23250 <DT>Alpha-with-dirs-last</DT>
23251 <DD>sort by alphabetical name grouping directory entries
23252 to the end of the list
23253 </DD>
23255 <DT>Alpha-with-dirs-first</DT>
23256 <DD>sort by alphabetical name grouping directory entries
23257 to the start of the list
23258 </DD>
23259 </DL>
23261 The normal default is &quot;Alphabetical&quot;.
23264 <UL>   
23265 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23266 </UL><P>
23267 &lt;End of help on this topic&gt;
23268 </BODY>
23269 </HTML>
23270 ====== h_config_ab_sort_rule =====
23271 <HTML>
23272 <HEAD>
23273 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
23274 </HEAD>
23275 <BODY>
23276 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
23278 This option controls the order in which address book entries will be
23279 presented.  Choose one of the following:
23281 <DL>
23282 <DT>fullname</DT>
23283 <DD>use fullname field, lists mixed in
23284 </DD>
23286 <DT>fullname-with-lists-last</DT>
23287 <DD>use fullname field, but put lists at end
23288 </DD>
23290 <DT>nickname</DT>
23291 <DD>use nickname field, lists mixed in
23292 </DD>
23294 <DT>nickname-with-lists-last</DT>
23295 <DD>use nickname field, but put lists at end
23296 </DD>
23298 <DT>dont-sort</DT>
23299 <DD>don't change order of file
23300 </DD>
23301 </DL>
23304 The normal default is &quot;fullname-with-lists-last&quot;.
23305 If you use an address book from more than one computer and those
23306 computers sort the address book differently then the sort order
23307 will be the order where the last change to the address book was
23308 made.
23309 There are two reasons the sorting might be different on different
23310 systems.
23311 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
23312 places.
23313 Second, the collation rules on the two computers may be different.
23314 For example, one system might ignore special characters while the other
23315 doesn't or one may sort upper and lower case letters together while
23316 the other doesn't.
23317 In any case, the order you see is the order on the system where the
23318 last change was made, for example by an address book edit or a
23319 Take Address command.
23322 <UL>   
23323 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23324 </UL><P>
23325 &lt;End of help on this topic&gt;
23326 </BODY>
23327 </HTML>
23328 ====== h_config_post_char_set =====
23329 <HTML>
23330 <HEAD>
23331 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
23332 </HEAD>
23333 <BODY>
23334 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
23336 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
23337 when sending messages.
23341 When sending a message the text typed in the composer is
23342 labeled with the character set specified by this option.
23343 If the composed text is not fully representable in the 
23344 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
23345 instead;
23348 Attachments are labeled with your
23349 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
23352 Generally, there should be little need to set this option.
23353 If left unset, the
23354 default behavior is to label composed text as specifically as
23355 possible.  That is, if the composed text has no non-ASCII characters,
23356 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
23357 only ISO-8859-15 characters, it is labeled as such.  Alpine will
23358 attempt to automatically detect a number of character sets including ISO-8859-15,
23359 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23360 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
23361 If the message contains a mix of character sets,
23362 it is labeled as &quot;UTF-8.&quot;
23366 This setting is provided to allow you to force a particular character set that
23367 Alpine does not automatically detect. For example, if a message is representable
23368 in more than one character set then Alpine may choose a different default
23369 than you want.
23370 Lastly, by setting this option explicitly to
23371 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
23372 &quot;UTF-8&quot; instead of something more specific.
23375 In the Setup/Config screen you may choose from a list of all the
23376 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23379 The options
23380 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23381 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23382 are closely related.
23383 Setting the feature
23384 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23385 should cause this option to be ignored.
23388 <UL>   
23389 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23390 </UL><P>
23391 &lt;End of help on this topic&gt;
23392 </BODY>
23393 </HTML>
23394 ====== h_config_unk_char_set =====
23395 <HTML>
23396 <HEAD>
23397 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
23398 </HEAD>
23399 <BODY>
23400 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
23402 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
23403 when reading or replying to messages.
23407 A text message should either be made up of all US-ASCII characters
23408 or it should contain a charset label which tells the software which
23409 character set encoding to use to interpret the message.
23410 Sometimes a malformed message may be unlabeled but contain non-ascii text.
23411 This message is outside of the standards so any attempt to read it could fail.
23412 When Alpine attempts to read such a message it will try to interpret the
23413 text in the character set you specify here.
23414 For example, if you have correspondents who send you unlabeled messages that
23415 are usually made up of characters from the WINDOWS-1251 character set, setting
23416 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
23417 allow you to read those messages.
23418 Of course, if the unlabeled message is actually in some other character set,
23419 then you may see garbage on your screen.
23421 Instead of just unlabeled text, this option also affects text which is labeled
23422 with the charsets &quot;X-Unknown&quot;, &quot;MISSING_PARAMETER_VALUE&quot;
23423 or &quot;US-ASCII&quot;.
23426 In the Setup/Config screen you may choose from a list of all the
23427 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23430 <UL>   
23431 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23432 </UL><P>
23433 &lt;End of help on this topic&gt;
23434 </BODY>
23435 </HTML>
23436 ====== h_config_char_set =====
23437 <HTML>
23438 <HEAD>
23439 <TITLE>OPTION: Display Character Set</TITLE>
23440 </HEAD>
23441 <BODY>
23442 <H1>OPTION: Display Character Set</H1>
23444 The Display Character Set configuration option is used when viewing messages.
23446 Alpine uses Unicode characters internally and 
23447 it is a goal for Alpine to handle email in many different languages.
23448 Alpine will properly display only left-to-right character sets
23449 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
23450 font is in use, in the sense that
23451 characters are assumed to take up zero, one, or two character cell
23452 widths from left to right on the screen. This is true even in PC-Alpine.
23455 Alpine recognizes some local character sets that are right-to-left
23456 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
23457 (Arabic) and properly converts texts in these character sets to/from
23458 Unicode; however, there are known display bugs with these character
23459 sets.
23462 There are three possible configuration character settings and some
23463 environment variable settings that can affect how Alpine
23464 handles international characters.
23465 The first two of these are only available in UNIX Alpine.
23466 The three configuration options are
23467 Display Character Set,
23468 Keyboard Character Set, and
23469 <!--#echo var="VAR_posting-character-set"-->.
23470 The Keyboard Character Set defaults to being the same value
23471 as the Display Character Set, and that is usually correct, because
23472 the keyboard almost always produces characters in the same character set
23473 as the display displays.
23474 The Display Character Set is the character set that Alpine
23475 will attempt to use when sending characters to the display.
23478 By default, the Display Character Set variable is not set and UNIX Alpine
23479 will attempt to get this information from the environment.
23480 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
23481 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
23482 An explicit configuration setting for Display Character Set will,
23483 of course, override any default setting.
23485 For PC-Alpine the Display Character Set
23486 and the Keyboard Character Set
23487 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
23490 It is probably best to use UNIX Alpine in a terminal emulator
23491 capable of displaying UTF-8 characters, since that will allow you to
23492 view just about any received text that is correctly formatted (note,
23493 however, the above comments about known index display bugs with certain
23494 character sets). You'll need to have an emulator that uses a UTF-8 font
23495 and you'll need to set up your environment to use a UTF-8 charmap. For
23496 example, on a Linux system you might include
23498 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
23501 or something similar in your UNIX startup files.
23502 You'd also have to select a UTF-8 font in your terminal emulator.
23505 The types of values that the character set variables may be set to are
23506 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
23507 The <CODE>ISO-2022</CODE> character sets are not supported for input or
23508 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
23509 for use only as a <!--#echo var="VAR_posting-character-set"-->.
23510 In the Setup/Config screen you may choose from a list of all the
23511 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23512 Here is a list of many of the possible character sets:
23515 <TABLE>
23516 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
23517 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
23518 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
23519 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
23520 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
23521 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
23522 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
23523 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
23524 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
23525 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
23526 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
23527 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
23528 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
23529 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
23530 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
23531 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
23532 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
23533 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
23534 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
23535 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukranian</TD> </TR>
23536 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
23537 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
23538 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
23539 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23540 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23541 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23542 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23543 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23544 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
23545 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
23546 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
23547 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
23548 </TABLE>
23551 When reading incoming email, Alpine understands many different
23552 character sets and is able to convert the incoming mail into Unicode.
23553 The Unicode will be converted to the Display Character Set
23554 for display on your terminal.
23555 Characters typed at the keyboard will be converted from the
23556 Keyboard Character Set to Unicode for Alpine's internal
23557 use.
23558 You may find that you can read some malformed messages that do not
23559 contain a character set label by setting the option
23560 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
23563 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
23564 The default behavior obtained by leaving this variable unset is usually
23565 what is wanted. In that default case, Alpine will attempt
23566 to label the message with the most specific character set from the
23567 rather arbitrary set
23569 US-ASCII, ISO-8859-15,
23570 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23571 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
23574 For example, if the message is made up of only US-ASCII characters, it
23575 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
23576 that will be the label. If that doesn't work the same is tried for the
23577 remaining members of the list.
23580 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
23581 explicit value instead.
23582 For example, if you usually send messages in Greek, setting this
23583 option to ISO-8859-7 will result in messages being labeled as
23584 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
23585 are only Greek characters, or UTF-8 if there are some characters
23586 that aren't representable in ISO-8859-7.
23587 Another possibility is to set this option explicitly to UTF-8.
23588 In that case
23589 Alpine labels only ascii messages as US-ASCII and all other
23590 messages as UTF-8.
23593 The options
23594 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23595 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23596 are closely related to this option.
23597 Setting the feature
23598 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23599 should cause this option to be ignored.
23602 When displaying a message, Alpine compares this setting to the character
23603 set specified in the message.  If not all of the
23604 characters in the message can be displayed using the Display Character Set
23605 then Alpine places an editorial
23606 comment in the displayed text (enclosed in square-brackets) indicating
23607 that some characters may not be displayed correctly.
23608 This comment may be eliminated by turning on the option
23609 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
23612 <UL>   
23613 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23614 </UL><P>
23615 &lt;End of help on this topic&gt;
23616 </BODY>
23617 </HTML>
23618 ====== h_config_key_char_set =====
23619 <HTML>
23620 <HEAD>
23621 <TITLE>OPTION: Keyboard Character Set</TITLE>
23622 </HEAD>
23623 <BODY>
23624 <H1>OPTION: Keyboard Character Set</H1>
23626 UNIX Alpine only.
23628 The Keyboard Character Set identifies the character set of the characters
23629 coming from your keyboard.
23630 It defaults to having the same value as your
23631 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
23632 which in turn defaults to a value obtained from your environment.
23633 It is unlikely that you will need to use this option, because the keyboard
23634 almost always produces the same kind of characters as the display displays.
23637 This character set is also used when accessing files in your local
23638 file system.
23639 The names of the files are assumed to be in the same character set as
23640 what the keyboard produces, as well as the contents of the files.
23643 In the Setup/Config screen you may choose from a list of all the
23644 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23647 The options
23648 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23649 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23650 are closely related.
23651 Setting the feature
23652 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23653 should cause this option to be ignored.
23656 <UL>   
23657 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23658 </UL><P>
23659 &lt;End of help on this topic&gt;
23660 </BODY>
23661 </HTML>
23662 ====== h_config_editor =====
23663 <HTML>
23664 <HEAD>
23665 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
23666 </HEAD>
23667 <BODY>
23668 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
23670 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
23671 normally an alternative to Alpine's internal composer (Pico).  You could use
23672 this setting to specify an alternate editor to use occasionally or if you
23673 have a favorite editor and want to use it all the time (see the 
23674 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
23675 If you specify multiple editors for this option, ^_ will invoke the first one 
23676 of those specified that exists and is executable.  When specifying a program 
23677 for use here, make sure that the format of the text it saves -- which, when 
23678 you exit it, will become the message body in Alpine -- is appropriate 
23679 for the body of an email message; avoid proprietary formats that may result in 
23680 a message body that the recipient of your message will be unable to decipher.
23682 <!--chtml if pinemode="os_windows"-->
23683 <!--chtml else-->
23684 If you are in doubt about what editors are available on your system, or which 
23685 of them may be appropriate for specification here, ask your local computing 
23686 support staff.  
23687 <!--chtml endif-->
23689 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
23690 unset, outgoing text will be set as flowed.  In most cases this will be fine,
23691 but if the editor has a &quot;flowed text&quot; mode, it would be best to
23692 use that.
23694 <P><UL>
23695 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23696 </UL>
23698 &lt;End of help on this topic&gt;
23699 </BODY>
23700 </HTML>
23701 ====== h_config_speller =====
23702 <HTML>
23703 <HEAD>
23704 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
23705 </HEAD>
23706 <BODY>
23707 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
23709 UNIX Alpine only.
23711 For PC-Alpine, you must install the aspell library code that you
23712 may get from
23713 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
23715 This option affects the behavior of the ^T (spell check) command in the
23716 Composer.  It specifies the program invoked by ^T in the Composer.
23717 By default, Alpine uses
23719 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
23721 if it knows where to find &quot;aspell&quot;.
23722 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
23723 then the command used is
23725 <CENTER><SAMP>ispell -l</SAMP></CENTER>
23727 Otherwise, the ancient &quot;spell&quot; command is used.
23729 If you specify a value for this command (with full pathname) then that is what
23730 will be used instead of any of the defaults.
23731 When invoking this
23732 spell-checking program, Alpine appends a tempfile name (where the message is
23733 passed) to the command line. Alpine expects the speller to correct the
23734 spelling in that file. When you exit from that program Alpine will read the
23735 tempfile back into the composer.
23737 Don't set this speller option to the standard Unix spell command.
23738 That won't work because spell works in a different way.
23741 <UL>   
23742 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23743 </UL><P>
23744 &lt;End of help on this topic&gt;
23745 </BODY>
23746 </HTML>
23747 ====== h_config_aspell_dictionary =====
23748 <HTML>
23749 <HEAD>
23750 <TITLE>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></TITLE>
23751 </HEAD>
23752 <BODY>
23753 <H1>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></H1>
23755 PC Alpine only.
23757 This option specifies a list of dictionaries you will use with
23758 aspell. A sample entry is &quot;en_US&quot; for american english, or
23759 &quot;en_GB&quot; for brittish english.
23762 <UL>   
23763 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23764 </UL><P>
23765 &lt;End of help on this topic&gt;
23766 </BODY>
23767 </HTML>
23768 ====== h_config_display_filters =====
23769 <HTML>
23770 <HEAD>
23771 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
23772 </HEAD>
23773 <BODY>
23774 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
23776 This option defines a list of text-filtering commands (programs or
23777 scripts) that may be used to filter text portions of received messages
23778 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
23779 display screen, exporting to a text file).  
23780 For security reasons, the full path name of the
23781 filter command must be specified.
23784 The command is executed and the message is piped into its standard input. 
23785 The standard output of the command is read back by Alpine.  The
23786 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
23788 <P> 
23789 The filter's use is based on the configured &quot;trigger&quot; string.  The
23790 format of a filter definition is:
23792 <P>   
23793 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
23796 You can specify as many filters as you wish, separating them with a comma.  
23797 Each filter can have only one trigger and command.  Thus, two trigger 
23798 strings that invoke the same command require separate filter 
23799 specifications. 
23801 <P> 
23802 The &quot;trigger&quot; is simply text that, if found in the message,
23803 will invoke the associated command.  If the trigger contains any space
23804 characters, it must be placed within quotes.  Likewise, should you
23805 wish a filter to be invoked unconditionally, define the trigger as the
23806 null string, &quot;&quot; (two consecutive double-quote characters).  If the
23807 trigger string is found anywhere in the text of the message the filter
23808 is invoked.  Placing the trigger text within the tokens defined below
23809 changes where within the text the trigger must be before considering
23810 it a match.
23812 <P>  
23813 Trigger Modifying Tokens:
23814 <DL>
23815 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
23816 <DD>This token tells Alpine to invoke the supplied command
23817 if the text is in a character set matching <VAR>string</VAR>
23818 (e.g., ISO-8859-2 or ISO-2022-JP).
23819 </DD>
23822 <DT>_LEADING(<VAR>string</VAR>)_</DT>
23823 <DD>This token tells Alpine to invoke the supplied command
23824 if the enclosed <VAR>string</VAR> is found to be the first
23825 non-whitespace text.
23826 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23827 the space character.
23828 </DD>
23830 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
23831 <DD>This token tells Alpine to invoke the supplied command
23832 if the enclosed <VAR>string</VAR> is found at the beginning
23833 of any line in the text.
23834 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23835 the space character.
23836 </DD>
23837 </DL>
23840 The &quot;command&quot; and &quot;arguments&quot; portion is simply
23841 the command line to be invoked if the trigger string is found.  Below
23842 are tokens that Alpine will recognize and replace with special values
23843 when the command is actually invoked.
23846 Command Modifying Tokens:
23848 <DL>
23849 <DT>_TMPFILE_</DT>
23850 <DD>When the command is executed, this token is 
23851 replaced with the path and name of the temporary 
23852 file containing the text to be filtered.  Alpine 
23853 expects the filter to replace this data with the 
23854 filter's result.
23857 NOTE: Use of this token implies that the text to 
23858 be filtered is not piped into standard input of the 
23859 executed command and its standard output is ignored. 
23860 Alpine restores the tty modes before invoking the
23861 filter in case the filter interacts with the user
23862 via its own standard input and output.  
23863 </DD>
23864                         
23865 <DT>_RESULTFILE_</DT>
23866 <DD>When the command is executed, this token is 
23867 replaced with the path and name of a temporary 
23868 file intended to contain a status message from the 
23869 filter.  Alpine displays this in the message status 
23870 field. 
23871 </DD>
23873 <DT>_DATAFILE_</DT>
23874 <DD>When the command is executed, this token is 
23875 replaced with the path and name of a temporary 
23876 file that Alpine creates once per session and deletes 
23877 upon exit.  The file is intended to be used by the 
23878 filter to store state information between instances 
23879 of the filter.
23880 </DD>
23881    
23882 <DT>_PREPENDKEY_</DT>
23883 <DD>When the command is executed, this token indicates that a random
23884 number will be passed down the input stream before the message text.
23885 This number could be used as a session key.  It is sent in this way to
23886 improve security.  The number is unique to the current Alpine session
23887 and is only generated once per session.
23888 </DD>
23890 <DT>_SILENT_</DT>
23891 <DD>When the filter is executed, this token tells Alpine not to repaint
23892 the screen while the command is being executed. This can be used with 
23893 filters that do not interact with the user, and therefore repainting 
23894 the screen is not necessary. 
23895 </DD>
23896 </DL>
23899 The feature
23900 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
23902 Performance caveat/considerations:
23903 <BR>
23904 Testing for the trigger and invoking the filter doesn't come for free.
23905 There is overhead associated with searching for the trigger string, testing
23906 for the filter's existence and actually piping the text through the filter.
23907 The impact can be reduced if the Trigger Modifying Tokens above are 
23908 employed.
23910 &lt;End of help on this topic&gt;
23911 </BODY>
23912 </HTML>
23913 ====== h_config_sending_filter =====
23914 <HTML>
23915 <HEAD>
23916 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
23917 </HEAD>
23918 <BODY>
23919 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
23920       
23921 This option defines a list of text-filtering commands (programs and
23922 scripts) that may be selectively invoked to process a message just before
23923 it is sent.  If set, the Composer's ^X (Send) command will allow you to
23924 select which filter (or none) to apply to the message before it is sent. 
23925 For security reasons, the full path of the filter program must be
23926 specified.
23929 Command Modifying Tokens:
23931 <DL>
23932 <DT>_RECIPIENTS_</DT>
23933 <DD>When the command is executed, this token is replaced 
23934 with the space delimited list of recipients of the 
23935 message being sent. 
23936 </DD>
23937         
23938 <DT>_TMPFILE_</DT>
23939 <DD>
23940 When the command is executed, this token is 
23941 replaced with the path and name of the temporary 
23942 file containing the text to be filtered.  Alpine 
23943 expects the filter to replace this data with the 
23944 filter's result.
23947 NOTE: Use of this token implies that the text to 
23948 be filtered is not piped into standard input of the 
23949 executed command and its standard output is ignored. 
23950 Alpine restores the tty modes before invoking the
23951 filter in case the filter interacts with the user
23952 via its own standard input and output.  
23953 </DD>
23954                         
23955 <DT>_RESULTFILE_</DT>
23956 <DD>When the command is executed, this token is 
23957 replaced with the path and name of a temporary 
23958 file intended to contain a status message from the 
23959 filter.  Alpine displays this in the message status 
23960 field. 
23961 </DD>
23963 <DT>_DATAFILE_</DT>
23964 <DD>When the command is executed, this token is replaced 
23965 in the command line with the path and name of a 
23966 temporary file that Alpine creates once per session 
23967 and deletes upon exit.  The file is intended to be 
23968 used by the filter to store state information between 
23969 instances of the filter.
23970 </DD>
23971    
23972 <DT>_PREPENDKEY_</DT>
23973 <DD>When the command is executed, this token indicates 
23974 that a random number will be passed down the input 
23975 stream before the message text.  This number could 
23976 be used as a session key.  It is sent in this way 
23977 to improve security.  The number is unique to the 
23978 current Alpine session and is only generated once per 
23979 session. 
23980 </DD>
23982 <DT>_INCLUDEALLHDRS_</DT>
23983 <DD>When the command is executed, this token indicates 
23984 that the headers of the message will be passed down the input stream
23985 before the message text.
23986 </DD>
23988 <DT>_MIMETYPE_</DT>
23989 <DD>When the command is executed, this token is replaced in the
23990 command name with a temporary file name used to accept any new MIME
23991 Content-Type information necessitated by the output of the filter.
23992 Upon the filter's exit, if the file contains new MIME type
23993 information, Alpine verifies its format and replaces the outgoing
23994 message's MIME type information with that contained in the file. This
23995 is basically a cheap way of sending something other than Text/Plain.
23996 </DD>
23997 </DL>
23999 <P>   
24000 NOTE: Only the body text, which is visible in the Composer, is piped
24001 through this filter.  Attachments are not sent to the filter.
24002 <P>   
24003 Sending filters are not used if the feature
24004 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
24006 <UL>   
24007 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24008 </UL><P>
24009 &lt;End of help on this topic&gt;
24010 </BODY>
24011 </HTML>
24012 ====== h_config_keywords =====
24013 <HTML>
24014 <HEAD>
24015 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
24016 </HEAD>
24017 <BODY>
24018 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
24020 You may define your own set of keywords and optionally set them on a
24021 message by message basis.
24022 These are similar to the &quot;Important&quot; flag which the user
24023 may set using the Flag command.
24024 The difference is that the Important flag is always present for each folder.
24025 User-defined keywords are chosen by the user.
24026 You may set up the list of possible keywords here, or you may add keywords
24027 from the Flag Details screen that you
24028 can get to after typing the
24029 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
24030 command.
24031 After the keywords have been defined,
24032 then you use the <A HREF="h_common_flag">Flag command</A>
24033 to set or clear the keywords in each message.
24034 The behavior of the flag command may be modified by using the
24035 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
24036 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
24039 Keywords may be used when Selecting messages (Select Keyword).
24040 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
24041 Filter Rules may be used to set keywords automatically.
24042 Keywords may be displayed as part of the Subject of a message by using
24043 the SUBJKEY or SUBJKEYINIT tokens in the
24044 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
24045 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
24046 option may be used to modify the display of keywords using
24047 SUBJKEY and SUBJKEYINIT slightly.
24048 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
24049 screen by using the KEY or KEYINIT tokens.
24050 It is also possible to color keywords in the index using the
24051 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
24052 Keywords are not supported by all mail servers.
24055 You may give keywords nicknames if you wish.
24056 If the keyword definition you type in contains a SPACE character, then the
24057 actual value of the keyword is everything after the last SPACE and the
24058 nickname for that keyword is everything before the last SPACE.
24059 For example, suppose you are trying to interoperate with another email program
24060 that uses a particular keyword with an unpleasant name.
24061 Maybe it uses a keyword called
24063 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
24065 but for you that keyword means that the message is work-related.
24066 You could define a keyword to have the value
24068 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
24070 and then you would use the name &quot;Work&quot; when dealing with
24071 that keyword in Alpine.
24072 If you defined it as
24074 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
24076 the nickname would be everything before the last SPACE, that is the nickname
24077 would be &quot;My Work&quot;.
24079 Some commonly used keywords begin with dollar signs.
24080 This presents a slight complication, because the dollar sign is normally used
24081 to signify
24082 <A HREF="h_news_config">environment variable expansion</A>
24083 in the Alpine configuration.
24084 In order to specify a keyword that begins with a dollar sign you must
24085 precede the dollar sign with a second dollar sign to escape its special
24086 meaning.
24087 For example, if you want to include the keyword
24089 <CENTER><SAMP>$Label1</SAMP></CENTER>
24091 as one of your possible keywords, you must enter the text
24093 <CENTER><SAMP>$$Label1</SAMP></CENTER>
24096 instead.
24098 There are a couple limitations.
24099 First, not all servers support keywords.
24100 Second, some servers (including the IMAP server included with Alpine)
24101 have a per folder limit on the number of keywords that may be defined.
24102 This count commonly includes every keyword you have ever used in the
24103 folder, even if it is no longer being used.
24104 In other words, you can add keywords but you cannot remove them easily.
24105 If you have changed keywords over the life of a folder and find that
24106 you have reached such a limit, one possible solution might be to copy
24107 all of the messages to a newly created folder (using Alpine) and then
24108 delete the original and rename the new folder.
24109 The reason this might work is that only the keywords currently set in
24110 any of the messages will be used in the new folder, hopefully putting you
24111 under the limit.
24114 <UL>   
24115 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24116 </UL><P>
24117 &lt;End of help on this topic&gt;
24118 </BODY>
24119 </HTML>
24120 ====== h_config_alt_addresses =====
24121 <HTML>
24122 <HEAD>
24123 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
24124 </HEAD>
24125 <BODY>
24126 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
24128 This option provides a place for you to list alternate email addresses
24129 you may have.
24130 Each address in the list should be the actual email address part of an
24131 address, without the full name field or the angle brackets.
24132 For example:
24135 <CENTER><SAMP>user@example.com</SAMP></CENTER>
24138 The matching is case-insensitive, so this would match any of
24139 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
24140 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
24143 If set, the option affects the behavior of the Reply
24144 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
24145 a message has been addressed specifically to you.
24148 In the default INDEX display
24149 the personal name (or email address) of
24150 the person listed in the message's &quot;From:&quot; header
24151 field is usually displayed except when that address is yours or one of your
24152 alternate addresses.
24153 In that case you will usually see the name of
24154 the first person specified in the
24155 message's &quot;To:&quot; header field
24156 with the prefix &quot;To: &quot; prepended.
24159 With respect to Reply, the reply-to-all option will exclude addresses
24160 listed here.
24163 The feature
24164 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
24165 is somewhat related to this option.
24168 In addition to a list of actual addresses,
24169 you may use regular expressions (as used with egrep with the ignore case flag)
24170 to describe the addresses you want to match.
24171 Alpine will somewhat arbitrarily interpret your entry as a regular
24172 expression if it contains any of the characters
24173 *, |, +, ?, {, [, ^, $, or &#92;.
24174 Otherwise, it will be treated literally.
24175 The feature
24176 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
24177 may be used to turn off regular expression processing regardless of whether or not
24178 special characters appear in the entry.
24181 A description of how regular expressions work is beyond the
24182 scope of this help text, but some examples follow.
24185 The entry
24188 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
24191 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
24192 address with a domain name of <SAMP>example.com</SAMP> (such as
24193 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
24194 one of your alternate addresses.
24195 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
24196 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
24197 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
24198 Complicating things further, the dollar sign
24199 is special in the Alpine configuration (it signifies environment variable expansion)
24200 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
24201 Quotes around the whole expression will not escape the dollar sign successfully.
24202 So this example should look like
24205 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
24209 The entry
24212 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
24215 would match
24216 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
24217 as <SAMP>fred@example.com</SAMP>.
24220 You could match all addresses that look like
24221 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
24222 entry
24225 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
24228 Notice that you have to escape the plus sign with a backslash because plus
24229 is a special character in regular expressions.
24230 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
24231 the expression
24234 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
24237 would do it, but it would be easier to just add fred@example.com as a
24238 separate entry.
24241 One more example, a match of all first-level subdomains, is given by
24244 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
24248 Because the regular expression matching is based on an old library
24249 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
24250 but they should be close.
24253 <UL>   
24254 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24255 </UL><P>
24256 &lt;End of help on this topic&gt;
24257 </BODY>
24258 </HTML>
24259 ====== h_config_abook_formats =====
24260 <HTML>
24261 <HEAD>
24262 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
24263 </HEAD>
24264 <BODY>
24265 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
24267 This option specifies the format that address books are displayed in.
24268 Normally, address books are displayed with the nicknames in the first
24269 column, the fullnames in the second column, and addresses in the third
24270 column.  The system figures out reasonable defaults for the widths of
24271 the columns.  An address book may be given a different format by
24272 listing special tokens in the order you want them to display.  The
24273 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
24274 So, for example, to get the default behavior you could list
24277 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
24280 (You can also use the token DEFAULT to get the default behavior for
24281 an address book format.)
24284 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
24285 is a list, so if you have more than one address book you may have a
24286 separate format for each by putting its format at the corresponding
24287 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
24291 Listed first are the personal address books, then the global address
24292 books.  So, if you have two personal address books and one global
24293 address book, you may have up to three formats in the
24294 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
24295 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
24296 are address books, the last element is used repeatedly.
24300 Each of the tokens may also be optionally followed by parentheses with
24301 either a number or a percentage inside the parentheses.  For example,
24302 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
24303 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
24304 of the available space (the screen width minus the space for
24305 inter-column spaces) to the fullnames column, while plain
24306 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
24307 reasonable number of columns.
24310 There are always 2 spaces between every column, so if you use
24311 fixed column widths (like 13) you should remember to take that into
24312 account.
24315 <UL>   
24316 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24317 </UL><P>
24318 &lt;End of help on this topic&gt;
24319 </BODY>
24320 </HTML>
24321 ====== h_config_set_index_format =====
24322 <HTML>
24323 <HEAD>
24324 <TITLE>Set Index Format</TITLE>
24325 </HEAD>
24326 <BODY>
24327 <H1>Set Index Format</H1>
24329 This option is used to customize the content of lines in the
24330 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
24331 This action works exactly like the regular
24332 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
24333 except that you can have a folder-specific value for it if you specify it here.
24334 Consult the help for
24335 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
24336 for more information.
24339 <UL>   
24340 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24341 </UL><P>
24342 &lt;End of help on this topic&gt;
24343 </BODY>
24344 </HTML>
24345 ====== h_config_index_format =====
24346 <HTML>
24347 <HEAD>
24348 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
24349 </HEAD>
24350 <BODY>
24351 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
24353 This option is used to customize the content of lines in the
24354 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
24355 to convey some amount of immediately relevant information about each 
24356 message in the current folder.
24359 Alpine provides a pre-defined set of informational fields with
24360 reasonable column widths automatically computed.  You can, however,
24361 replace this default set by listing special tokens in the order you
24362 want them displayed.
24365 The list of available tokens is
24366 <A HREF="h_index_tokens">here</A>.
24369 Spaces are used to separate listed tokens.  Additionally, you can
24370 specify how much of the screen's width the token's associated data
24371 should occupy on the index line by appending to the token a pair of
24372 parentheses enclosing either a number or percentage.  For example,
24373 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
24374 column, and &quot;SUBJECT(20%)&quot; means to
24375 allocate 20% of the available space
24376 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
24377 attempt to figure out a reasonable amount of space.
24380 There is always one space between every pair of columns, so if you use fixed
24381 column widths (like 13) you should remember to take that into account.
24382 Several of the fields are virtually fixed-width, so it doesn't make
24383 much sense to specify the width for them.  The fields STATUS,
24384 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
24385 and DESCRIPSIZE all fall into that category.
24386 You <EM>may</EM> specify widths for those if you wish, but
24387 you're probably better off letting the system pick those widths.  <P>
24390 The default is equivalent to:
24393 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
24396 This means that the four fields without percentages will be allocated
24397 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
24398 the from and subject fields.  If one of those two fields is specified
24399 as a percentage and the other is left for the system to choose, then
24400 the percentage is taken as an absolute percentage of the screen, not
24401 of the space remaining after allocating the first four columns.  It
24402 doesn't usually make sense to do it that way.  If you leave off all
24403 the widths, then the subject and from fields (if both are present) are
24404 allocated space in a 2 to 1 ratio, which is almost exactly the same as
24405 the default.
24408 What you are most likely to do with this configuration option is to
24409 specify which fields appear at all, which order they appear in, and the
24410 percentage of screen that is used for the from and subject fields if you
24411 don't like the 2 to 1 default.
24414 If you want to retain the default format that Pine 4.64 had, use
24417 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
24419 <EM>and</EM> set the feature
24420 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
24421 <UL>   
24422 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24423 </UL><P>
24424 &lt;End of help on this topic&gt;
24425 </BODY>
24426 </HTML>
24427 ====== h_config_reply_intro =====
24428 <HTML>
24429 <HEAD>
24430 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
24431 </HEAD>
24432 <BODY>
24433 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
24435 This option is used to customize the content of the introduction line
24436 that is included when replying to a message and including the original
24437 message in the reply.
24438 The normal default (what you will get if you delete this variable) looks
24439 something like:
24441 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
24443 where the day of the week is only included if it is available in the
24444 original message.
24445 You can replace this default with text of your own.
24446 The text may contain tokens that are replaced with text
24447 that depends on the message you are replying to.
24448 For example, the default is equivalent to:
24450 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24453 Since this variable includes regular text mixed with special tokens
24454 the tokens have to be surrounded by underscore characters.
24455 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
24456 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
24457 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
24459 The list of available tokens is
24460 <A HREF="h_index_tokens">here</A>.
24463 By default, the text is all on a single line and is followed by a blank line.
24464 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
24465 than 80 characters when replying to a particular message, it is shortened.
24466 However, if you use the token
24468 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
24471 anywhere in the value, no end of line or blank line is appended, and no
24472 shortening is done.
24473 The _NEWLINE_ token may be used to get rid of the blank line following
24474 the text, to add more blank lines, or to form a multi-line
24475 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24476 To clarify how _NEWLINE_ works recall that the default value is:
24478 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24481 That is equivalent to
24483 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
24486 In the former case, two newlines are added automatically because
24487 no _NEWLINE_ token appears in the value of the option (for backwards
24488 compatibility). In the latter case, the newlines are explicit.
24489 If you want to remove the blank line that follows the
24490 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
24491 _NEWLINE_ token like
24493 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
24496 Because of the backwards compatibility problem, it is not possible to
24497 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
24498 and that will cause the automatic adding of two newlines!
24499 If you want, you may embed newlines in the middle of the text, as well,
24500 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24503 By default, no attempt is made to localize the date.
24504 If you prefer a localized form you may find that one of the tokens
24505 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
24506 If you want more control one of the many other date tokens, such as _DATEISO_,
24507 might be better.
24510 For the adventurous, there is a way to conditionally include text based
24511 on whether or not a token would result in specific replacement text.
24512 For example, you could include some text based on whether or not
24513 the _NEWS_ token would result in any newsgroups if it was used.
24514 It's explained in detail
24515 <A HREF="h_reply_token_conditionals">here</A>.
24518 In the very unlikely event that you want to include a literal token
24519 in the introduction line you must precede it with a backslash character.
24520 For example,
24522 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
24524 would produce something like
24526 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
24528 It is not possible to have a literal backslash followed by an expanded token.
24530 <UL>   
24531 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24532 </UL><P>
24533 &lt;End of help on this topic&gt;
24534 </BODY>
24535 </HTML>
24536 ====== h_config_remote_abook_history =====
24537 <HTML>
24538 <HEAD>
24539 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
24540 </HEAD>
24541 <BODY>
24542 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
24544 Sets how many extra copies of
24545 remote address book
24546 data will be kept in each remote address book folder.
24547 The default is three.
24548 These extra copies are simply old versions of the data. Each time a change
24549 is made a new copy of the address book data is appended to the folder. Old
24550 copies are trimmed, if possible, when Alpine exits.
24551 An old copy can be put back into use by
24552 deleting and expunging newer versions of the data from the folder.
24553 Don't delete the first message from the folder. It is a special header
24554 message for the remote address book and it must be there.
24555 This is to prevent regular folders from being used as remote address book
24556 folders and having their data destroyed.
24558 This option is also used to determine how many extra copies of remote
24559 Alpine configuration files are kept.
24561 <UL>   
24562 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24563 </UL><P>
24564 &lt;End of help on this topic&gt;
24565 </BODY>
24566 </HTML>
24567 ====== h_config_remote_abook_validity =====
24568 <HTML>
24569 <HEAD>
24570 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
24571 </HEAD>
24572 <BODY>
24573 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
24575 Sets the minimum number of minutes that a
24576 remote address book will be considered up to date.
24577 Whenever an entry contained in a remote address book is used,
24578 if more than this many minutes have
24579 passed since the last check the remote server will be queried to see if the
24580 address book has changed.
24581 If it has changed, the local copy is updated.
24582 The default value is five minutes.
24583 The special value of -1 means never check.
24584 The special value of zero means only check when the address book is first
24585 opened.
24587 No matter what the value, the validity check is always done when the
24588 address book is about to be changed by the user.
24589 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
24590 while in the address book maintenance screen for the remote address book.
24592 <UL>   
24593 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24594 </UL><P>
24595 &lt;End of help on this topic&gt;
24596 </BODY>
24597 </HTML>
24598 ====== h_config_user_input_timeo =====
24599 <HTML>
24600 <HEAD>
24601 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
24602 </HEAD>
24603 <BODY>
24604 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
24606 If this is set to an integer greater than zero, then this is the number
24607 of <EM>hours</EM> to wait for user input before Alpine times out.
24608 If Alpine is
24609 in the midst of composing a message or is waiting for user response to
24610 a question, then it will not timeout.
24611 However, if Alpine is sitting idle waiting for
24612 the user to tell it what to do next and the user does not give any
24613 input for this many hours, Alpine will exit.
24614 No expunging or moving of read
24615 messages will take place.
24616 It will exit similarly to the way it would exit
24617 if it received a hangup signal.
24618 This may be useful for cleaning up unused Alpine sessions that have been
24619 forgotten by their owners.
24620 The Alpine developers envision system administrators
24621 setting this to a value of several hours (24?) so that it won't surprise
24622 a user who didn't want to be disconnected.
24624 <UL>   
24625 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24626 </UL><P>
24627 &lt;End of help on this topic&gt;
24628 </BODY>
24629 </HTML>
24630 ====== h_config_ssh_open_timeo =====
24631 <HTML>
24632 <HEAD>
24633 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
24634 </HEAD>
24635 <BODY>
24636 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
24638 Sets the time in seconds that Alpine will
24639 attempt to open a UNIX secure shell connection.
24640 The default is 15, the minimum non-zero value is 5,
24641 and the maximum is unlimited. If this is set to zero ssh connections
24642 will be completely disabled.
24644 <UL>   
24645 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24646 </UL><P>
24647 &lt;End of help on this topic&gt;
24648 </BODY>
24649 </HTML>
24650 ====== h_config_rsh_open_timeo =====
24651 <HTML>
24652 <HEAD>
24653 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
24654 </HEAD>
24655 <BODY>
24656 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
24658 Sets the time in seconds that Alpine will
24659 attempt to open a UNIX remote shell connection.
24660 The default is 15, the minimum non-zero value is 5,
24661 and the maximum is unlimited. If this is set to zero rsh connections
24662 will be completely disabled.
24663 This might be useful if rsh connections will never work in your environment
24664 but are causing delays due to firewalls or some other reason.
24666 <UL>   
24667 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24668 </UL><P>
24669 &lt;End of help on this topic&gt;
24670 </BODY>
24671 </HTML>
24672 ====== h_config_tcp_open_timeo =====
24673 <HTML>
24674 <HEAD>
24675 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
24676 </HEAD>
24677 <BODY>
24678 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
24680 Sets the time in seconds that Alpine will
24681 attempt to open a network connection. The default is 30, the minimum is 5,
24682 and the maximum is system defined (typically 75). If a connection has not
24683 completed within this many seconds Alpine will give up and consider it a
24684 failed connection.
24686 <UL>   
24687 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24688 </UL><P>
24689 &lt;End of help on this topic&gt;
24690 </BODY>
24691 </HTML>
24692 ====== h_config_tcp_readwarn_timeo =====
24693 <HTML>
24694 <HEAD>
24695 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
24696 </HEAD>
24697 <BODY>
24698 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
24700 Sets the time in seconds that Alpine will
24701 wait for a network read before warning you that things are moving slowly
24702 and possibly giving you the option to break the connection.
24703 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
24704 1000 seconds.
24706 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24708 <UL>   
24709 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24710 </UL><P>
24711 &lt;End of help on this topic&gt;
24712 </BODY>
24713 </HTML>
24714 ====== h_config_tcp_writewarn_timeo =====
24715 <HTML>
24716 <HEAD>
24717 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
24718 </HEAD>
24719 <BODY>
24720 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
24722 Sets the time in seconds that Alpine will
24723 wait for a network write before warning you that things are moving slowly
24724 and possibly giving you the option to break the connection.
24725 The default is 0 which means it is unset. If set to a non-zero value, the
24726 minimum is 5 and the maximum is 1000.
24728 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24730 <UL>   
24731 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24732 </UL><P>
24733 &lt;End of help on this topic&gt;
24734 </BODY>
24735 </HTML>
24736 ====== h_config_tcp_query_timeo =====
24737 <HTML>
24738 <HEAD>
24739 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
24740 </HEAD>
24741 <BODY>
24742 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
24744 When Alpine times out a network read or write it will normally just display
24745 a message saying &quot;Still waiting&quot;.
24746 However, if enough time has elapsed since it started waiting it will offer
24747 to let you break the connection.
24748 That amount of time is set by this option, which defaults to 60 seconds,
24749 has a minimum of 5 seconds, and a maximum of 1000 seconds.
24751 <UL>   
24752 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24753 </UL><P>
24754 &lt;End of help on this topic&gt;
24755 </BODY>
24756 </HTML>
24757 ====== h_config_incoming_folders =====
24758 <HTML>
24759 <HEAD>
24760 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
24761 </HEAD>
24762 <BODY>
24763 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
24765 This is a list of one or more folders other than <EM>INBOX</EM> that
24766 may receive new messages.
24767 It is related to the
24768 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
24769 feature.
24770 This variable is normally manipulated with the Add, Delete, and Rename
24771 commands in the FOLDER LIST for the Incoming Message Folders collection.
24773 <UL>   
24774 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24775 </UL><P>
24776 &lt;End of help on this topic&gt;
24777 </BODY>
24778 </HTML>
24779 ====== h_config_folder_spec =====
24780 <HTML>
24781 <HEAD>
24782 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
24783 </HEAD>
24784 <BODY>
24785 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
24787 This is a list of one or more collections where saved mail is stored. 
24788 The first collection in this list is the default
24789 collection for <EM>Save</EM>s,
24790 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
24792 This variable is normally manipulated using the Setup/collectionList screen.
24794 <UL>   
24795 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24796 </UL><P>
24797 &lt;End of help on this topic&gt;
24798 </BODY>
24799 </HTML>
24800 ====== h_config_news_spec =====
24801 <HTML>
24802 <HEAD>
24803 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
24804 </HEAD>
24805 <BODY>
24806 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
24808 This is a list of collections where news folders are located.
24810 This variable is normally manipulated using the Setup/collectionList screen.
24812 <UL>   
24813 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24814 </UL><P>
24815 &lt;End of help on this topic&gt;
24816 </BODY>
24817 </HTML>
24818 ====== h_config_address_book =====
24819 <HTML>
24820 <HEAD>
24821 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
24822 </HEAD>
24823 <BODY>
24824 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
24826 A list of personal address books.
24827 Each entry in the list is an
24828 optional nickname followed by a pathname or file name relative to the home
24829 directory.
24830 The nickname is separated from the rest of the line with whitespace.
24831 Instead of a local pathname or file name, a remote folder name can be given.
24832 This causes the address book to
24833 be a Remote address book.
24835 Use the Setup/AddressBook screen to modify this variable.
24837 <UL>   
24838 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24839 </UL><P>
24840 &lt;End of help on this topic&gt;
24841 </BODY>
24842 </HTML>
24843 ====== h_config_glob_addrbook =====
24844 <HTML>
24845 <HEAD>
24846 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
24847 </HEAD>
24848 <BODY>
24849 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
24851 A list of shared address books.  Each entry in the list is an
24852 optional nickname followed by a pathname or file name relative to the home
24853 directory.
24854 A SPACE character separates the nickname from the rest of the line.
24855 Instead of a local pathname or file name, a remote folder name can be given.
24856 This causes the address book to
24857 be a Remote address book.
24858 Global address books are
24859 defined to be ReadOnly.
24861 Use the Setup/AddressBook screen to modify this variable.
24863 <UL>   
24864 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24865 </UL><P>
24866 &lt;End of help on this topic&gt;
24867 </BODY>
24868 </HTML>
24869 ====== h_config_last_vers =====
24870 <HTML>
24871 <HEAD>
24872 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
24873 </HEAD>
24874 <BODY>
24875 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
24877 This is set automatically by Alpine. 
24878 It is used to keep track of the last version of Alpine that
24879 was run by the user.
24880 Whenever the version number increases, a new version message is printed out.
24881 This may not be set in the system-wide configuration files.
24883 <UL>   
24884 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24885 </UL><P>
24886 &lt;End of help on this topic&gt;
24887 </BODY>
24888 </HTML>
24889 ====== h_config_printer =====
24890 <HTML>
24891 <HEAD>
24892 <TITLE>OPTION: Printer</TITLE>
24893 </HEAD>
24894 <BODY>
24895 <H1>OPTION: Printer</H1>
24897 Your default printer selection.
24899 Use the Setup/Printer screen to modify this variable.
24901 <UL>   
24902 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24903 </UL><P>
24904 &lt;End of help on this topic&gt;
24905 </BODY>
24906 </HTML>
24907 ====== h_config_print_cat =====
24908 <HTML>
24909 <HEAD>
24910 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
24911 </HEAD>
24912 <BODY>
24913 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
24915 This is an internal Alpine variable.
24916 It will be equal to 1, 2, or 3 depending on whether the default printer is
24917 attached, standard, or a personal print command.
24919 Use the Setup/Printer screen to modify this variable.
24921 <UL>   
24922 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24923 </UL><P>
24924 &lt;End of help on this topic&gt;
24925 </BODY>
24926 </HTML>
24927 ====== h_config_print_command =====
24928 <HTML>
24929 <HEAD>
24930 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
24931 </HEAD>
24932 <BODY>
24933 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
24935 List of personal print commands.
24937 Use the Setup/Printer screen to modify this variable.
24939 <UL>   
24940 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24941 </UL><P>
24942 &lt;End of help on this topic&gt;
24943 </BODY>
24944 </HTML>
24945 ====== h_config_pat_old =====
24946 <HTML>
24947 <HEAD>
24948 <TITLE>OPTION: Patterns</TITLE>
24949 </HEAD>
24950 <BODY>
24951 <H1>OPTION: Patterns</H1>
24953 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
24954 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
24955 and Patterns-Other.
24956 Patterns-Scores and Patterns-Filters have been replaced since then by
24957 Patterns-Scores2 and Patterns-Filters2.
24959 Use the Setup/Rules screens to modify these variable.
24961 <UL>   
24962 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24963 </UL><P>
24964 &lt;End of help on this topic&gt;
24965 </BODY>
24966 </HTML>
24967 ====== h_config_pat_roles =====
24968 <HTML>
24969 <HEAD>
24970 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
24971 </HEAD>
24972 <BODY>
24973 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
24975 List of rules used for roles.
24976 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
24977 other options.
24979 Use the Setup/Rules/Roles screen to modify this variable.
24981 <UL>   
24982 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24983 </UL><P>
24984 &lt;End of help on this topic&gt;
24985 </BODY>
24986 </HTML>
24987 ====== h_config_pat_filts =====
24988 <HTML>
24989 <HEAD>
24990 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
24991 </HEAD>
24992 <BODY>
24993 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
24995 List of rules used for filters.
24997 Use the Setup/Rules/Filters screen to modify this variable.
24999 <UL>   
25000 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25001 </UL><P>
25002 &lt;End of help on this topic&gt;
25003 </BODY>
25004 </HTML>
25005 ====== h_config_pat_scores =====
25006 <HTML>
25007 <HEAD>
25008 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
25009 </HEAD>
25010 <BODY>
25011 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
25013 List of rules used for scoring.
25015 Use the Setup/Rules/SetScores screen to modify this variable.
25017 <UL>   
25018 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25019 </UL><P>
25020 &lt;End of help on this topic&gt;
25021 </BODY>
25022 </HTML>
25023 ====== h_config_pat_other =====
25024 <HTML>
25025 <HEAD>
25026 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
25027 </HEAD>
25028 <BODY>
25029 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
25031 List of rules used for miscellaneous configuration.
25033 Use the Setup/Rules/Other screen to modify this variable.
25035 <UL>   
25036 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25037 </UL><P>
25038 &lt;End of help on this topic&gt;
25039 </BODY>
25040 </HTML>
25041 ====== h_config_pat_incols =====
25042 <HTML>
25043 <HEAD>
25044 <TITLE>OPTION: patterns-indexcolors</TITLE>
25045 </HEAD>
25046 <BODY>
25047 <H1>OPTION: patterns-indexcolors</H1>
25049 List of rules used for coloring lines in the index.
25051 Use the Setup/Rules/Indexcolor screen to modify this variable.
25053 <UL>   
25054 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25055 </UL><P>
25056 &lt;End of help on this topic&gt;
25057 </BODY>
25058 </HTML>
25059 ====== h_config_pat_srch =====
25060 <HTML>
25061 <HEAD>
25062 <TITLE>OPTION: patterns-search</TITLE>
25063 </HEAD>
25064 <BODY>
25065 <H1>OPTION: patterns-search</H1>
25067 List of rules used only for searching with the Select command in the MESSAGE INDEX.
25069 Use the Setup/Rules/searCh screen to modify this variable.
25071 <UL>   
25072 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25073 </UL><P>
25074 &lt;End of help on this topic&gt;
25075 </BODY>
25076 </HTML>
25077 ====== h_config_font_name =====
25078 <HTML>
25079 <HEAD>
25080 <TITLE>OPTION: Font Name</TITLE>
25081 </HEAD>
25082 <BODY>
25083 <H1>OPTION: Font Name</H1>
25085 PC-Alpine only.
25087 Name of normal font.
25089 Use the pulldown Config menu to modify this variable.
25091 <UL>   
25092 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25093 </UL><P>
25094 &lt;End of help on this topic&gt;
25095 </BODY>
25096 </HTML>
25097 ====== h_config_font_size =====
25098 <HTML>
25099 <HEAD>
25100 <TITLE>OPTION: Font Size</TITLE>
25101 </HEAD>
25102 <BODY>
25103 <H1>OPTION: Font Size</H1>
25105 PC-Alpine only.
25107 Size of normal font.
25109 Use the pulldown Config menu to modify this variable.
25111 <UL>   
25112 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25113 </UL><P>
25114 &lt;End of help on this topic&gt;
25115 </BODY>
25116 </HTML>
25117 ====== h_config_font_style =====
25118 <HTML>
25119 <HEAD>
25120 <TITLE>OPTION: Font Style</TITLE>
25121 </HEAD>
25122 <BODY>
25123 <H1>OPTION: Font Style</H1>
25125 PC-Alpine only.
25127 Style of normal font.
25129 Use the pulldown Config menu to modify this variable.
25131 <UL>   
25132 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25133 </UL><P>
25134 &lt;End of help on this topic&gt;
25135 </BODY>
25136 </HTML>
25137 ====== h_config_font_char_set =====
25138 <HTML>
25139 <HEAD>
25140 <TITLE>OPTION: Font Character Set</TITLE>
25141 </HEAD>
25142 <BODY>
25143 <H1>OPTION: Font Character Set</H1>
25145 PC-Alpine only.
25147 Character set of normal font.
25149 Use the pulldown Config menu to modify this variable.
25151 <UL>   
25152 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25153 </UL><P>
25154 &lt;End of help on this topic&gt;
25155 </BODY>
25156 </HTML>
25157 ====== h_config_print_font_name =====
25158 <HTML>
25159 <HEAD>
25160 <TITLE>OPTION: Print-Font-Name</TITLE>
25161 </HEAD>
25162 <BODY>
25163 <H1>OPTION: Print-Font-Name</H1>
25165 PC-Alpine only.
25167 Name of printer font.
25169 Use the pulldown Config menu to modify this variable.
25171 <UL>   
25172 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25173 </UL><P>
25174 &lt;End of help on this topic&gt;
25175 </BODY>
25176 </HTML>
25177 ====== h_config_print_font_size =====
25178 <HTML>
25179 <HEAD>
25180 <TITLE>OPTION: Print-Font-Size</TITLE>
25181 </HEAD>
25182 <BODY>
25183 <H1>OPTION: Print-Font-Size</H1>
25185 PC-Alpine only.
25187 Size of printer font.
25189 Use the pulldown Config menu to modify this variable.
25191 <UL>   
25192 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25193 </UL><P>
25194 &lt;End of help on this topic&gt;
25195 </BODY>
25196 </HTML>
25197 ====== h_config_print_font_style =====
25198 <HTML>
25199 <HEAD>
25200 <TITLE>OPTION: Print-Font-Style</TITLE>
25201 </HEAD>
25202 <BODY>
25203 <H1>OPTION: Print-Font-Style</H1>
25205 PC-Alpine only.
25207 Style of printer font.
25209 Use the pulldown Config menu to modify this variable.
25211 <UL>   
25212 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25213 </UL><P>
25214 &lt;End of help on this topic&gt;
25215 </BODY>
25216 </HTML>
25217 ====== h_config_print_font_char_set =====
25218 <HTML>
25219 <HEAD>
25220 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
25221 </HEAD>
25222 <BODY>
25223 <H1>OPTION: Print-Font-Char-Set</H1>
25225 PC-Alpine only.
25227 Character set of printer font.
25229 Use the pulldown Config menu to modify this variable.
25231 <UL>   
25232 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25233 </UL><P>
25234 &lt;End of help on this topic&gt;
25235 </BODY>
25236 </HTML>
25237 ====== h_config_window_position =====
25238 <HTML>
25239 <HEAD>
25240 <TITLE>OPTION: Window-Position</TITLE>
25241 </HEAD>
25242 <BODY>
25243 <H1>OPTION: Window-Position</H1>
25245 PC-Alpine only.
25247 Position on the screen of the Alpine window.
25249 Alpine normally maintains this variable itself, and it is set automatically. 
25250 This variable is provided to those who wish to use the same window position 
25251 across different machines from the same configuration.
25252 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
25253 must also be set for this setting to be used.
25255 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
25256 C is the number of columns, R is the number of rows, and X and Y specify the
25257 top left corner of the window.
25259 <UL>   
25260 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25261 </UL><P>
25262 &lt;End of help on this topic&gt;
25263 </BODY>
25264 </HTML>
25265 ====== h_config_cursor_style =====
25266 <HTML>
25267 <HEAD>
25268 <TITLE>OPTION: Cursor Style</TITLE>
25269 </HEAD>
25270 <BODY>
25271 <H1>OPTION: Cursor Style</H1>
25273 PC-Alpine only.
25275 Cursor style.
25277 Use the pulldown Config menu to modify this variable.
25279 <UL>   
25280 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25281 </UL><P>
25282 &lt;End of help on this topic&gt;
25283 </BODY>
25284 </HTML>
25285 ====== h_config_ldap_servers =====
25286 <HTML>
25287 <HEAD>
25288 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
25289 </HEAD>
25290 <BODY>
25291 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
25293 List of LDAP servers and associated data.
25295 Use the Setup/Directory screen to modify this variable.
25297 <UL>   
25298 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25299 </UL><P>
25300 &lt;End of help on this topic&gt;
25301 </BODY>
25302 </HTML>
25303 ====== h_config_sendmail_path =====
25304 <HTML>
25305 <HEAD>
25306 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
25307 </HEAD>
25308 <BODY>
25309 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
25311 This names the path to an
25312 alternative program, and any necessary arguments, to be used in posting
25313 mail messages. See the Technical notes for more information.
25315 <UL>   
25316 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25317 </UL><P>
25318 &lt;End of help on this topic&gt;
25319 </BODY>
25320 </HTML>
25321 ====== h_config_oper_dir =====
25322 <HTML>
25323 <HEAD>
25324 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
25325 </HEAD>
25326 <BODY>
25327 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
25329 This names the root of the
25330 tree to which you are restricted when reading and writing folders and
25331 files. It is usually used in the system-wide,
25332 <EM>fixed</EM> configuration file.
25334 <UL>   
25335 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25336 </UL><P>
25337 &lt;End of help on this topic&gt;
25338 </BODY>
25339 </HTML>
25340 ====== h_config_rshpath =====
25341 <HTML>
25342 <HEAD>
25343 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
25344 </HEAD>
25345 <BODY>
25346 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
25348 Sets the name of the command used to open a UNIX remote shell
25349 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
25351 <UL>   
25352 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25353 </UL><P>
25354 &lt;End of help on this topic&gt;
25355 </BODY>
25356 </HTML>
25357 ====== h_config_rshcmd =====
25358 <HTML>
25359 <HEAD>
25360 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
25361 </HEAD>
25362 <BODY>
25363 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
25365 Sets the format of the command used to
25366 open a UNIX remote shell connection. The default is
25367 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25368 provided command. The first is for the command's pathname, the second is
25369 for the host to connnect to, the third is for the user to connect as, and
25370 the fourth is for the connection method (typically <CODE>imap</CODE>).
25372 <UL>   
25373 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25374 </UL><P>
25375 &lt;End of help on this topic&gt;
25376 </BODY>
25377 </HTML>
25378 ====== h_config_sshpath =====
25379 <HTML>
25380 <HEAD>
25381 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
25382 </HEAD>
25383 <BODY>
25384 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
25386 Sets the name of the command used to open a UNIX secure shell
25387 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
25389 <UL>   
25390 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25391 </UL><P>
25392 &lt;End of help on this topic&gt;
25393 </BODY>
25394 </HTML>
25395 ====== h_config_sshcmd =====
25396 <HTML>
25397 <HEAD>
25398 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
25399 </HEAD>
25400 <BODY>
25401 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
25403 Sets the format of the command used to
25404 open a UNIX secure shell connection. The default is
25405 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25406 provided command. The first is for the command's pathname, the second is
25407 for the host to connnect to, the third is for the user to connect as, and
25408 the fourth is for the connection method (typically <CODE>imap</CODE>).
25410 <UL>   
25411 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25412 </UL><P>
25413 &lt;End of help on this topic&gt;
25414 </BODY>
25415 </HTML>
25416 ====== h_config_new_ver_quell =====
25417 <HTML>
25418 <HEAD>
25419 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
25420 </HEAD>
25421 <BODY>
25422 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
25424 When a new version of Alpine is run for the first time it offers a
25425 special explanatory screen to the user upon startup.  This option
25426 helps control when and if that special screen appears for users that
25427 have previously run Alpine.  It takes as its value an Alpine version
25428 number.  Alpine versions less than the specified value will supress this
25429 special screen while versions equal to or greater than that specified
25430 will behave normally.
25432 <UL>   
25433 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25434 </UL><P>
25435 &lt;End of help on this topic&gt;
25436 </BODY>
25437 </HTML>
25438 ====== h_config_disable_drivers =====
25439 <HTML>
25440 <HEAD>
25441 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
25442 </HEAD>
25443 <BODY>
25444 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
25446 This variable is a list of mail drivers that will be disabled.
25447 The candidates for disabling are listed below.
25448 There may be more in the future if you compile Alpine with
25449 a newer version of the c-client library.
25452 <UL>
25453 <LI> mbox
25454 <LI> mbx
25455 <LI> mh
25456 <LI> mmdf
25457 <LI> mtx
25458 <LI> mx
25459 <LI> news
25460 <LI> phile
25461 <LI> tenex
25462 <LI> unix
25463 </UL>
25466 The <EM>mbox</EM> driver enables the following behavior: if there is a
25467 file called <CODE>mbox</CODE>
25468 in your home directory, and if that file is either empty or in Unix mailbox
25469 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
25470 will automatically transfer mail from the system mail spool directory into the
25471 <CODE>mbox</CODE> file and
25472 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
25473 this will not happen.
25476 It is not recommended to disable the driver that supports the system default
25477 mailbox format. On most non-SCO systems, that driver is the
25478 <EM>unix</EM> driver.
25479 On most SCO systems, it is the <EM>mmdf</EM> driver.
25480 The system default driver may be
25481 configured to something else on your system; check with your system manager
25482 for additional information.
25485 It is most likely not very useful for you to disable any of the drivers other
25486 than possibly <EM>mbox</EM>.
25487 You could disable some of the others if you know for
25488 certain that you don't need them but the performance gain in doing so
25489 is very modest.
25491 <UL>   
25492 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25493 </UL><P>
25494 &lt;End of help on this topic&gt;
25495 </BODY>
25496 </HTML>
25497 ====== h_config_disable_auths =====
25498 <HTML>
25499 <HEAD>
25500 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
25501 </HEAD>
25502 <BODY>
25503 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
25505 This variable is a list of SASL (Simple Authentication and Security
25506 Layer) authenticators that will be disabled.
25507 SASL is a mechanism for
25508 authenticating to IMAP, POP3, SMTP, and other network servers.
25511 Alpine matches its list of supported authenticators with the server to
25512 determine the most secure authenticator that is supported by both.
25513 If no matching authenticators are found, Alpine will revert to plaintext
25514 login (or, in the case of SMTP, will be unable to authenticate at all).
25516 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
25519 Normally, you will not disable any authenticators.
25520 There are two exceptions:
25522 <OL>
25523 <LI> You use a broken server that advertises an authenticator,
25524 but does not actually implement it.
25525 <LI> You have a Kerberos-capable version of Alpine and the server is
25526 also Kerberos-capable, but you can not obtain Kerberos
25527 credentials on the server machine, thus you desire to disable
25528 GSSAPI (which in turn disables Alpine's Kerberos support).
25529 </OL>
25531 It is never necessary to disable authenticators, since Alpine will try
25532 other authenticators before giving up.
25533 However, disabling the relevant authenticator avoids annoying error messages.
25535 <UL>   
25536 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25537 </UL><P>
25538 &lt;End of help on this topic&gt;
25539 </BODY>
25540 </HTML>
25541 ====== h_config_abook_metafile =====
25542 <HTML>
25543 <HEAD>
25544 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
25545 </HEAD>
25546 <BODY>
25547 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
25549 This is usually set by Alpine and is the name of a file
25550 that contains data about
25551 remote address books and remote configuration files.
25553 <UL>   
25554 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25555 </UL><P>
25556 &lt;End of help on this topic&gt;
25557 </BODY>
25558 </HTML>
25559 ====== h_config_composer_wrap_column =====
25560 <HTML>
25561 <HEAD>
25562 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
25563 </HEAD>
25564 <BODY>
25565 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
25568 This option specifies an aspect of Alpine's Composer.  This gives the
25569 maximum width that auto-wrapped lines will have.  It's also the maximum
25570 width of lines justified using the <A HREF="h_compose_justify">^J
25571 Justify</A> command.  The normal default
25572 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
25573 in order to
25574 prevent very long lines from being sent in outgoing mail.  When the mail
25575 is actually sent, trailing spaces will be stripped off of each line.
25578 <UL>   
25579 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25580 </UL><P>
25581 &lt;End of help on this topic&gt;
25582 </BODY>
25583 </HTML>
25584 ====== h_config_deadlets =====
25585 <HTML>
25586 <HEAD>
25587 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
25588 </HEAD>
25589 <BODY>
25590 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
25593 This option affects Alpine's behavior when you cancel a message being
25594 composed.  Alpine's usual behavior is to write the canceled message to
25595 a file named 
25596 <!--chtml if pinemode="os_windows"-->
25597 &quot;DEADLETR&quot;,
25598 <!--chtml else-->
25599 &quot;dead.letter&quot; in your home directory,
25600 <!--chtml endif-->
25601 overwriting any previous message.
25603 If you set this option to a value higher than one, then that many copies
25604 of dead letter files will be saved.
25605 For example, if you set this option to &quot;3&quot; then you may have
25606 files named
25607 <!--chtml if pinemode="os_windows"-->
25608 &quot;DEADLETR&quot;,
25609 &quot;DEADLETR2&quot;, and
25610 &quot;DEADLETR3&quot;.
25611 <!--chtml else-->
25612 &quot;dead.letter&quot;,
25613 &quot;dead.letter2&quot;, and
25614 &quot;dead.letter3&quot; in your home directory.
25615 <!--chtml endif-->
25616 In this example, the most recently cancelled message will be in
25617 <!--chtml if pinemode="os_windows"-->
25618 &quot;DEADLETR&quot;,
25619 <!--chtml else-->
25620 &quot;dead.letter&quot;,
25621 <!--chtml endif-->
25622 and the third most recently cancelled message will be in
25623 <!--chtml if pinemode="os_windows"-->
25624 &quot;DEADLETR3&quot;.
25625 <!--chtml else-->
25626 &quot;dead.letter3&quot;.
25627 <!--chtml endif-->
25628 The fourth most recently cancelled message will no longer be saved.
25631 If you set this option to zero, then NO record of canceled messages is
25632 maintained.
25634 If the feature
25635 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
25636 is set, that overrides whatever you set for this option.
25637 If this option had existed at the time, then the Quell feature would not
25638 have been added, but it is still there for backwards compatibility.
25639 So, in order for this option to have the desired effect, make sure the
25640 Quell feature is turned off.
25643 <UL>   
25644 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25645 </UL><P>
25646 &lt;End of help on this topic&gt;
25647 </BODY>
25648 </HTML>
25649 ====== h_config_maxremstream =====
25650 <HTML>
25651 <HEAD>
25652 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
25653 </HEAD>
25654 <BODY>
25655 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
25657 This option affects low-level behavior of Alpine.
25658 The default value for this option is <EM>3</EM>.
25659 If your INBOX is accessed using the IMAP protocol
25660 from an IMAP server, that connection is kept open throughout the
25661 duration of your Alpine session, independent of the value of this option.
25662 The same is true of any 
25663 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25664 you have defined.
25665 This option controls Alpine's behavior when connecting to remote IMAP folders
25666 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
25667 It specifies the maximum number of remote IMAP connections (other than
25668 those mentioned above) that Alpine will use for accessing the rest of your
25669 folders.
25670 If you set this option to zero, you will turn off most remote connection
25671 re-use.
25672 It's difficult to understand exactly what this option does, and it is usually
25673 fine to leave it set to its default value.
25674 It is probably more likely that you will be interested in setting the
25675 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
25676 instead of changing the value of this option.
25677 A slightly longer explanation of what is going on with this option
25678 is given in the next paragraphs.
25681 There are some time costs involved in opening and closing remote IMAP 
25682 folders, the main costs being the time you have to wait for the connection
25683 to the server and the time for the folder to open.
25684 Opening a folder may involve not only the time the server takes to do its
25685 processing but time that Alpine uses to do filtering.
25686 These times can vary widely.
25687 They depend on how loaded the server is, how large
25688 the folder being opened is, and how you set up filtering, among other things.
25689 Once Alpine has opened a connection to a particular folder, it will attempt
25690 to keep that connection open in case you use it again.
25691 In order to do this,
25692 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
25693 this option) IMAP connections you have alloted for this purpose.
25695 For example, suppose the value of this option is set to &quot;2&quot;.
25696 If your INBOX is accessed on a remote server using the IMAP protocol, that
25697 doesn't count as one of the remote connections but it is always kept open.
25698 If you then open another IMAP folder, that would be your first
25699 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
25700 If you open a third folder the second will be left open, in case you
25701 return to it.
25702 You won't be able to tell it has been left open.
25703 It will appear to be closed when you leave the folder but the connection
25704 will remain in the background.
25705 Now suppose you go back to the second folder (the first folder after the
25706 INBOX).
25707 A connection to that folder is still open so you won't have to wait
25708 for the startup time to open it.
25709 Meanwhile, the connection to the third folder will be left behind.
25710 Now, if you open a fourth folder, you will bump into the
25711 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
25712 than INBOX and you have the option set to &quot;2&quot;.
25713 The connection that is being used for
25714 the third folder will be re-used for this new fourth folder.
25715 If you go back to the third folder after this, it is no longer already
25716 connected when you get there.
25717 You'll still save some time since Alpine will re-use the connection to the
25718 fourth folder and you have already logged in on that connection,
25719 but the folder will have to be re-opened from scratch.
25721 If a folder is large and the startup cost is dominated by the time it takes
25722 to open that folder or to run filters on it, then it will pay to make the
25723 value of this option large enough to keep it open.
25724 On the other hand, if you only revisit a handful of folders or if
25725 the folders are small, then it might
25726 make more sense to keep this number small so that the reconnect
25727 time (the time to start up a new connection and authenticate)
25728 is eliminated instead.
25730 You may also need to consider the impact on the server.
25731 On the surface, a larger number here may cause a larger impact on the
25732 server, since you will have more connections open to the server.
25733 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
25734 associated with reopening a folder, but the <EM>server</EM> will be
25735 avoiding those costs as well.
25737 When twenty five minutes pass without any active use of an IMAP connection
25738 being saved for possible re-use, that connection will be shut down,
25741 <UL>   
25742 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25743 </UL><P>
25744 &lt;End of help on this topic&gt;
25745 </BODY>
25746 </HTML>
25747 ====== h_config_permlocked =====
25748 <HTML>
25749 <HEAD>
25750 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
25751 </HEAD>
25752 <BODY>
25753 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
25755 This option affects low-level behavior of Alpine.
25756 There is no default value for this option.
25757 It is related to the options
25758 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
25759 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
25760 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
25763 Note: changes made to this list take effect the next time you open a
25764 folder in the list.
25767 This is a list of folders that will be permanently kept open once they
25768 are first opened.
25769 The names in this list may be either the nickname of an Incoming folder
25770 or the full technical specification of a folder.
25771 The folders in this list need not be remote IMAP folders, they could usefully
25772 be local folders, as well.
25773 If a folder in the list is a newsgroup or is not accessed either locally
25774 or via IMAP, then the entry will be ignored.
25775 For example, folders accessed via NNTP or POP3 will not be kept open, since
25776 the way that new mail is found with those protocols involves closing and
25777 reopening the connection.
25779 Once a Stay Open folder has been opened, new-mail checking will continue
25780 to happen on that folder for the rest of the Alpine session.
25781 Your INBOX is always implicitly included in this Stay-Open list and doesn't
25782 need to be added explicitly.
25784 Another difference that you may notice between a Stay Open folder and a
25785 non-Stay Open folder is which message is selected as the current message
25786 when you enter the folder index.
25787 Normally, the starting position for an incoming folder (which most Stay Open
25788 folders will likely be) is controlled by the
25789 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
25790 However, if a folder is a Stay Open folder, when you re-enter the folder
25791 after the first time the current message will be the same as it was when
25792 you left the folder.
25793 An exception is made if you use the TAB command to get to the folder.
25794 In that case, the message number will be incremented by one from what it
25795 was when you left the folder.
25797 The above special behavior is thought to be useful.
25798 However, it is special and different from what you might at first expect.
25799 The feature
25800 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
25801 may be used to turn off this special treatment.
25803 If the message that was current when you left the folder no longer exists,
25804 then the regular startup rule will be used instead.
25807 <UL>   
25808 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25809 </UL><P>
25810 &lt;End of help on this topic&gt;
25811 </BODY>
25812 </HTML>
25813 ====== h_config_viewer_overlap =====
25814 <html>
25815 <header>
25816 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
25817 </header>
25818 <body>
25819 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
25821 This option specifies an aspect of Alpine's Message Viewing screen.  When
25822 the space bar is used to page forward in a message, the number of lines
25823 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
25824 bottom of the screen.  That is, if this was set to two lines, then the
25825 bottom two lines of the screen would be repeated on the top of the next
25826 screen.  The normal default value is "2".<p>
25827 <UL>   
25828 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25829 </UL><P>
25830 &lt;End of help on this topic&gt;
25831 </body>
25832 </html>
25833 ====== h_config_scroll_margin =====
25834 <HTML>
25835 <HEAD>
25836 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
25837 </HEAD>
25838 <BODY>
25839 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
25841 This option controls when Alpine's line-by-line scrolling occurs.
25842 Typically, when a selected item is at the top or bottom screen edge
25843 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
25844 displayed items are scrolled down or up by a single line.
25847 This option allows you to tell Alpine the number of lines from the top and
25848 bottom screen edge that line-by-line paging should occcur.  For example,
25849 setting this value to one (1) will cause Alpine to scroll the display
25850 vertically when you move to select an item on the display's top or
25851 bottom edge.
25854 By default, this variable is zero, indicating that scrolling happens
25855 when you move up or down to select an item immediately off the display's
25856 top or bottom edge.
25859 <UL>   
25860 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25861 </UL><P>
25862 &lt;End of help on this topic&gt;
25863 </BODY>
25864 </HTML>
25865 ====== h_config_wordseps =====
25866 <HTML>
25867 <HEAD>
25868 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
25869 </HEAD>
25870 <BODY>
25871 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
25873 This option affects how a &quot;word&quot; is defined in the composer.
25874 The definition of a word is used when using the Forward Word and Backward
25875 Word commands in the composer, as well as when using the spell checker.
25876 Whitespace is always considered a word separator.
25877 Punctuation (like question marks, periods, commas, and so on) is always
25878 a word separator if it comes at the end of a word.
25879 By default, a punctuation character that is in the middle of a word does
25880 not break up that word as long as the character before and the character
25881 after it are both alphanumeric.
25882 If you add a character to this option it will be considered a
25883 word separator even when it occurs in the middle of an alphanumeric word.
25884 For example, if you want to skip through each part of an address instead
25885 of skipping the whole address at once you might want to include &quot;@&quot;
25886 and &quot;.&quot; in this list.
25887 If you want the word-skipper to stop on each part of a UNIX filename you
25888 could add &quot;/&quot; to the list.
25889 The equal sign and dash are other possibilities you might find helpful.
25891 <UL>   
25892 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25893 </UL><P>
25894 &lt;End of help on this topic&gt;
25895 </BODY>
25896 </HTML>
25897 ====== h_config_reply_indent_string =====
25898 <HTML>
25899 <HEAD>
25900 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
25901 </HEAD>
25902 <BODY>
25903 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
25905 This option specifies an aspect of Alpine's Reply command.
25906 When a message is replied to and the text of the message is included, the
25907 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
25908 to each line indicating it is quoted text.
25909 (In case you haven't seen this before, &quot;string&quot; is a technical term
25910 that means chunk of text.)
25913 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
25914 in 1999 and its wide-spread adoption since then, you will usually be better off if you
25915 use one of the standard values,
25916 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
25919 This option specifies a different value for that string.
25920 If you wish to use a string that begins or ends with a space,
25921 enclose the string in double quotes.
25924 Besides simple text, the prepended string can be based
25925 on the message being replied to.
25926 The following tokens are substituted for the message's corresponding value:
25928 <DL>
25929 <DT>_FROM_</DT>
25930 <DD>This token gets replaced with the message sender's &quot;username&quot;.
25931 If the name is longer than six characters, only the first six characters are
25932 used.
25933 </DD>
25935 <DT>_NICK_</DT>
25936 <DD>This token gets replaced with the nickname of the message sender's
25937 address as found in your addressbook.
25938 If no addressbook entry is found,
25939 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
25940 If the nickname is longer than six characters, only the first six characters are
25941 used.
25942 </DD>
25944 <DT>_INIT_</DT>
25945 <DD>This token gets replaced with the initials of the sender of the message.
25946 </DD>
25948 </DL>
25950 NOTE: When the
25951 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
25952 feature is enabled, you are given the opportunity to edit the string, whether 
25953 it is the default or one automatically generated using the above tokens.
25955 If you change your <!--#echo var="VAR_reply-indent-string"-->
25956 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
25957 quoted text will not be flowed
25958 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
25959 when you reply.
25960 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
25961 set to the default value.
25963 <UL>   
25964 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25965 </UL><P>
25966 &lt;End of help on this topic&gt;
25967 </BODY>
25968 </HTML>
25969 ====== h_config_quote_replace_string =====
25970 <HTML>
25971 <HEAD>
25972 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
25973 </HEAD>
25974 <BODY>
25975 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
25977 This option specifies what string to use as a quote when <b>viewing</b> a
25978 message.  The standard way of quoting messages when replying is the string
25979 &quot;&gt;&nbsp;&quot; (quote space).
25980 With this variable set, viewing a message will
25981 replace occurrences of 
25982 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
25983 This setting works best when
25984 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
25985 or the equivalent setting in your correspondents' mail programs
25986 is set to the default
25987 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
25988 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
25990 By default, this setting will only work on messages that are flowed, which is
25991 the default way of sending messages for many mail clients including
25992 Alpine.  Enable the feature
25993 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
25994 to also have quote-replacement performed on non-flowed messages.
25997 Setting this option will replace  &quot;&gt;&quot; and 
25998 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
25999 spaces. To preserve those spaces enclose the full string in double quotes.
26001 No padding to separate the text of the message from the quote string is
26002 added. This means that if you do not add trailing spaces to the value of
26003 this variable, text will be displayed right next to the quote string,
26004 which may be undesirable. This can be avoided by adding a new string
26005 separated by a space from your selection of quote string replacement. This
26006 last string will be used for padding. For example, setting this variable to 
26007 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
26008 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
26009 a space from the last quote string to make it more readable.
26011 One possible setting for this variable could be
26012 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
26013 would have the effect of indenting each level of quoting four spaces and
26014 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
26015 more discernible by setting colors for quoted text.
26017 Replying to or forwarding the viewed message will preserve the original
26018 formatting of the message, so quote-replacement will not be performed on
26019 messages that are being composed.
26021 <UL>   
26022 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26023 </UL><P>
26024 &lt;End of help on this topic&gt;
26025 </BODY>
26026 </HTML>
26027 ====== h_config_empty_hdr_msg =====
26028 <HTML>
26029 <HEAD>
26030 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
26031 </HEAD>
26032 <BODY>
26033 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
26035 When sending, if both the To and Cc fields are empty and you
26036 are sending the message to a Bcc,
26037 Alpine will put a special address in the To line.  The default value is:
26040 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
26043 The reason for this is to avoid embarrassment caused by some Internet
26044 mail transfer software that interprets a &quot;missing&quot;
26045 <SAMP>To:</SAMP> header as an error and replaces it with an
26046 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
26047 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
26048 Bcc.  You may change the part of this message that comes before the
26049 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
26050 variable to something else.
26053 The normal default is &quot;undisclosed-recipients&quot;.
26056 <UL>   
26057 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26058 </UL><P>
26059 &lt;End of help on this topic&gt;
26060 </BODY>
26061 </HTML>
26062 ====== h_config_status_msg_delay =====
26063 <HTML>
26064 <HEAD>
26065 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
26066 </HEAD>
26067 <BODY>
26068 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
26070 This option has evolved over time, causing the possible values to be
26071 counter-intuitive.
26072 Read carefully before you set this option.
26073 First we explain what the option does, then there is a longer discussion
26074 following that.
26076 If this is set to zero, the default value, it has <EM>no</EM> effect.
26077 Positive and negative values serve two similar, but different purposes.
26079 If it is set to a positive number, it causes the cursor to move to the
26080 status line whenever a status message is printed and pause there for this
26081 many seconds.
26082 It will probably only be useful if the 
26083 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
26084 also turned on.
26085 Setting this option to a positive number can only be used to
26086 <EM>increase</EM> the status message delay.
26087 This may be useful for Braille displays, or other non-traditional displays.
26089 If it is set to a negative number the interpretation is a bit complicated.
26090 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
26091 allow you to read important status messages.
26092 Of course, this may cause you to miss some important messages.
26093 If you see a message flash by but miss what it says you can use the
26094 Journal command from the MAIN MENU to read it.
26095 If you set this option to a negative value, the delay will be
26096 no more than one second less than the absolute value
26097 of the value you set.
26098 So if you set it to -1, the delay will be no more than zero seconds, no
26099 delay at all.
26100 If you set it to -2, the delay will be no more than 1 second.
26101 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
26102 If the delay that Alpine would have used by default is less than this delay,
26103 then the smaller delay set by Alpine will be used.
26104 Setting this option to a negative value can only reduce the amount of
26105 delay, never increase it.
26107 Here is a more detailed explanation.
26108 Status messages are the messages that show up spontaneously in the
26109 status message line, usually the third line from the bottom of the screen.
26110 By default, Alpine assigns each status message it produces a minimum
26111 display time.
26112 Some status messages have a minimum display time of zero.
26113 You can see an example of such a message by paging up in this help text
26114 until you reach the top of the screen.
26115 If you try to page past the top you will see the message
26117 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
26119 in the status line.
26120 If there is another more important use of the status message line this message
26121 might be replaced quickly, or it even might not be shown at all.
26122 However, if there is no reason to get rid of the message, it might stay
26123 there for several seconds while you read the help.
26124 An example where it is replaced immediately happens when you page up in
26125 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
26126 command right after paging up.
26127 The message will disappear immediately without causing a delay (unless you
26128 have set this option to a positive value) to allow you to type input for
26129 the &quot;WhereIs&quot; command.
26130 Since it isn't a very important message, Alpine has set its minimum display
26131 time to zero seconds.
26133 Other messages have minimum display times of three or more seconds.
26134 These are usually error messages that Alpine thinks you ought to see.
26135 For example, it might be a message about a failed Save or a failed folder open.
26136 It is often the case that this minimum display time won't delay you in
26137 any way because the status message line is not needed for another reason.
26138 However, there are times when Alpine has to delay what it is doing in
26139 order to display a status message for the minimum display time.
26140 This happens when a message is being displayed and Alpine wants to ask
26141 for input from the keyboard.
26142 For example, when you Save a message you use the status message line.
26143 You get a prompt there asking for the name of the folder to save to.
26144 If there is a status message being displayed that has not
26145 yet displayed for its minimum
26146 time Alpine will display that status message surrounded with the characters
26147 &gt; and &lt; to show you that it is delaying.
26148 That might happen, for example, if you tried to save to a folder that
26149 caused an error, then followed that immediately with another Save command.
26150 You might find yourself waiting for a status message like
26152 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
26154 to finish displaying for three seconds.
26155 If that is something you find happening to you frequently, you may use
26156 negative values of this option to decrease or eliminate that delay, at
26157 the risk of missing the message.
26159 <UL>   
26160 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26161 </UL><P>
26162 &lt;End of help on this topic&gt;
26163 </BODY>
26164 </HTML>
26165 ====== h_config_active_msg_interval =====
26166 <HTML>
26167 <HEAD>
26168 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
26169 </HEAD>
26170 <BODY>
26171 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
26173 When Alpine is delayed for some reason it usually shows that
26174 something is happening with a small animated display in the status
26175 message line near the bottom of the screen.
26176 This option sets how frequently the characters (for example, a spinning bar)
26177 in the active status message lines are updated.
26178 At most, it can be set to be udpated 20 times per second. 
26181 Setting this value to zero will prevent display of the animations
26182 altogether.
26185 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
26186 can be used to remove the randomness from this animated display.
26189 <UL>   
26190 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26191 </UL><P>
26192 &lt;End of help on this topic&gt;
26193 </BODY>
26194 </HTML>
26195 ====== h_config_mailchecknoncurr =====
26196 <HTML>
26197 <HEADER>
26198 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
26199 </HEADER>
26200 <BODY>
26201 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
26203 This option is closely related to the
26204 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26205 option, as well as the
26206 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
26207 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
26208 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
26209 new-mail checking is disabled and this option will have no effect.
26211 Normally this option is set to zero, which means that the value used will be
26212 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
26213 If you set this option to a value different from zero
26214 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
26215 then that is the check interval that will be used
26216 for folders that are not the currently open folder or the INBOX.
26217 You may not even have any folders that are noncurrent and not the INBOX.
26218 If you do, it is likely that they are due to
26219 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
26220 you have configured.
26221 This option also affects the rate of mail checking done on cached
26222 connections to folders you previously had open but are no longer actively
26223 using.
26224 You aren't expected to understand that last sentence, but if you are interested
26225 take a look at
26226 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
26227 and the related options.
26229 <UL>   
26230 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26231 </UL><P>
26232 &lt;End of help on this topic&gt;
26233 </BODY>
26234 </HTML>
26235 ====== h_config_fifopath =====
26236 <HTML>
26237 <HEADER>
26238 <TITLE>OPTION: NewMail FIFO Path</TITLE>
26239 </HEADER>
26240 <BODY>
26241 <H1>OPTION: NewMail FIFO Path</H1>
26243 This option is only available in UNIX Alpine.
26244 However, there is a very similar feature built in to PC-Alpine.
26245 In PC-Alpine's Config menu at the top of the screen
26246 is an option called &quot;New Mail Window&quot;.
26248 You may have Alpine create a FIFO special file (also called a named pipe) where
26249 it will send a one-line message each time a new message is received in
26250 the current folder, the INBOX, or any open
26251 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
26252 To protect against two different Alpines both writing to the same FIFO, Alpine
26253 will only create the FIFO and write to it if it doesn't already exist.
26255 A possible way to use this option would be to have a separate window
26256 on your screen running the command
26258 <CENTER><SAMP>cat filename</SAMP></CENTER>
26260 where &quot;filename&quot; is the name of the file given for this option.
26261 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
26262 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
26263 You may be tempted to use &quot;tail -f filename&quot; to view the new
26264 mail log.
26265 However, the common implementations of the tail command will not do what you
26266 are hoping.
26268 The width of the messages produced for the FIFO may be altered with the
26269 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
26271 On some systems, fifos may only be created in a local filesystem.
26272 In other words, they may not be in NFS filesystems.
26273 This requirement is not universal.
26274 If the system you are using supports it, it should work.
26275 (It is often the case that your home directory is in an NFS filesystem.
26276 If that is the case, you might try using a file in the &quot;/tmp&quot;
26277 filesystem, which is usually a local filesytem.)
26278 Even when it is possible to use an NFS-mounted filesystem as a place to name
26279 the fifo (for example, your home directory), it will still be the case that
26280 the reader (probably the &quot;cat&quot; command) and the
26281 writer (Alpine) of the fifo must be running on the same system.
26283 <UL>   
26284 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26285 </UL><P>
26286 &lt;End of help on this topic&gt;
26287 </BODY>
26288 </HTML>
26289 ====== h_config_newmailwidth =====
26290 <HTML>
26291 <HEADER>
26292 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
26293 </HEADER>
26294 <BODY>
26295 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
26297 For UNIX Alpine, this option is only useful if you have turned on the
26298 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
26299 That option causes new mail messages to be sent to a fifo file.
26300 Those messages will be 80 characters wide by default.
26301 You can change the width of those messages by changing this option.
26302 For example, if you are reading those messages in another window you might
26303 want to set this width to the width of that other window.
26305 If you are using PC-Alpine, it has an option in the Config menu to turn
26306 on the &quot;New Mail Window&quot;.
26307 This present option also controls the width of that window.
26309 <UL>   
26310 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26311 </UL><P>
26312 &lt;End of help on this topic&gt;
26313 </BODY>
26314 </HTML>
26315 ====== h_config_mailcheck =====
26316 <HTML>
26317 <HEADER>
26318 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
26319 </HEADER>
26320 <BODY>
26321 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
26323 This option specifies, in seconds,
26324 how often Alpine will check for new mail.
26325 If set to zero, new-mail checking is disabled.
26326 (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
26327 current message is the last message of the folder.)
26328 There is a minimum value for this option, normally 15 seconds.
26329 The default value is normally 150 seconds.
26330 The higher you set this option, the easier it is on the server.
26332 There are some situations where automatic new-mail checking does not work.
26333 See the discussion about new-mail checking in
26334 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
26336 The new-mail checking will not happen exactly at the frequency that you specify.
26337 For example, Alpine may elect to defer a non-INBOX mail check if you
26338 are busy typing.
26339 Or, it may check more frequently than you have specified if that is
26340 thought to be necessary to keep the server from closing the connection
26341 to the folder due to inactivity.
26342 If Alpine checks for new mail as a side effect of another command, it will reset
26343 the timer, so that new-mail checking may seem to happen irregularly instead of
26344 every X seconds like clockwork.
26346 If you are anxious to know about new mail as soon as possible, set the check
26347 interval low, and you'll know about the new mail by approximately
26348 that amount of time after it arrives.
26349 If you aren't so worried about knowing right away, set this option to a
26350 higher value.
26351 That will save the server some processing time and may save you some of
26352 the time you spend waiting for new-mail checks to happen if you are
26353 dealing with a slow server or slow network connection.
26355 If you suspect that new-mail checking is causing slow downs for you,
26356 you may want to look into the options
26357 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
26358 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
26359 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
26360 which refine when mail checking is done.
26362 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
26363 there is a minimum time
26364 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
26365 between new-mail checks.
26366 Because of this minimum you may notice that new mail does not
26367 appear promptly when you expect it.
26368 The reason for this is to protect the server from over-zealous opening and
26369 closing of the Mail Drop folder, since that is a costly operation.
26371 <UL>   
26372 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26373 </UL><P>
26374 &lt;End of help on this topic&gt;
26375 </BODY>
26376 </HTML>
26377 ====== h_config_quell_checks_comp =====
26378 <HTML>
26379 <HEAD>
26380 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
26381 </HEAD>
26382 <BODY>
26383 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
26385 This option is closely related to the
26386 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26387 option, the
26388 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26389 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
26391 If this option is set, then the normal new-mail checking that happens
26392 while you are composing will not happen for folders other than your
26393 INBOX (which depends on the setting
26394 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
26396 You might want to set this option if you are experiencing delays while
26397 composing that you think might be related to the speed of the new-mail
26398 checks.
26400 Even with this option turned on, an occasional new-mail check may be done
26401 in order to keep the server from killing the connection to the folder.
26402 For example, IMAP servers may remove a connection to a folder if there
26403 has been no activity on the connection for 30 minutes or more.
26404 Instead of letting that happen, Alpine will check for new mail before the
26405 30 minutes is up even though you have turned on this feature to quell
26406 those checks.
26408 Besides new-mail checks, checkpoint operations on the folders
26409 will also be quelled when you set this option.
26410 The purpose of checkpointing is to write the changes to a folder out to
26411 disk periodically in order to avoid losing those changes when system or
26412 software problems occur.
26413 New-mail checking and checkpointing while you are not composing are not
26414 affected by this option.
26417 &lt;End of help on this topic&gt;
26418 </BODY>
26419 </HTML>
26420 ====== h_config_quell_checks_comp_inbox =====
26421 <HTML>
26422 <HEAD>
26423 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
26424 </HEAD>
26425 <BODY>
26426 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
26428 This option is closely related to the
26429 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26430 option, the
26431 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26432 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
26434 If this option is set, then the normal new-mail checking that happens
26435 while you are composing will not happen for your INBOX.
26436 Checking of other folders is controlled in a similar way with the
26437 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
26439 You might want to set this option if you are experiencing delays while
26440 composing that you think might be related to the speed of the new-mail
26441 checks.
26443 Even with this option turned on, an occasional new-mail check may be done
26444 in order to keep the server from killing the connection to the folder.
26445 For example, IMAP servers may remove a connection to a folder if there
26446 has been no activity on the connection for 30 minutes or more.
26447 Instead of letting that happen, Alpine will check for new mail before the
26448 30 minutes is up even though you have turned on this feature to quell
26449 those checks.
26451 Besides new-mail checks, checkpoint operations on the INBOX
26452 will also be quelled when you set this option.
26453 The purpose of checkpointing is to write the changes to a folder out to
26454 disk periodically in order to avoid losing those changes when system or
26455 software problems occur.
26456 New-mail checking and checkpointing while you are not composing are not
26457 affected by this option.
26459 &lt;End of help on this topic&gt;
26460 </BODY>
26461 </HTML>
26462 ====== h_config_maildropcheck =====
26463 <HTML>
26464 <HEADER>
26465 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
26466 </HEADER>
26467 <BODY>
26468 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
26470 New-mail checking for a
26471 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
26472 mail checking for a regular folder.
26473 One of the differences is that the connection to the Mail Drop is not
26474 kept open and so the cost of checking
26475 (delay for you and additional load for the server) may be significant.
26476 Because of this additional cost we set a minimum time that
26477 must pass between checks.
26478 This minimum only applies to the automatic checking done by Alpine.
26479 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
26480 at the end of a folder index, then the check is done right away.
26482 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
26483 new-mail checks.
26484 You may want to set this minimum high in order to avoid experiencing some
26485 of the delays associated with the checks.
26486 Note that the time between checks is still controlled by the regular
26487 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
26488 When Alpine is about to do an automatic check for new mail (because
26489 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
26490 new-mail check
26491 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
26492 the Mail Drop is checked for new mail as well.
26493 Therefore, it is only useful to set this option to a value that is higher
26494 than the <!--#echo var="VAR_mail-check-interval"-->.
26496 If this option is set to zero, automatic Mail Drop new-mail
26497 checking is disabled.
26498 There is a minimum value, normally 60 seconds.
26499 The default value is normally 60 seconds as well.
26500 This applies to the INBOX and to the currently open folder if that is
26501 different from the INBOX.
26504 <UL>   
26505 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26506 </UL><P>
26507 &lt;End of help on this topic&gt;
26508 </BODY>
26509 </HTML>
26510 ====== h_config_nntprange =====
26511 <HTML>
26512 <HEADER>
26513 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
26514 </HEADER>
26515 <BODY>
26516 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
26518 This option applies only to newsgroups accessed using the NNTP protocol.
26519 It does not, for example,
26520 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
26523 When you open a connection to a News server using the NNTP protocol, you
26524 normally have access to all of the articles in each newsgroup.
26525 If a server keeps a large backlog of messages it may speed performance
26526 some to restrict attention to only the newer messages in a group.
26527 This option allows you to set how many article numbers should be checked
26528 when opening a newsgroup.
26529 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
26530 of messages you ever want to see.
26531 For example, if you only ever wanted to look at the last 500 messages in each
26532 newsgroup you could set this option to 500.
26533 In actuality, it isn't quite that.
26534 Instead, for performance reasons, it specifies the range of article
26535 numbers to be checked, beginning
26536 with the highest numbered article and going backwards from there.
26537 If there are messages that have been canceled or deleted
26538 their article numbers are still counted as part of the range.
26540 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
26541 numbers
26542 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
26544 to be considered when reading a newsgroup.
26545 The number of messages that show up in your index will be less than or equal
26546 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
26549 The purpose of this option is simply to speed up access when reading news.
26550 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
26551 numbers, and can avoid downloading any information about the ignored articles.
26552 There is a cost you pay for this speedup.
26553 That cost is that there is no way for you to see those ignored articles.
26554 The articles that come before the range you specify are invisible to you and
26555 to Alpine, as if they did not exist at all.
26556 There is no way to see those messages using, for example, an unexclude command
26557 or something similar.
26558 The only way to see those articles is to set this option high enough (or
26559 set it to zero) and then to reopen the newsgroup.
26562 If this option is set to 0 (which is also the default),
26563 then the range is unlimited.
26564 This option applies globally to all NNTP servers and to all newsgroups
26565 on those servers.
26566 There is no way to set different values for different newsgroups or servers.
26569 <UL>   
26570 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26571 </UL><P>
26572 &lt;End of help on this topic&gt;
26573 </BODY>
26574 </HTML>
26575 ====== h_config_news_active =====
26576 <html>
26577 <header>
26578 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
26579 </header>
26580 <body>
26581 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
26583 This option tells Alpine where to look for the "active file" for newsgroups
26584 when accessing news locally, rather than via NNTP.  The default path is
26585 usually "/usr/lib/news/active".<p>
26586 <UL>   
26587 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26588 </UL><P>
26589 &lt;End of help on this topic&gt;
26590 </body>
26591 </html>
26592 ====== h_config_news_spool =====
26593 <html>
26594 <header>
26595 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
26596 </header>
26597 <body>
26598 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
26600 This option tells Alpine where to look for the "news spool" for newsgroups
26601 when accessing news locally, rather than via NNTP.  The default path is
26602 usually "/var/spool/news".<p>
26603 <UL>   
26604 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26605 </UL><P>
26606 &lt;End of help on this topic&gt;
26607 </body>
26608 </html>
26609 ====== h_config_image_viewer =====
26610 <html>
26611 <header>
26612 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
26613 </header>
26614 <body>
26615 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
26616 <body>
26617 This option specifies the program Alpine should call to view MIME
26618 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
26619 no longer needed, but remains for backward compatibility.  The more
26620 general method for associating external printing and viewing programs with
26621 specific MIME data types is to use the system's (or your personal)
26622 "mailcap" configuration file.<p>
26623 <UL>   
26624 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26625 </UL><P>
26626 &lt;End of help on this topic&gt;
26627 </body>
26628 </html>
26629 ====== h_config_domain_name =====
26630 <HTML>
26631 <HEAD>
26632 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
26633 </HEAD>
26634 <BODY>
26635 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
26637 This option is used only if the 
26638 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
26639 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
26640 strips the hostname from your return (&quot;From&quot;) address and when 
26641 completing unqualified addresses that you enter into the composer.
26643 If you set this, see also the <A HREF="h_config_quell_local_lookup">
26644 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
26647 <!--chtml if pinemode="os_windows"-->
26648 <P>This option is not applicable to PC-Alpine.
26649 <!--chtml else-->
26651 <!--chtml endif-->
26652 <UL>
26653 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26654 </UL>
26656 &lt;End of help on this topic&gt;
26657 </BODY>
26658 </HTML>
26659 ====== h_config_prune_date =====
26660 <HTML>
26661 <HEAD>
26662 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
26663 </HEAD>
26664 <BODY>
26665 <H1>OPTION: Last-Time-Prune Question</H1>
26667 This value records the last time you were asked about deleting old
26668 sent-mail.
26669 It is set automatically by Alpine at the beginning of each month.
26670 In the past, if you wished to suppress the monthly sent-mail
26671 pruning feature, you could set this to a date in the future.
26672 This value is relative to the year 1900, so 
26673 to set this, for example, to October 2005, use 105.10.
26675 You can still do that if you wish, or you can use the
26676 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
26677 a little more convenient to use.
26679 <UL>   
26680 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26681 </UL><P>
26682 &lt;End of help on this topic&gt;
26683 </BODY>
26684 </HTML>
26685 ====== h_config_goto_default =====
26686 <HTML>
26687 <HEAD>
26688 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
26689 </HEAD>
26690 <BODY>
26691 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
26693 This value affects Alpine's behavior when you use the Goto command.
26694 Alpine's usual behavior has two parts.  If your current folder is
26695 &quot;Inbox&quot;, Alpine will offer the last open folder as the
26696 default.  If the current folder is other than &quot;Inbox&quot;,
26697 &quot;Inbox&quot; is offered as the default.
26700 The available options include:
26702 <DL>
26704  <DT>folder-in-first-collection</DT>
26706  <DD> Alpine will offer the most recently visited folder in the default
26707 collection found in the &quot;Collection List&quot; screen as the default.
26708 </DD>
26710  <DT> inbox-or-folder-in-first-collection</DT>
26712  <DD> If the current folder is &quot;Inbox&quot;,
26713 Alpine will offer the most recently visited folder in the
26714 default collection found in the &quot;Collection List&quot; screen.
26715 If the current folder is other than &quot;Inbox&quot;,
26716 &quot;Inbox&quot; is offered as the default.
26717 </DD>
26719  <DT> inbox-or-folder-in-recent-collection</DT>
26721  <DD> This is Alpine's default behavior.
26722 If the current folder is &quot;Inbox&quot;,
26723 Alpine will offer the last open
26724 folder as the default.
26725 If the current folder is other than &quot;Inbox&quot;,
26726 &quot;Inbox&quot; is offered as the default.
26727 </DD>
26729  <DT> first-collection-with-inbox-default</DT>
26731  <DD> Instead of offering the most recently visited folder in the default
26732 collection, the default collection is offered but with &quot;Inbox&quot; as
26733 the default folder.
26734 If you type in a folder name it will be in the default collection.
26735 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
26736 </DD>
26738  <DT> most-recent-folder</DT>
26740  <DD> The last accepted value simply causes the most recently opened
26741 folder to be offered as the default regardless of the currently opened
26742 folder.
26743 </DD>
26744 </DL>
26747 NOTE: The default while a newsgroup is open remains the same; the last
26748 open newsgroup.
26751 <UL>   
26752 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26753 </UL><P>
26754 &lt;End of help on this topic&gt;
26755 </BODY>
26756 </HTML>
26757 ====== h_config_thread_lastreply_char =====
26758 <HTML>
26759 <HEAD>
26760 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
26761 </HEAD>
26762 <BODY>
26763 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
26765 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
26766 INDEX display when using a
26767 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
26768 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
26769 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
26770 The value of this option is a single character.
26771 This character is used instead of the vertical line character when there are
26772 no more replies directly to the parent of the current message.
26773 It can be used to &quot;round-off&quot; the bottom of the vertical line
26774 by setting it to a character such as a backslash (&#92;) or
26775 a backquote (&#96;).
26776 The default value of this option is the backslash character (&#92;).
26777 This option may not be set to the Empty Value.
26778 In that case, the default will be used instead.
26781 <UL>   
26782 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26783 </UL><P>
26784 &lt;End of help on this topic&gt;
26785 </BODY>
26786 </HTML>
26787 ====== h_config_thread_indicator_char =====
26788 <HTML>
26789 <HEAD>
26790 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
26791 </HEAD>
26792 <BODY>
26793 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
26795 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
26796 INDEX display when using a
26797 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26798 than &quot;none&quot; and sorting by Threads or OrderedSubject.
26799 The value of this option is a single character.
26800 This character is used to indicate that part of a thread (a conversation) is
26801 hidden beneath a message.
26802 The message could be expanded
26803 if desired with the &quot;/&quot; Collapse/Expand command.
26804 By default, the value of this option is the greater than sign (&gt;).
26806 If this option is set to the Empty Value, then the column (and the following
26807 blank column) will be deleted from the display.
26810 This option is closely related to the
26811 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
26812 Another similar option that affects the thread display is the
26813 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26816 <UL>   
26817 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26818 </UL><P>
26819 &lt;End of help on this topic&gt;
26820 </BODY>
26821 </HTML>
26822 ====== h_config_thread_exp_char =====
26823 <HTML>
26824 <HEAD>
26825 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
26826 </HEAD>
26827 <BODY>
26828 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
26830 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
26831 INDEX display when using a
26832 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26833 than &quot;none&quot;.
26834 The value of this option is a single character.
26835 This character is used to indicate that part of a thread has been expanded
26836 and could be collapsed if desired with
26837 the &quot;/&quot; Collapse/Expand command.
26838 By default, the value of this option is a dot (.).
26840 If this option is set to the Empty Value, then the column (and the following
26841 blank column) will be deleted from the display.
26844 This option is closely related to the
26845 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
26846 Another similar option that affects the thread display is the
26847 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26850 <UL>   
26851 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26852 </UL><P>
26853 &lt;End of help on this topic&gt;
26854 </BODY>
26855 </HTML>
26856 ====== h_config_thread_index_style =====
26857 <HTML>
26858 <HEAD>
26859 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
26860 </HEAD>
26861 <BODY>
26862 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
26864 When a folder is sorted by Threads or OrderedSubject,
26865 this option will affect the INDEX displays.
26868 The possible values for this option are:
26870 <DL>
26871 <DT>regular-index-with-expanded-threads</DT>
26872 <DD>This is the default display.
26873 If the configuration option
26874 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26875 is set to something other than &quot;none&quot;, then this setting
26876 will cause Alpine to start off with a MESSAGE INDEX with all of
26877 the threads expanded.
26878 That is, each message will have a line in the MESSAGE INDEX display.
26879 The Collapse/Expand command (/) may be used to manually collapse or
26880 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26882 This setting affects the display when the folder is first threaded.
26883 The collapsed state may also be re-initialized by re-sorting the folder manually
26884 using the SortIndex command ($).
26885 After re-sorting the threads will once again all be expanded, even if you
26886 have previously collapsed some of them.
26888 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
26889 the display will be the regular default Alpine MESSAGE INDEX, but sorted
26890 in a different order.
26891 </DD>
26893 <DT>regular-index-with-collapsed-threads</DT>
26894 <DD>If the configuration option
26895 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
26896 is set to something other than &quot;none&quot;, then this setting
26897 will cause Alpine to start out with all of the threads collapsed instead of
26898 starting out with all of the threads expanded.
26899 The Collapse/Expand command (/) may be used to manually collapse or
26900 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
26902 This setting affects the display when the folder is first threaded.
26903 The collapsed state may also be re-initialized by re-sorting the folder manually
26904 using the SortIndex command ($).
26905 After re-sorting the threads will once again all be collapsed, even if you
26906 have previously expanded some of them.
26907 </DD>
26909 <DT>separate-index-screen-always</DT>
26910 <DD>With this setting and the next, you will see an index of threads
26911 instead of an
26912 index of messages, provided you have sorted by Threads or OrderedSubject.
26914 The THREAD INDEX contains a '*' in the first column if any message in the thread
26915 is marked Important.
26916 If not, it contains a '+' if any message in the thread is to you.
26917 The second column is blank. The third column contains a 'D' if all of the
26918 messages in the thread are deleted.
26919 Otherwise, it contains an 'N' if any of the messages in the thread are New.
26921 When you view a particular thread from the THREAD INDEX you will be
26922 in the MESSAGE INDEX display
26923 but the index will only contain messages from the thread you are viewing.
26924 </DD>
26926 <DT>separate-index-screen-except-for-single-messages</DT>
26927 <DD>This is very similar to the option above.
26928 When you are in the THREAD INDEX, one of the available commands
26929 is &quot;ViewThd&quot;.
26930 With the setting &quot;separate-index-screen-always&quot; (the option above)
26931 when you view a particular thread you will be in the
26932 MESSAGE INDEX display and the index will only contain messages from
26933 the thread you are viewing.
26934 If the thread you are viewing consists of a single message, the MESSAGE INDEX
26935 will be an index with only one message in it.
26936 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
26937 setting instead, then that index that contains a single message
26938 will be skipped and you will go directly from the THREAD INDEX into the
26939 MESSAGE TEXT screen.
26940 </DD>
26942 </DL>
26945 <UL>   
26946 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26947 </UL><P>
26948 &lt;End of help on this topic&gt;
26949 </BODY>
26950 </HTML>
26951 ====== h_config_thread_disp_style =====
26952 <HTML>
26953 <HEAD>
26954 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
26955 </HEAD>
26956 <BODY>
26957 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
26959 When a folder is sorted by Threads or OrderedSubject,
26960 this option will affect the MESSAGE INDEX display.
26961 By default, Alpine will display the MESSAGE INDEX in the
26962 &quot;show-thread-structure&quot; style if a folder is sorted
26963 by Threads or OrderedSubject.
26966 The possible values for this option are:
26968 <DL>
26969 <DT>none</DT>
26970 <DD>Regular index display.
26971 The same index line as would be displayed without threading is used.
26972 The only difference will be in the order of the messages.
26973 </DD>
26975 <DT>show-thread-structure</DT>
26976 <DD>Threaded Subjects will be indented and vertical bars and horizontal
26977 lines will be added to make it easier to see the relationships among
26978 the messages in a thread (a conversation).
26979 </DD>
26981 <DT>mutt-like</DT>
26982 <DD>This is the same as the option above except that the Subject
26983 is suppressed (is blank) if it matches the previous Subject in the thread.
26984 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
26985 Here is an example of what a mutt-like index might look like.
26986 In this example, the first column represents the message number, the
26987 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
26988 is set to &quot;regular-index-with-expanded-threads&quot;, and the
26989 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
26990 is set to a backslash:
26991 <PRE>
26992 &nbsp;&nbsp;&nbsp;1    Some topic
26993 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
26994 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
26995 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
26996 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
26997 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
26998 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
26999 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
27000 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
27001 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
27002 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
27003 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
27004 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
27005 &nbsp;&nbsp;&nbsp;14    Next topic
27006 </PRE>
27007 </DD>
27009 <DT>indent-subject-1</DT>
27010 <DD>Threaded Subjects will be indented one space per level of the conversation.
27011 The bars and lines that show up in the show-thread-structure display will
27012 not be there with this style.
27013 </DD>
27015 <DT>indent-subject-2</DT>
27016 <DD>Same as above but indent two spaces per level instead of one space.
27017 </DD>
27019 <DT>indent-from-1</DT>
27020 <DD>Similar to indent-subject-1, except that instead of indenting the
27021 Subject field one space the From field of a thread will be indented one
27022 space per level of the conversation.
27023 </DD>
27025 <DT>indent-from-2</DT>
27026 <DD>Same as above but indent two spaces per level instead of one space.
27027 </DD>
27029 <DT>show-structure-in-from</DT>
27030 <DD>The structure of the thread is illustrated with indenting, vertical bars,
27031 and horizontal lines just like with the show-thread-structure option, but
27032 the From field is used to show the relationships instead of the Subject field. 
27033 </DD>
27035 </DL>
27038 <UL>   
27039 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27040 </UL><P>
27041 &lt;End of help on this topic&gt;
27042 </BODY>
27043 </HTML>
27044 ====== h_config_pruning_rule =====
27045 <HTML>
27046 <HEAD>
27047 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
27048 </HEAD>
27049 <BODY>
27050 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
27052 By default, Alpine will ask at the beginning of each month whether or not
27053 you want to rename your sent-mail folder to a name like sent-mail-month-year.
27054 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
27055 change the format of the folder to sent-mail-yyyy-mm.)
27056 It will also ask whether you would like to delete old sent-mail folders.
27057 If you have defined
27058 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
27060 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
27061 Alpine will also ask about pruning those folders.
27064 With this option you may provide an automatic answer to these questions.
27065 The default value is to ask you what you'd like to do.
27068 The six possible values for this option are:
27070 <DL>
27071 <DT>ask about rename, ask about deleting</DT>
27072 <DD>This is the default.
27073 Alpine will ask whether you want to rename the folders and whether you
27074 want to delete each of the old folders.
27075 </DD>
27077 <DT>ask about rename, don't delete</DT>
27078 <DD>Alpine will ask whether you want to rename the folders, but won't
27079 ask about or delete old folders.
27080 </DD>
27082 <DT>always rename, ask about deleting</DT>
27083 <DD>This means you want to always answer yes and have Alpine automatically
27084 rename the folder if possible.
27085 You will also be asked about deleting old folders.
27086 </DD>
27088 <DT>always rename, don't delete</DT>
27089 <DD>This means you want to always answer yes and have Alpine automatically
27090 rename the folder if possible.
27091 There will be no deleting of old folders.
27092 </DD>
27094 <DT>don't rename, ask about deleting</DT>
27095 <DD>This means you want to always answer no.
27096 Alpine will not rename the folder.
27097 You will be asked about deleting old folders.
27098 </DD>
27100 <DT>don't rename, don't delete</DT>
27101 <DD>This means you want to always answer no.
27102 Alpine will not rename the folder.
27103 There will be no deleting of old folders, either.
27104 </DD>
27105 </DL>
27108 <UL>   
27109 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27110 </UL><P>
27111 &lt;End of help on this topic&gt;
27112 </BODY>
27113 </HTML>
27114 ====== h_config_reopen_rule =====
27115 <HTML>
27116 <HEAD>
27117 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
27118 </HEAD>
27119 <BODY>
27120 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
27122 Alpine normally checks for new mail in the currently open folder
27123 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
27126 There are some situations where automatic new-mail checking does not work.
27127 For example, if a mail folder is opened using the POP protocol or a newsgroup
27128 is being read using the NNTP protocol, then new-mail checking is disabled.
27131 It may be possible to check for new mail in these cases by reopening the
27132 folder.
27133 Alpine does not do this for you automatically, but you may do the commands
27134 manually to cause this to happen.
27135 You reopen by going back to the folder list screen from the message
27136 index screen with the &quot;&lt;&quot; command,
27137 and then going back into the message index screen with
27138 the &quot;&gt;&quot; command.
27139 (Actually, any method you would normally use to open a folder will work the
27140 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
27141 For example, the GoTo Folder command will work, or you may use L to go to the
27142 Folder List screen and Carriage Return to reopen the folder.)
27145 There are some cases where Alpine knows that reopening the folder should
27146 be useful as a way to discover new mail.
27147 At the time of this writing, connections made using the POP protocol,
27148 news reading using the NNTP protocol, local news reading, and local
27149 ReadOnly folders that are in the traditional UNIX or the MMDF format all
27150 fall into this category.
27151 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
27152 has no way of knowing, so it might also just be an exercise in futility.
27153 All remote, ReadOnly folders other than those listed just above fall into this
27154 category.
27155 The setting of this option together with the type of folder
27156 controls how Alpine will react to the apparent attempt to reopen a folder.
27159 If you don't reopen, then you will just be back in
27160 the message index with no change.
27161 You left the index and came back, but the folder remained &quot;open&quot;
27162 the whole time.
27163 However, if you do reopen the folder, the folder is closed and then reopened.
27164 In this case, the current state of the open folder is lost.
27165 The New status, Important and Answered flags,
27166 selected state, Zoom state, collapsed or expanded state of threads,
27167 current message number,
27168 and any other temporary state is all lost when the reopen happens.
27169 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
27172 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
27173 several places.
27174 That really implies the case where Alpine knows it is a good way to discover
27175 new mail, which is more than just POP and NNTP, but POP and NNTP are
27176 the cases of most interest.
27177 This option probably has more possible values than it deserves. They are:
27179 <DL>
27180 <DT>Always reopen</DT>
27181 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
27182 whenever you type a command that implies a reopen, regardless of the
27183 access method.
27184 In other words, it is assumed you would always answer Yes if asked
27185 about reopening.
27186 </DD>
27188 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
27189 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27190 will ask you whether to reopen other remote folders,
27191 with a default answer of Yes.
27192 </DD>
27194 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
27195 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27196 will ask you whether to reopen other remote folders,
27197 with a default answer of No.
27198 </DD>
27200 <DT>Yes for POP/NNTP, No for other remote</DT>
27201 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
27202 will assume a No answer for all other remote folders.
27203 </DD>
27205 <DT>Always ask [Yes]</DT>
27206 <DD>Alpine will not differentiate based on access method.
27207 It will always ask for all remote folders, with a default answer of Yes.
27208 </DD>
27210 <DT>Always ask [No]</DT>
27211 <DD>Alpine will not differentiate based on access method.
27212 It will always ask for all remote folders, with a default answer of No.
27213 </DD>
27215 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
27216 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
27217 of Yes.
27218 It will never attempt to reopen other remote folders.
27219 </DD>
27221 <DT>Ask about POP/NNTP [No], No for other remote</DT>
27222 <DD>This is the default.
27223 Alpine will ask if the access method is POP or NNTP, with a default answer
27224 of No.
27225 It will never attempt to reopen other remote folders.
27226 </DD>
27228 <DT>Never reopen</DT>
27229 <DD>Alpine will never attempt to reopen already open folders.
27230 </DD>
27231 </DL>
27234 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
27235 any of the other situations where it is likely that reopening is a good way
27236 to discover new mail.
27239 There is an alternative that may be of useful in some situations.
27240 Instead of manually checking for new mail you can set up a
27241 <A HREF="h_maildrop">Mail Drop</A>
27242 and automatically check for new mail.
27245 <UL>   
27246 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27247 </UL><P>
27248 &lt;End of help on this topic&gt;
27249 </BODY>
27250 </HTML>
27251 ====== h_config_inc_startup =====
27252 <HTML>
27253 <HEAD>
27254 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
27255 </HEAD>
27256 <BODY>
27257 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
27259 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
27260 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
27261 It determines which message will be the <EM>current message</EM> when
27262 the folder is first opened.
27263 The default value is &quot;first-unseen&quot;.
27266 The seven possible values for this option are:
27268 <DL>
27269 <DT>first-unseen</DT>
27270 <DD>The current message is set to the first
27271 unseen message that has not been marked deleted, or the last message if
27272 all of the messages have been seen previously.
27273 Messages which have not been seen or which have been seen but re-marked
27274 as New are considered unseen messages.
27275 See the note at the bottom of this help about newsgroups.
27276 </DD>
27278 <DT>first-recent</DT>
27279 <DD>Similar to the default, but rather than starting on the first
27280 unseen message Alpine starts on the first <EM>recent</EM> message.
27281 A message is recent if it arrived since the last time the folder was
27282 open.  This value causes the current message to be set to the first
27283 recent message if there is one, otherwise to the last
27284 message in the folder.
27285 </DD>
27287 <DT>first-important</DT>
27288 <DD>This will result in the current message being set to the first
27289 message marked Important (but not Deleted).
27290 If no messages are marked Important, then it will be the last message.
27291 Messages are marked Important by <EM>you</EM>, not by the sender, using
27293 <A HREF="h_common_flag">Flag command</A>.
27294 Or they may be marked Important by an Alpine
27295 <A HREF="h_mainhelp_filtering">Filter</A>
27296 that you have set up.
27297 </DD>
27299 <DT>first-important-or-unseen</DT>
27300 <DD>This selects the first of the first unseen and the first important
27301 messages.
27302 </DD>
27304 <DT>first-important-or-recent</DT>
27305 <DD>This selects the first of the first recent and the first important
27306 messages.
27307 </DD>
27309 <DT>first</DT>
27310 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
27311 If all messages are deleted you start on the last message.
27312 </DD>
27314 <DT>last</DT>
27315 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
27316 If all messages are deleted you start on the last message.
27317 </DD>
27318 </DL>
27321 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
27322 &quot;first-recent&quot; are the same and are affected by whether or not the
27323 feature 
27324 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
27325 is turned on. 
27326 Also, there is no permanent storage in news for an Important flag.
27327 This means that no messages will be marked Important when a newsgroup is
27328 first opened.
27331 <UL>   
27332 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27333 </UL><P>
27334 &lt;End of help on this topic&gt;
27335 </BODY>
27336 </HTML>
27337 ====== h_config_browser =====
27338 <HTML>
27339 <HEAD>
27340 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
27341 </HEAD>
27342 <BODY>
27343 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
27344 <!--chtml if pinemode="os_windows"-->
27345 PC-Alpine users do not need to enter anything here, unless:<UL>
27346 <LI> they want to override, for use with Alpine, the application defined
27347 in the Windows operating system for handling URLs; or
27348 <LI> they are (planning on) using the same configuration file with 
27349 Unix Alpine.
27350 </UL>
27352 Note that if using a viewer that has a space in its path, you should
27353 use the DOS name for that directory or file. Example:
27354 <PRE>
27355 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
27356 </PRE>
27357 <HR><P>
27358 <!--chtml endif-->
27359 This option affects Alpine's handling of URLs that are found in 
27360 messages you read.  Normally, only URLs Alpine can handle directly
27361 are automatically offered for selection in the &quot;Message
27362 Text&quot; screen.  When one or more applications
27363 capable of deciphering URLs on their command line are added here, Alpine
27364 will choose the first available to display URLs it cannot handle directly.
27365 A viewer's availability is based on its being specified with a <B>full
27366 directory path</B> and the evaluation of any optionally supplied
27367 parameters described below.
27370 Additionally, to support various connection methods and applications, each
27371 entry in this list can optionally begin with one or more of
27372 the following special tokens.  The allowed tokens include:
27375 <DL>
27376 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
27377 <DD>
27378 The <VAR>test-string</VAR> is a shell command that Alpine will run to
27379 evaluate a viewer's availability.  The command specified by the test
27380 string is run and if its resulting exit status is non-zero, Alpine will
27381 not consider the associated viewer for use.
27382 </DD>
27384 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
27385 <DD>
27386 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
27387 URL schemes that are to be used with the associated viewer.  This is
27388 the way to configure Alpine to recognize URLs other than the built-in set.
27390 It can also be used to override Alpine's built-in handlers.
27391 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
27392 and Alpine would use (provided it passed all other criteria) the associated
27393 viewer when it encounterd a URL of the form &quot;news:comp.mail.pine&quot;.
27395 </DD>
27396 </DL>
27399 By default, Alpine will simply append a space character followed by the
27400 selected URL prior to launching the command in your specified SHELL.  You can
27401 optionally specify where in the command the selected URL should appear
27402 by using the &quot;_URL_&quot; token.  All occurrences found in the command
27403 will be replaced with the selected URL before the command is handed
27404 to the shell.  If such replacement occurs, the default appending of the
27405 selected URL does not take place.
27408 NOTE: If the viewer you specify has any command-line arguments,
27409 including the &quot;_URL_&quot; token, you will need to add a
27410 double-quote character before the command path and after the last
27411 argument (see the &quot;lynx&quot; example below).
27414 So, here are some example entries:
27415 <PRE>
27416 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
27417               &quot;/usr/local/bin/lynx _URL_&quot;
27418               C:&#92;BIN&#92;NETSCAPE.BAT
27419 </PRE>
27421 This example shows that for the first viewer in the list to be used
27422 the environment variable &quot;DISPLAY&quot; must be defined.  If it
27423 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
27424 If neither condition is met,
27425 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
27426 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
27427 If the path to &quot;lynx&quot; is invalid,
27428 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
27429 Note that the last
27430 entry is a DOS/Windows path.  This is one way to support Alpine running
27431 on more than one architecture with the same configuration file.<P>
27433 <!--chtml if pinemode="os_windows"-->
27434 <!--chtml else-->
27435 Note that depending on the type of browser used and the method of 
27436 its invocation (such as whether it will open in a separate window) from
27437 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
27438 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
27439 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
27440 In other words, launching the browser from Alpine may make Alpine 
27441 &quot;disappear&quot; (although it is still &quot;running&quot;)
27442 until you close the browser again.<P>  
27443 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27444 environment: for advanced users and  systems administrators</A>
27445 </UL>
27446 <!--chtml endif-->
27447 <P>If you are unsure what browsers are available on your system or how to 
27448 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
27449 local computing support staff.
27450 <P><UL>
27451 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27452 </UL>
27454 &lt;End of help on this topic&gt;
27455 </BODY>
27456 </HTML>
27457 ====== h_config_history =====
27458 <HTML>
27459 <HEAD>
27460 <TITLE>OPTION: <!--#echo var="VAR_default-directories"--></TITLE>
27461 </HEAD>
27462 <BODY>
27463 <H1>OPTION: <!--#echo var="VAR_default-directories"--></H1>
27465 This option allows you to input a list of directories that Alpine will offer 
27466 for you to use when you are saving or exporting attachments. This is useful
27467 when navigating to specific directories becomes too tedious, or when you 
27468 need to do this on a daily basis, and want Alpine to remember this on a 
27469 permanent basis.
27471 The list of directories saved here can be accessed using the ^Y and ^V commands
27472 in the save prompt for attachments, or the export command.
27474 <P><UL>
27475 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27476 </UL>
27478 &lt;End of help on this topic&gt;
27479 </BODY>
27480 </HTML>
27481 ====== h_config_browser_xterm =====
27482 <HTML>
27483 <HEAD>
27484 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
27485 </HEAD>
27486 <BODY>
27487 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27488 environment: for advanced users and  systems administrators</H1>
27489 If you are using Alpine with an X-terminal (emulator) and want to define an 
27490 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
27491 you may want to do so in a manner that causes any <B>already</B> 
27492 invoked viewer application to be used for viewing URLs you select from Alpine 
27493 messages, and a <B>new</B> URL-viewer process to be 
27494 started <B>only</B> if the same application has <B>not already</B> 
27495 been launched -- for one reason, to avoid file-locking contentions among 
27496 multiple invocations of the same URL-viewer application.  
27497 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
27498 option does not do this.)  A method of doing that would be:<OL>
27499 <LI> use 
27500 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
27501 check (using commands appropriate for your Unix shell
27502 in place of <VAR>test-string</VAR>) for the presence of a 
27503 lockfile created by the URL-viewer application -- which implies that the 
27504 application is already running, though this is not foolproof. 
27505 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
27506 application with its appropriate command line option(s) to 
27507 show the URL selected from the Alpine message in an already open window of 
27508 that application, or perhaps in a new window of that application.  
27510 <LI> In the 
27511 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
27512 application without those command line options, but this time using the 
27513 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
27514 is defined.
27515 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
27516 windows environment (for instance, using VT-100 terminal emulation), you 
27517 may wish to specify a non-X windows URL-viewer application such as Lynx
27518 as the last entry.
27519 </OL><BR>
27520 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
27521 the command shell, the URL-viewer application(s), and possibly the specific 
27522 version of the latter, you are using.  
27524 Relevant command 
27525 line options for the Netscape browser for showing URLs (selected from Alpine) 
27526 when Netscape is already running are discussed in the document
27527 &quot;Remote Control of UNIX Netscape&quot; 
27528 found at the URL (as of 12 Aug. 1998):
27531 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
27533 <P>(If the URL-viewer application is 
27534 <B>not</B> running on the same host as Alpine, but being launched from an 
27535 applications server, you may not be able to use the command line options for 
27536 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
27538 <!--chtml if this-method="shown-to-work"-->
27539 An example using the Korn shell and the Netscape browser (first entry wrapped 
27540 because of its length, but should all appear on one line):
27542 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
27544 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
27545               &quot;/usr/local/bin/lynx '_URL_'&quot;
27547 <!--chtml endif-->
27549 <UL>   
27550 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27551 </UL><P>
27552 &lt;End of help on this topic&gt;
27553 </BODY>
27554 </HTML>
27555 ====== h_config_enable_full_hdr =====
27556 <HTML>
27557 <HEAD>
27558 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
27559 </HEAD>
27560 <BODY>
27561 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
27563 This feature enables the &quot;H Full Headers&quot; command which toggles between
27564 the display of all headers in the message and the normal edited view of
27565 headers.  The Full Header command also controls which headers are included
27566 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
27567 Full Header mode will respect the
27568 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
27569 feature setting.)
27571 If Full Header mode is turned on and you Forward a message, you will
27572 be asked if you'd like to forward the message as an attachment, as opposed
27573 to including the text of the message in the body of your new message.
27575 If you have also turned on the
27576 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
27577 option then the Full Headers command actually rotates through three states
27578 instead of just two.
27579 The first is the normal view with long quotes suppressed.
27580 The second is the normal view but with the long quotes included.
27581 The last enables the display of all headers in the message.
27582 When using Export, Pipe, Print, Forward, or Reply the quotes are
27583 never suppressed, so the first two states are identical.
27585 Normally, the Header Mode will reset
27586 to the default behavior when moving to a new message.
27587 The mode can be made to persist from message to message by setting the feature
27588 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
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_and_text =====
27597 <HTML>
27598 <HEAD>
27599 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
27600 </HEAD>
27601 <BODY>
27602 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
27604 This feature affects how the &quot;H Full Headers&quot; command displays
27605 message text.  If set, the raw message text will be displayed.  This
27606 especially affects MIME formatted email, where the entire MIME format
27607 will be displayed.  This feature similarly affects how messages are
27608 included for the Export, Pipe, Print, Forward, and Reply functions.
27610 When viewing a raw message that has attachments with this feature set,
27611 you will not be able to view attachments without first leaving full 
27612 headers mode.  This is because MIME parsing is not done on the raw message.
27614 <UL>   
27615 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27616 </UL><P>
27617 &lt;End of help on this topic&gt;
27618 </BODY>
27619 </HTML>
27620 ====== h_config_enable_pipe =====
27621 <HTML>
27622 <HEAD>
27623 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
27624 </HEAD>
27625 <BODY>
27626 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
27628 This feature enables the "| Pipe" command that sends the current message
27629 to the specified command for external processing.
27632 A short description of how the pipe command works is given
27633 <A HREF="h_pipe_command">here</A>.
27636 <UL>   
27637 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27638 </UL><P>
27639 &lt;End of help on this topic&gt;
27640 </BODY>
27641 </HTML>
27642 ====== h_config_quell_full_hdr_reset =====
27643 <HTML>
27644 <HEAD>
27645 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
27646 </HEAD>
27647 <BODY>
27648 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
27650 The <A HREF="h_common_hdrmode">HdrMode Command</A>
27651 normally resets to the default state when switching to a new message.
27652 For example, if you've used the &quot;H&quot; command to turn on Full
27653 Headers for a message you are viewing, and then you type the Next command
27654 to look at the next message, the full headers will no longer be shown.
27655 Setting this feature disables that reset.
27656 Instead, the Header Mode remains the same from message to message.
27659 The presence or absence of the HdrMode command is determined by the
27660 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
27661 Feature-List option.
27663 <UL>   
27664 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27665 </UL><P>
27666 &lt;End of help on this topic&gt;
27667 </BODY>
27668 </HTML>
27669 ====== h_config_enable_tab_complete =====
27670 <HTML>
27671 <HEAD>
27672 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
27673 </HEAD>
27674 <BODY>
27675 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
27677 This feature enables the TAB key when at a prompt for a filename. In this
27678 case, TAB will cause the partial name already entered to be automatically
27679 completed, provided the partial name is unambiguous.
27680 This feature is on by default.
27682 Similarly, this feature also enables TAB completion of address book
27683 nicknames when at a prompt for a nickname,
27684 or when typing in an address field in the composer.
27686 &lt;End of help on this topic&gt;
27687 </BODY>
27688 </HTML>
27689 ====== h_config_quit_wo_confirm =====
27690 <HTML>
27691 <HEAD>
27692 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
27693 </HEAD>
27694 <BODY>
27695 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
27697 This feature controls whether or not Alpine will ask for confirmation when a
27698 Quit command is received.
27700 &lt;End of help on this topic&gt;
27701 </BODY>
27702 </HTML>
27703 ====== h_config_quote_replace_noflow =====
27704 <HTML>
27705 <HEAD>
27706 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
27707 </HEAD>
27708 <BODY>
27709 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
27711 This feature, which is only active when
27712 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
27713 also set,
27714 enables quote-replacement on non-flowed messages.  It is off
27715 by default because a non-flowed message is more dependent on its format,
27716 and thus quote-replacement may cause less-than-pleasing results.
27717 Setting this feature will cause quote-replacement similar to that of flowed
27718 messages, but with the added possibility of long lines being wrapped
27719 into new lines if the Quote-Replacement-String is longer than the string
27720 it is replacing, which is &quot;&gt;&nbsp;&quot;.
27722 &lt;End of help on this topic&gt;
27723 </BODY>
27724 </HTML>
27725 ====== h_config_enable_jump =====
27726 <HTML>
27727 <HEAD>
27728 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
27729 </HEAD>
27730 <BODY>
27731 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
27733 When this feature is set you may enter a number (followed by RETURN)
27734 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
27735 screens.  In other words, it obviates the need for typing the "J" for the
27736 Jump command.
27738 &lt;End of help on this topic&gt;
27739 </BODY>
27740 </HTML>
27741 ====== h_config_enable_alt_ed =====
27742 <HTML>
27743 <HEAD>
27744 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
27745 </HEAD>
27746 <BODY>
27747 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
27749 If this feature is set (the default), and the 
27750 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27751 <B>is not</B> set, entering
27752 the ^_ (Ctrl-underscore) key while composing a message will prompt you
27753 for the name of the editor you would like to use.
27755 If the environment variable $EDITOR is set, its value will be offered as
27756 a default.
27758 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27759 <B>is</B> set, the ^_ key will activate the specified
27760 editor without prompting, in which case it is not necessary to
27761 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
27763 <UL>   
27764 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27765 </UL><P>
27766 &lt;End of help on this topic&gt;
27767 </BODY>
27768 </HTML>
27769 ====== h_config_alt_ed_now =====
27770 <HTML>
27771 <HEAD>
27772 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
27773 </HEAD>
27774 <BODY>
27775 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
27777 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
27778 variable are both set, Alpine will
27779 automatically activate the specified editor when the cursor is moved from
27780 the header of the message being composed into the message text.  For
27781 replies, the alternate editor will be activated immediately.  If this
27782 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
27783 automatically ask for the name of an alternate editor when the cursor
27784 is moved out of the header being composed, or if a reply is being done.
27786 <P><UL>
27787 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27788 </UL>
27790 &lt;End of help on this topic&gt;
27791 </BODY>
27792 </HTML>
27793 ====== h_config_enable_bounce =====
27794 <HTML>
27795 <HEAD>
27796 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
27797 </HEAD>
27798 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
27799 <BODY>
27801 Setting this feature enables the "B Bounce" command, which will prompt
27802 for an address and *remail* the message to the new recipient.  This command
27803 is used to re-direct messages that you have received in error, or need to
27804 be redirected for some other reason (e.g. list moderation).  The final
27805 recipient will see a header indicating that you have Resent the msg, but
27806 the message's From: header will show the original author of the message,
27807 and replies to it will go back to that author, and not to you.
27809 &lt;End of help on this topic&gt;
27810 </BODY>
27811 </HTML>
27812 ====== h_config_enable_agg_ops =====
27813 <HTML>
27814 <HEAD>
27815 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
27816 </HEAD>
27817 <BODY>
27818 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
27820 When this feature is set you may use the commands and subcommands that relate to
27821 performing operations on more than one message at a time.  We call these
27822 &quot;aggregate operations&quot;.  In particular, the 
27823 <!--chtml if pinemode="function_key"-->&quot;F5
27824 <!--chtml else-->&quot;;
27825 <!--chtml endif--> Select&quot;, 
27827 <!--chtml if pinemode="function_key"-->
27828 &quot;F6
27829 <!--chtml else-->
27830 &quot;A 
27831 <!--chtml endif-->
27832 Apply&quot;, and 
27833 <!--chtml if pinemode="function_key"-->
27834 &quot;F4
27835 <!--chtml else-->
27836 &quot;Z 
27837 <!--chtml endif-->
27838 Zoom&quot; commands are enabled by this feature.  Select is used to
27839 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
27840 then be used to apply any message command to all of the selected/tagged
27841 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
27842 view between just those Selected and all messages in the folder.
27844 This feature also enables the 
27845 <!--chtml if pinemode="function_key"-->
27846 &quot;F7&quot; 
27847 <!--chtml else-->
27848 &quot;^X&quot; 
27849 <!--chtml endif-->
27851 subcommand in the MESSAGE INDEX 
27852 WhereIs command that causes all messages matching the WhereIs argument to 
27853 become selected; and the Select, Select Current, and ZoomMode commands in the
27854 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
27856 Some related help topics are
27857 <UL>
27858 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
27859 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
27860 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
27861 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
27862 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
27863 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
27864 </UL>
27866 <UL>   
27867 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27868 </UL><P>
27869 &lt;End of help on this topic&gt;
27870 </BODY>
27871 </HTML>
27873 ====== h_config_enable_flag =====
27874 <HTML>
27875 <HEAD>
27876 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
27877 </HEAD>
27878 <BODY>
27879 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
27881 Setting this feature enables the
27882 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
27883 command that allows you to
27884 manipulate the status flags associated with a message.  By default, Flag
27885 will set the "Important" flag, which results in an asterisk being
27886 displayed in column one of the MESSAGE INDEX for such messages.
27888 &lt;End of help on this topic&gt;
27889 </BODY>
27890 </HTML>
27891 ====== h_config_flag_screen_default =====
27892 <HTML>
27893 <HEAD>
27894 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
27895 </HEAD>
27896 <BODY>
27897 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
27899 The feature modifies the behavior of the
27900 <a href="h_common_flag">Flag</a>
27901 command (provided it too is
27902 <A HREF="h_config_enable_flag">enabled</A>).
27903 By default, when the "* Flag" command is selected,
27904 Alpine offers a prompt to set one of several flags and also offers the
27905 option of entering the detailed flag manipulation screen via the "^T"
27906 key. Enabling this feature causes Alpine to immediately enter the detailed
27907 flag screen rather than first offer the simple prompt.
27909 <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.
27911 &lt;End of help on this topic&gt;
27912 </BODY>
27913 </HTML>
27914 ====== h_config_flag_screen_kw_shortcut =====
27915 <HTML>
27916 <HEAD>
27917 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
27918 </HEAD>
27919 <BODY>
27920 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
27922 This feature modifies the behavior of the
27923 <a href="h_common_flag">Flag</a> command
27924 and the <A HREF="h_index_cmd_select">Select</A> command.
27925 This feature is set by default.
27926 When this feature is not set, when the "* Flag" command is selected,
27927 Alpine offers a prompt to set one of several flags and also offers the
27928 option of entering the detailed flag manipulation screen via the "^T"
27929 key.
27930 If you have
27931 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
27932 defined, then enabling this feature adds a shortcut way to set or unset
27933 keywords.
27934 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
27935 a keyword if you've given it a nickname) and that will set the keyword.
27937 An example is easier to understand than the explanation.
27938 The flag command can always be used to set the system flags.
27939 For example, to set the Answered flag you would type
27941 <CENTER><SAMP>* A</SAMP></CENTER>
27943 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
27944 option in the Config screen.
27945 By default, to set a keyword like &quot;Work&quot; you would usually
27946 have to go to the Flag Details screen using
27947 the &quot;^T To Flag Details&quot; command.
27948 Instead, if you have enabled this feature, you may type
27950 <CENTER><SAMP>* W</SAMP></CENTER>
27952 to set the Work flag, or
27954 <CENTER><SAMP>* ! W</SAMP></CENTER>
27956 to unset it.
27957 Just like for the other flag setting commands, the case of the letter does
27958 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
27959 keyword.
27961 Notice that you can only use this trick for one keyword that begins
27962 with &quot;W&quot;.
27963 If you happen to have a &quot;Work&quot; keyword and another keyword that is
27964 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
27965 your list of keywords.
27966 Also, there are five letters that are reserved for system
27967 flags and the NOT command.
27968 If you type &quot;* A&quot; it will always set the Answered flag, not
27969 your &quot;Aardvark&quot; keyword.
27970 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
27971 the Flag Details screen.
27973 Because enabling the
27974 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
27975 option causes Alpine to skip directly to the Flag Details screen when the
27976 Flag command is used, 
27977 setting it will cause this feature to have no effect at all.
27979 Similarly, when Selecting by Keyword, setting this option will allow you
27980 to use Keyword initials instead of full keywords.
27982 &lt;End of help on this topic&gt;
27983 </BODY>
27984 </HTML>
27985 ====== h_config_can_suspend =====
27986 <HTML>
27987 <HEAD>
27988 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
27989 </HEAD>
27990 <BODY>
27991 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
27993 Setting this feature will allow you to type ^Z (Control Z) to 
27994 <!--chtml if pinemode="os_windows"-->
27995 minimize Alpine into its icon, bringing into focus whatever
27996 application is running behind the PC-Alpine window.
27997 <!--chtml else-->
27998 temporarily suspend Alpine.
28001 This does not exit Alpine, but puts it in the background to watch
28002 for new mail and such.  Normally, you type a command, such
28003 as &quot;fg&quot; at your system prompt to return to your Alpine session.
28006 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
28007 adjusts whether Alpine is placed into the background of the shell its 
28008 running in or starts a news shell.
28009 <!--chtml endif-->
28012 <UL>   
28013 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28014 </UL><P>
28015 &lt;End of help on this topic&gt;
28016 </BODY>
28017 </HTML>
28018 ====== h_config_take_lastfirst ======
28019 <HTML>
28020 <HEAD>
28021 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
28022 </HEAD>
28023 <BODY>
28024 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
28026 Normally, when TakeAddr is used to copy an address from a message into
28027 an address book entry, Alpine will attempt to rewrite the full name of the
28028 address in the form
28031 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
28033 instead of<P>
28035 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
28038 It does this because many people find it useful to sort by Last name
28039 instead of First name.  If this feature is set, then the TakeAddr command
28040 will not attempt to reverse the name in this manner.
28042 &lt;End of help on this topic&gt;
28043 </BODY></HTML>
28044 ====== h_config_disable_regex ======
28045 <HTML>
28046 <HEAD>
28047 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
28048 </HEAD>
28049 <BODY>
28050 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
28052 Normally, the
28053 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
28054 option is interpreted as a regular expression.
28055 One type of address that might cause trouble is an address that
28056 contains a plus sign.
28057 If you want to have an address with a plus as one of your
28058 <!--#echo var="VAR_alt-addresses"-->
28059 and you don't want to use regular expressions, then setting this
28060 feature will cause Alpine to treat the addresses you list literally instead.
28062 &lt;End of help on this topic&gt;
28063 </BODY></HTML>
28064 ====== h_config_take_fullname ======
28065 <HTML>
28066 <HEAD>
28067 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
28068 </HEAD>
28069 <BODY>
28070 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
28072 Normally, when TakeAddr is used to copy an address or addresses
28073 from a message into an address book entry, Alpine will try to preserve
28074 the full name associated with each address in the list of addresses.
28075 The reason for this is so that if the entry is a list or later becomes a
28076 list, then information about the individual addresses in the list
28077 is preserved.
28078 If you would rather just have the simple addresses in the list of addresses,
28079 set this feature. For example, with the default setting you might
28080 see something like this in the ADDRESS BOOK editor after you type TakeAddr
28082 <PRE>
28083  Nickname  : nick
28084  Fullname  : Bedrock Elders
28085  Fcc       :
28086  Comment   :
28087  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
28088              Barney Rubble &lt;rubble@bedrock.org&gt;
28089 </PRE>
28091 but with this feature set it would look like
28093 <PRE>
28094  Nickname  : nick
28095  Fullname  : Bedrock Elders
28096  Fcc       :
28097  Comment   :
28098  Addresses : flint@bedrock.org,
28099              rubble@bedrock.org
28100 </PRE>
28102 instead. Note the difference in the Addresses field.
28104 &lt;End of help on this topic&gt;
28105 </BODY></HTML>
28106 ====== h_config_print_from ======
28107 <HTML>
28108 <HEAD>
28109 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
28110 </HEAD>
28111 <BODY>
28112 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
28114 If this feature is set, then the Berkeley-mail style From line is included
28115 at the start of each message that is printed.  This line looks something
28116 like the following, with the address replaced by the address from the
28117 From line of the message being printed:
28119 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
28120 14:11:06 1998
28122 &lt;End of help on this topic&gt;
28123 </BODY>
28124 </HTML>
28125 ====== h_config_expanded_distlists ======
28126 <HTML>
28127 <HEAD>
28128 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
28129 </HEAD>
28130 <BODY>
28131 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
28132 If this feature is set, then distribution lists in the address book
28133 screen will always be expanded automatically.
28135 &lt;End of help on this topic&gt;
28136 </BODY>
28137 </HTML>
28138 ====== h_config_compose_news_wo_conf ======
28139 <HTML>
28140 <HEAD>
28141 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
28142 </HEAD>
28143 <BODY>
28144 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
28145 This feature controls one aspect of Alpine's Composer.  If you enter the
28146 composer while reading a newsgroup, you will normally be prompted to
28147 determine whether you intend the new message to be posted to the current
28148 newsgroup or not.  If this feature is set, Alpine will not prompt you
28149 in this situation, and will assume that you do indeed wish to post
28150 to the newsgroup you are reading.
28152 &lt;End of help on this topic&gt;
28153 </BODY>
28154 </HTML>
28155 ====== h_config_compose_rejects_unqual ======
28156 <HTML>
28157 <HEAD>
28158 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
28159 </HEAD>
28160 <BODY>
28161 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
28163 This feature controls one aspect of the message composer; in particular,
28164 what happens when an unqualified name is entered into an address header.
28165 If set, unqualified names entered as addresses will be treated as errors
28166 unless they match an addressbook nickname.  Alpine will not attempt to turn
28167 them into complete addresses by adding your local domain.<P>
28169 A complete (fully qualified) address is one containing a username followed
28170 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
28171 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
28172 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
28174 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
28178 When you enter a fully qualified address, Alpine does not interpret or
28179 modify it, but simply passes it on to the mail-transport-agent (MTA) for
28180 your system.  Alpine conforms to the Internet standards governing message
28181 headers and will not send an unqualifed name to the MTA.  Therefore, when
28182 you enter an unqualified name, Alpine will normally attempt to turn it into
28183 a fully qualified address, first by checking to see if you have entered a
28184 matching nickname in your addressbook, or failing that, by simply adding
28185 your own domain to the name entered.  So if your address is
28186 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
28187 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
28188 that into &quot;fred@example.com&quot;.<P>
28190 There are situations where it is not desirable for Alpine to interpret such
28191 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
28192 turned out to be a typo (intended to be an addressbook nickname), but
28193 there actually was a &quot;fred&quot; in your local domain, the message might 
28194 be mis-delivered without your realizing it.  In order to reduce the likelihood
28195 of such accidents, setting this feature will cause Alpine to treat such
28196 addresses as errors, and require that you explicitly enter the full local
28197 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
28198 matches an address book nickname.<P>
28200 Consider this a safety feature against mis-directed mail.
28202 <UL>   
28203 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28204 </UL><P>
28205 &lt;End of help on this topic&gt;
28206 </BODY>
28207 </HTML>
28208 ====== h_config_quell_local_lookup ======
28209 <HTML>
28210 <HEAD>
28211 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
28212 </HEAD>
28213 <BODY>
28214 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
28216 This feature controls an aspect of Alpine's Composer, and if needed, will
28217 usually be set by your system manager in Alpine's system-wide configuration
28218 file. Specifically, if this feature is set, Alpine will not attempt to look
28219 in the system password file to find a Full Name for the entered address.
28221 Normally, names you enter into address fields (e.g. To: or Cc:) are
28222 checked against your address book(s) to see if they match an address book
28223 nickname.  Failing that, (in Unix Alpine) the name is then checked against
28224 the Unix password file.  If the entered name matches a username in the
28225 system password file, Alpine extracts the corresponding Full Name information
28226 for that individual, and adds that to the address being entered.
28228 However, password file matching can have surprising (incorrect) results if
28229 other users of the system do not receive mail at the domain you are using.
28230 That is, if either the 
28231 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
28232 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
28233 option
28234 is set such that the administrative domain of other users on the system
28235 isn't accurately reflected, Alpine should be told that a passwd file match
28236 is coincidental, and Full Name info will be incorrect.  For example, a
28237 personal name from the password file could get falsely paired with the
28238 entered name as it is turned into an address in the configured domain.
28240 If you are seeing this behavior, enabling this feature will prevent Unix
28241 Alpine from looking up names in the password file to find the Full Name
28242 for incomplete addresses you enter.<P>
28243 <UL>
28244 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28245 </UL>
28247 &lt;End of help on this topic&gt;
28248 </BODY>
28249 </HTML>
28250 ====== h_config_tab_checks_recent ======
28251 <HTML>
28252 <HEAD>
28253 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
28254 </HEAD>
28255 <BODY>
28256 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
28258 In a FOLDER LIST screen, the TAB key usually just changes which
28259 folder is highlighted.
28260 If this feature is set, then the TAB key will cause the number of
28261 recent messages and the total number of messages in the highlighted folder
28262 to be displayed instead.
28265 &lt;End of help on this topic&gt;
28266 </BODY>
28267 </HTML>
28268 ====== h_config_maildrops_preserve_state ======
28269 <HTML>
28270 <HEAD>
28271 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
28272 </HEAD>
28273 <BODY>
28274 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
28276 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
28277 Normally, when mail is moved from a Mail Drop folder to a destination
28278 folder, it is delivered as new mail.
28279 Any Seen/New, Answered, Important/Flagged state that has changed will be
28280 ignored.
28281 All of the mail will be considered unSeen, unAnswered, and unImportant after
28282 it is moved.
28284 If this feature is set, then the state changes that have been made
28285 to the messages in the Mail Drop folder will be preserved.
28287 In any case, messages that are already marked Deleted when the
28288 mail is to be moved from the Mail Drop will be ignored.
28290 &lt;End of help on this topic&gt;
28291 </BODY>
28292 </HTML>
28293 ====== h_config_preopen_stayopens ======
28294 <HTML>
28295 <HEAD>
28296 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
28297 </HEAD>
28298 <BODY>
28299 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
28301 This feature is related to the option
28302 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28303 Normally, Stay Open folders are only opened on demand, when the user
28304 asks to open them.
28305 From then on they are kept open for the duration of the session.
28306 However, if this feature is set, then the Stay Open folders will all be
28307 opened at startup, at the same time that the INBOX is opened.
28310 &lt;End of help on this topic&gt;
28311 </BODY>
28312 </HTML>
28313 ====== h_config_expunge_inbox ======
28314 <HTML>
28315 <HEAD>
28316 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
28317 </HEAD>
28318 <BODY>
28319 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
28321 The INBOX is normally treated differently from regular folders in several
28322 ways.
28323 One of the differences is that the normal &quot;close&quot; sequence of
28324 events is deferred until Alpine is exited, instead of happening when you
28325 leave the INBOX to view another folder.
28326 The &quot;close&quot; sequence normally includes the Expunging
28327 of deleted messages
28328 (either automatically or after a prompt, controlled by the features
28329 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28330 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28331 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28332 handling of the
28333 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
28336 If this feature is set the &quot;close&quot; sequence handling will take
28337 place every time you leave the INBOX.
28338 The INBOX will still be kept open, but the offer to Expunge and the archiving
28339 to the <!--#echo var="VAR_read-message-folder"-->
28340 will take place each time you leave the INBOX instead of only once at the
28341 end of the session.
28344 &lt;End of help on this topic&gt;
28345 </BODY>
28346 </HTML>
28347 ====== h_config_expunge_stayopens ======
28348 <HTML>
28349 <HEAD>
28350 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
28351 </HEAD>
28352 <BODY>
28353 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
28355 This feature is related to the option
28356 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28357 Stay Open folders are treated differently from regular folders in several
28358 ways.
28359 One of the differences is that the normal &quot;close&quot; sequence of
28360 events is deferred until Alpine is exited, instead of happening when you
28361 leave the folder to view another folder.
28362 The &quot;close&quot; sequence normally includes the Expunging
28363 of deleted messages
28364 (either automatically or after a prompt, controlled by the features
28365 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28366 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28367 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28368 handling of
28369 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
28372 If this feature is set the &quot;close&quot; sequence handling will take
28373 place when you leave the Stay Open folder.
28374 The folder will still be kept open, but the offer to Expunge and the archiving
28375 will take place each time you leave the folder instead of only once at the
28376 end of the session.
28377 This feature does not affect the INBOX, which will still only be processed
28378 when you exit Alpine.
28379 However, there is a similar feature that affects only the INBOX called
28380 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
28383 &lt;End of help on this topic&gt;
28384 </BODY>
28385 </HTML>
28386 ====== h_config_preserve_start_stop ======
28387 <HTML>
28388 <HEAD>
28389 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
28390 </HEAD>
28391 <BODY>
28392 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
28394 This feature controls how special control key characters, typically
28395 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
28396 are known as the "stop" and "start" characters and are sometimes used in
28397 communications paths to control data flow between devices that operate at
28398 different speeds.
28402 By default, Alpine turns the system's handling of these special characters
28403 off except during printing.  However, if you see Alpine reporting input errors
28404 such as:
28406 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
28408 and, at the same time, see your display become garbled, then it is likely
28409 that setting this option will solve the problem.  Be aware, though, that
28410 enabling this feature will also cause Alpine to ostensibly "hang" 
28411 whenever the Ctrl-S key combination is entered as the system is now
28412 interpreting such input as a "stop output" command.  To "start
28413 output"  again, simply type Ctrl-Q. 
28415 &lt;End of help on this topic&gt;
28416 </BODY>
28417 </HTML>
28418 ====== h_config_enable_incoming ======
28419 <HTML>
28420 <HEAD>
28421 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
28422 </HEAD>
28423 <BODY>
28424 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
28426 Alpine's Incoming Message Folders collection
28427 provides a convenient way to access multiple incoming folders.
28428 It is also useful if you have accounts on multiple computers.
28431 If set, this feature defines a pseudo-folder collection called
28432 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
28433 in this collection will be your INBOX, which will no longer show up in
28434 your Default folder collection.
28437 You may add more folders to the Incoming Message Folders collection by
28438 using the
28439 <!--chtml if pinemode="function_key"-->
28440 &quot;F10
28441 <!--chtml else-->
28442 &quot;A
28443 <!--chtml endif-->
28444 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
28445 the host the folder is stored on (which defaults to the same host used
28446 for your INBOX), a nickname, and the actual folder name.  Once a set
28447 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
28448 or MESSAGE TEXT screens) may be used to scan the folders for those
28449 with Recent messages.  If you add more folders to
28450 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
28451 no effect.
28453 NOTE: Normally the software that actually delivers mail (the stuff that happens
28454 before Alpine is involved) is in a better position to do delivery filtering
28455 than is Alpine itself.
28456 If possible, you may want to look at programs such as
28457 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
28458 filtering programs.
28459 If you'd prefer to have Alpine do the filtering for you, you may set that
28461 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
28463 <UL>   
28464 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28465 </UL><P>
28466 &lt;End of help on this topic&gt;
28467 </BODY>
28468 </HTML>
28469 ====== h_config_enable_incoming_checking ======
28470 <HTML>
28471 <HEAD>
28472 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
28473 </HEAD>
28474 <BODY>
28475 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
28477 This feature is only operational if you have enabled the optional
28478 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
28479 If you do have Incoming Message Folders and you also set this feature,
28480 then the number of Unseen messages in each folder will be displayed
28481 in the FOLDER LIST screen for the Incoming Message Folders.
28482 The number of Unseen messages in a folder will be displayed in parentheses
28483 to the right of the name of each folder.
28484 If there are no Unseen messages in a folder then only the name
28485 is displayed, not a set of parentheses with zero inside them.
28486 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
28487 the Incoming Message Folders to cause an immediate update.
28489 If a check for Unseen messages fails for a particular folder then Alpine
28490 will no longer attempt to check that folder for the duration of the
28491 session and this will be indicated by a question mark inside the
28492 parentheses.
28494 The features
28495 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
28496 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
28497 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
28498 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
28499 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
28500 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
28501 all affect how this feature behaves.
28503 <UL>   
28504 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28505 </UL><P>
28506 &lt;End of help on this topic&gt;
28507 </BODY>
28508 </HTML>
28509 ====== h_config_incoming_checking_total ======
28510 <HTML>
28511 <HEAD>
28512 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
28513 </HEAD>
28514 <BODY>
28515 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
28517 This option has no effect unless the feature
28518 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28519 is set, which in turn has no effect unless
28520 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28521 is set.
28523 When incoming folder checking is turned on the default is to display
28524 the number of unseen messages in each folder.
28525 More precisely, it is the number of undeleted unseen messages.
28526 Using this option you may also display the total number of messages
28527 in each folder.
28528 Instead of a single number representing the number of unseen messages
28529 you will get two numbers separated by a slash character.
28530 The first is the number of unseen messages and the second is the
28531 total number of messages.
28533 You may also use the recent message count instead of the unseen message
28534 count by turning on the feature
28535 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
28537 <UL>   
28538 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28539 </UL><P>
28540 &lt;End of help on this topic&gt;
28541 </BODY>
28542 </HTML>
28543 ====== h_config_incoming_checking_recent ======
28544 <HTML>
28545 <HEAD>
28546 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
28547 </HEAD>
28548 <BODY>
28549 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
28551 This option has no effect unless the feature
28552 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28553 is set, which in turn has no effect unless
28554 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28555 is set.
28557 When incoming folder checking is turned on the default is to display
28558 the number of unseen messages in each folder.
28559 More precisely, it is the number of undeleted unseen messages.
28560 Using this option you may display the number of recent messages instead
28561 of the number of unseen messages.
28562 A message is only counted as recent if this is the first session to
28563 see it, so the recent count might be less than the unseen count.
28564 The difference between the two would be accounted for by the unseen messages
28565 in the folder which were there previously but have not been looked at yet.
28567 If you simultaneously run more than one email client at a time
28568 (for example, you run more than one Alpine in parallel) then turning
28569 this feature on can cause some confusion.
28570 The confusion stems from the fact that each message is only considered to be
28571 recent in one session.
28572 That means that the counts of new messages may be different in the two
28573 Alpines running side by side, because each incoming message will only be
28574 counted as recent in one of the two sessions.
28576 You may also display the total number of messages
28577 in each folder by using the
28578 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
28579 option.
28581 <UL>   
28582 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28583 </UL><P>
28584 &lt;End of help on this topic&gt;
28585 </BODY>
28586 </HTML>
28587 ====== h_config_attach_in_reply ======
28588 <HTML>
28589 <HEAD>
28590 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
28591 </HEAD>
28592 <BODY>
28593 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
28595 This feature controls an aspect of Alpine's Reply command. If set, any MIME
28596 attachments that were part of the original message will automatically be
28597 included in the Reply.
28599 &lt;End of help on this topic&gt;
28600 </BODY>
28601 </HTML>
28602 ====== h_config_include_header =====
28603 <HTML>
28604 <HEAD>
28605 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
28606 </HEAD>
28607 <BODY>
28608 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
28610 This feature controls an aspect of Alpine's Reply command. If set, and the
28611 original message is being included in the reply, then headers from that
28612 message will also be part of the reply.
28614 &lt;End of help on this topic&gt;
28615 </HEAD>
28616 </HTML>
28617 ====== h_config_sig_at_bottom =====
28618 <HTML>
28619 <HEAD>        
28620 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
28621 </HEAD>
28622 <BODY>
28623 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
28625 This feature controls an aspect of Alpine's Reply command.  If this feature
28626 is set, and the original message is being included in the reply, then the
28627 contents of your signature file (if any) will be inserted after the included
28628 message.
28630 This feature does not affect the results of a Forward command.
28632 &lt;End of help on this topic&gt;
28633 </BODY>
28634 </HTML>
28635 ====== h_config_sigdashes =====
28636 <HTML>
28637 <HEAD>
28638 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
28639 </HEAD>
28640 <BODY>
28641 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
28643 This feature enables support for the common USENET news convention 
28644 of preceding a message signature with the special line consisting of 
28645 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
28648 When enabled and a
28649 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
28650 Alpine will insert the special line before including the file's text (unless
28651 the special line already exists somewhere in the file's text).
28654 In addition, when you Reply or Followup to a message containing one of
28655 these special lines and choose to include its text, Alpine will observe
28656 the convention of not including text beyond the special line in your
28657 reply.
28658 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28659 mode is enabled and turned on, then Alpine <EM>will</EM>
28660 include the text beyond the special line regardless of the setting of
28661 this feature.
28664 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
28665 for a related feature.
28668 <UL>   
28669 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28670 </UL><P>
28671 &lt;End of help on this topic&gt;
28672 </BODY>
28673 </HTML>
28674 ====== h_config_new_thread_blank_subject =====
28675 <HTML>
28676 <HEAD>
28677 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
28678 </HEAD>
28679 <BODY>
28680 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
28682 When this feature is enabled (the default) Alpine will create a new thread
28683 every time that the subject line becomes empty at any time during composition.
28686 This behavior is particularly useful in case you are replying to a message.
28687 Replying to a message causes the message to be in the same thread than the
28688 original message that is being replied to. However, many authors want to create
28689 a new message (in a different thread) while replying to a message, and they do
28690 this by changing the full subject, by first deleting the original subject and
28691 typing the new subject of the current message.
28694 Enabling this feature causes that any time that the subject is deleted, the 
28695 message being composed will be considered the first message of a new thread.
28698 <UL>   
28699 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28700 </UL><P>
28701 &lt;End of help on this topic&gt;
28702 </BODY>
28703 </HTML>
28704 ====== h_config_strip_sigdashes =====
28705 <HTML>
28706 <HEAD>
28707 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
28708 </HEAD>
28709 <BODY>
28710 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
28712 This feature doesn't do anything if the feature
28713 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
28714 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
28715 then turning on this feature enables support for the convention
28716 of not including text beyond the sigdashes line when Replying or Following
28717 up to a message and including the text of that message.
28718 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28719 mode is enabled and turned on, then Alpine <EM>will</EM>
28720 include the text beyond the special line regardless of the setting of
28721 this feature.
28723 In other words, this is a way to turn on the signature stripping behavior
28724 without also turning on the dashes-adding behavior.
28726 <UL>   
28727 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28728 </UL><P>
28729 &lt;End of help on this topic&gt;
28730 </BODY>
28731 </HTML>
28732 ====== h_config_forward_as_attachment =====
28733 <HTML>
28734 <HEAD>
28735 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
28736 </HEAD>
28737 <BODY>
28738 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
28740 This feature affects the way forwarded message text is handled.  When set, rather than 
28741 include the text of the forwarded message below any additional text you provide in the
28742 composer, the forwarded message is attached in its entirety to the message you send.
28744 This is useful in that it keeps the text you provide in the composer distinct from the
28745 text of the forwarded message.  Similarly, it allows the recipient to 
28746 conveniently operate on the forwarded message.  For example, they might reply directly to
28747 the sender of the forwarded message, or process it as part of a spam report.
28748 <UL>   
28749 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28750 </UL><P>
28751 &lt;End of help on this topic&gt;
28752 </BODY>
28753 </HTML>
28754 ====== h_config_preserve_field =====
28755 <HTML>
28756 <HEAD>
28757 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
28758 </HEAD>
28759 <BODY>
28760 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
28762 This feature affects Alpine's behavior when one replies to a message. 
28763 When you receive a message, some or all of the recipients of the message 
28764 have been added to the To: and Cc: fields. If you reply to such message, 
28765 and this feature is disabled, then the original sender of the message is 
28766 added to the To: field, and all other recipients are added to the Cc: 
28767 field, while your address is added to the From: field.
28770 However, if this feature is enabled, then Alpine will preserve the 
28771 original fields as sent in the original message, so the Cc: and To: 
28772 fields will be preserved. The sender's address will be added to the To: 
28773 field, while your address is added to the From: field.
28776 The behavior of this feature is that replies to all messages will behave 
28777 in the way described above. If you only intend this to happen on a per 
28778 message basis, then keep this feature disabled, and when replying to a 
28779 message you will see a new option in the menu for the &quot;Reply to all 
28780 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
28781 make Alpine toggle its question so you can preserve the To: and Cc: 
28782 fields for that message only.
28784 <UL>   
28785 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28786 </UL><P>
28787 &lt;End of help on this topic&gt;
28788 </BODY>
28789 </HTML>
28790 ====== h_config_sub_lists =====
28791 <HTML>
28792 <HEAD>
28793 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
28794 </HEAD>
28795 <BODY>
28796 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
28798 This feature affects the subcommands available when Saving, 
28799 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
28800 available. This command allows you to type in a substring of the folder
28801 you are looking for and when you type ^X it will display all folders
28802 that contain that substring in their names.
28803 This feature is set by default.
28806 &lt;End of help on this topic&gt;
28807 </BODY>
28808 </HTML>
28809 ====== h_config_scramble_message_id =====
28810 <HTML>
28811 <HEAD>
28812 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
28813 </HEAD>
28814 <BODY>
28815 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
28817 Normally the Message-ID header that Alpine generates when sending a message
28818 contains the name of the computer from which the message is being sent.
28819 Some believe that this hostname could be used by spammers or could
28820 be used by others for nefarious purposes.
28821 If this feature is set, that name will be transformed with a simple
28822 Rot13 transformation.
28823 The result will still have the correct syntax for a Message-ID but the
28824 part of the MessageID that is often a domain name will not be an actual
28825 domain name because the letters will be scrambled.
28827 In addition, other information such as the name program, version, and
28828 a code for operating system used to build Alpine, will be encoded using
28829 the Rot13 transformation, except for the version number which will be
28830 encoded using a Rot5 transformation.
28832 It is possible (but unlikely?) that some spam detection
28833 software will use that as a reason to reject the mail as spam.
28834 It has also been reported that some spam detection software uses the
28835 fact that there are no dots after the &quot;@&quot; as a reason to reject
28836 messages.
28837 If your PC-Alpine Message-ID is using a name without a dot that is because
28838 that is what Windows thinks is your &quot;Full computer name&quot;.
28839 The method used to set this varies from one type of Windows to another but
28840 check under Settings -> Control Panel -> System and
28841 look for Network Identification or Computer Name or something similar.
28842 How to set it is beyond the scope of Alpine.
28845 &lt;End of help on this topic&gt;
28846 </BODY>
28847 </HTML>
28848 ====== h_downgrade_multipart_to_text =====
28849 <HTML>
28850 <HEAD>
28851 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
28852 </HEAD>
28853 <BODY>
28854 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
28857 This feature affects Alpine's behavior when sending mail.  Internet
28858 standards require Alpine to translate all non-ASCII characters in
28859 messages that it sends using MIME encoding.  This encoding can be
28860 ostensibly broken for recipients if any agent between Alpine and the
28861 recipient, such as an email list expander, appends text to the
28862 message, such as list information or advertising.  When sending such
28863 messages Alpine attempts to protect such encoding by placing extra
28864 MIME boundaries around the message text.
28866 These extra boundaries are invisible to recipients that 
28867 use MIME-aware email programs (the vast majority).  However, if
28868 you correspond with users of email programs that are not MIME-aware,
28869 or do not handle the extra boundaries gracefully, you can
28870 use this feature to prevent Alpine from including the extra
28871 MIME information.  Of course, it will increase the likelihood
28872 that non-ASCII text you send may appear corrupt to the recipient.
28874 &lt;End of help on this topic&gt;
28875 </BODY>
28876 </HTML>
28877 ====== h_config_show_sort =====
28878 <HTML>
28879 <HEAD>
28880 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
28881 </HEAD>
28882 <BODY>
28883 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
28885 If this feature is set and there is sufficient space on the screen,
28886 a short indication of the current sort order will be
28887 added in the titlebar (the top line on the screen), before the name
28888 of the folder.
28889 For example, with the default Arrival sort in effect,
28890 the display would have the characters
28892 <P><CENTER>[A]</CENTER><P>
28894 added between the title of the screen and the folder name.
28895 The letters are the same as the letters you may type to manually
28896 sort a folder with the SortIndex command ($).
28897 The letters in the table below are the ones that may show
28898 up in the titlebar line.
28900 <TABLE>   
28901 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
28902 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
28903 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
28904 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
28905 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
28906 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
28907 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
28908 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
28909 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
28910 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
28911 </TABLE>
28913 If the sort order is Reversed, the letter above will be preceded by the letter
28914 &quot;R&quot;, for example
28916 <P><CENTER>[RS]</CENTER><P>
28918 means that a Reverse Subject sort is in effect.
28919 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
28920 left out, and just an &quot;R&quot; is shown.
28922 <P><CENTER>[R]</CENTER>
28925 &lt;End of help on this topic&gt;
28926 </BODY>
28927 </HTML>
28928 ====== h_config_disable_reset_disp =====
28929 <HTML>
28930 <HEAD>
28931 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
28932 </HEAD>
28933 <BODY>
28934 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
28936 UNIX Alpine only.
28938 This feature affects Alpine's behavior when using
28939 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
28940 Normally, before the display filter is run, the terminal mode is reset
28941 to what it was before you started Alpine.
28942 This may be necessary if the filter requires the use of the terminal.
28943 For example, it may need to interact with you.
28944 If you set this feature, then the terminal mode will not be reset.
28945 One thing that turning on this feature should fix is the coloring of
28946 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
28947 breaks because the terminal reset resets the color state of the terminal.
28950 &lt;End of help on this topic&gt;
28951 </BODY>
28952 </HTML>
28953 ====== h_config_disable_sender =====
28954 <HTML>
28955 <HEAD>
28956 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
28957 </HEAD>
28958 <BODY>
28959 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
28961 This feature affects Alpine's generation of the &quot;Sender:&quot; or
28962 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
28963 header fields.
28964 By default, Alpine will generate such a header in situations where the
28965 username or domain are not the same as
28966 the &quot;From:&quot; header on the message.
28967 With this feature set,
28968 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
28969 This may be desirable on a system that is virtually hosting many domains,
28970 and the sysadmin has other methods available for tracking a message to
28971 its originator.
28973 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
28976 &lt;End of help on this topic&gt;
28977 </BODY>
28978 </HTML>
28979 ====== h_config_use_sender_not_x =====
28980 <HTML>
28981 <HEAD>
28982 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
28983 </HEAD>
28984 <BODY>
28985 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
28987 Normally Alpine adds a header line
28988 labeled &quot;X-X-Sender&quot;, if the sender is
28989 different from the From: line.
28990 The standard specifies that this header
28991 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
28992 Setting this feature causes
28993 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
28995 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
28998 &lt;End of help on this topic&gt;
28999 </BODY>
29000 </HTML>
29001 ====== h_config_use_fk =====
29002 <HTML>
29003 <HEAD>
29004 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
29005 </HEAD>
29006 <BODY>
29007 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
29009 This feature specifies that Alpine will respond to function keys instead of
29010 the normal single-letter commands. In this mode, the key menus at the
29011 bottom of each screen will show function key designations instead of the
29012 normal mnemonic key.
29015 &lt;End of help on this topic&gt;
29016 </BODY>
29017 </HTML>
29018 ====== h_config_cancel_confirm =====
29019 <HTML>
29020 <HEAD>
29021 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
29022 </HEAD>
29023 <BODY>
29024 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
29026 This feature affects what happens when you type ^C to cancel a composition.
29027 By default, if you attempt to cancel a composition by typing ^C, you will be
29028 asked to confirm the cancellation by typing a &quot;C&quot;
29029 for <EM>C</EM>onfirm.
29030 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
29031 risky because the &quot;^C Y&quot; needed to cancel a message
29032 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
29034 If this feature is set the confirmation asked for
29035 will be a &quot;<EM>Y</EM>es&quot;
29036 instead of a &quot;<EM>C</EM>onfirm&quot; response.
29039 &lt;End of help on this topic&gt;
29040 </BODY>
29041 </HTML>
29042 ====== h_config_compose_maps_del =====
29043 <HTML>
29044 <HEAD>
29045 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
29046 </HEAD>
29047 <BODY>
29048 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
29050 This feature affects the behavior of the DELETE key.
29051 If set, Delete will be equivalent to ^D, and delete
29052 the current character.  Normally Alpine defines the Delete key
29053 to be equivalent to ^H, which deletes the <EM>previous</EM>
29054 character.
29057 &lt;End of help on this topic&gt;
29058 </BODY>
29059 </HTML>
29060 ====== h_config_compose_bg_post =====
29061 <HTML>
29062 <HEAD>
29063 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
29064 </HEAD>
29065 <BODY>
29066 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
29068 This feature affects the behavior of Alpine's mail sending.  If set, this
29069 feature enables a subcommand in the composer's "Send?" confirmation
29070 prompt.  The subcommand allows you to tell Alpine to handle the actual
29071 posting in the background.  While this feature usually allows posting
29072 to appear to happen very fast, it has no affect on the actual delivery
29073 time it takes a message to arrive at its destination.
29076 Please Note:
29077 <OL>
29078  <LI>This feature will have no effect if the feature
29079        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
29080        is set.
29081  <LI>This feature isn't supported on all systems.  All DOS and Windows,
29082        as well as several Unix ports, do not recognize this feature.
29083  <LI>Error handling is significantly different when this feature is
29084         enabled.  Any message posting failure results in the message
29085         being appended to your &quot;Interrupted&quot; mail folder.  When you
29086         type the <A HREF="h_common_compose">C</A>ompose command,
29087         Alpine will notice this folder and
29088         offer to extract any messages contained.  Upon continuing a 
29089         failed message, Alpine will display the nature of the failure 
29090         in the status message line.
29091  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
29092         for message data to
29093         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
29094         if you typically run close to any sort of disk-space limits or quotas.
29095 </OL>
29097 &lt;End of help on this topic&gt;
29098 </BODY>
29099 </HTML>
29100 ====== h_config_compose_dsn =====
29101 <HTML>
29102 <HEAD>
29103 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
29104 </HEAD>
29105 <BODY>
29106 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
29108 This feature affects the behavior of Alpine's mail sending.  If set, this
29109 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
29110 prompt.  The subcommand allows you to tell Alpine to request the type of
29111 Delivery Status Notification (DSN) that you would like.  Most users will
29112 be happy with the default, and need not enable this feature.
29114 If the feature
29115 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29116 then this feature has no effect and the type of DSN is not selectable.
29119 Turning on this feature and then turning on the DSNOpts from the send
29120 prompt reveals four on-off toggles at the bottom of the screen.
29121 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
29122 that no notification be returned to you, even if there is a delivery
29123 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
29124 server that you are willing (or not) to receive delay notifications, which
29125 happen when there is an unusual delay at some mail server (in that mail
29126 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
29127 Success requests that you be sent a DSN message when the message is
29128 successfully delivered to the recipients mailbox.  Setting NoErrRets will
29129 automatically turn off Delay and Success notification, and will flip the
29130 toggles to show that.  Similarly, turning on Delay and/or Success will
29131 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
29132 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
29133 the full message be returned in any failed DSN.  RetHdrs requests that
29134 only the headers be returned in any failed DSN.  Notice that this command
29135 applies only to failed delivery status reports.  For delay or success
29136 reports, the full message is never returned, only the headers are returned.
29139 If you don't enable the DSN feature or if you don't turn it on for a
29140 particular message, the default is that you will be notified about failures,
29141 you might be notified about delays, and you won't be notified about
29142 successes.  You will usually receive the full message back when there is
29143 a failure.
29146 If you turn on the DSNOpts the default is to return as much information as
29147 possible to you.  That is, by default, the Success and Delay options are
29148 turned on and the full message will be returned on failure.
29151 The sending prompt will display the current DSN request (if any) in a
29152 shorthand form.  It will be:
29154 <P><CENTER>[Never]</CENTER>
29157 if you have requested NoErrRets.  Otherwise, it will look something like:
29159 <P><CENTER>[FDS-Hdrs]</CENTER>
29162 The &quot;F&quot; will always be there, indicating that you will be notified
29163 of failures.  (Alpine doesn't provide a way to request no failure notification
29164 and at the same time request either success or delay notification.  The only
29165 way to request no failure notifications is to request no notifications at
29166 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
29167 requested Delay and/or Success notification.  If one of those is missing,
29168 that means you are requesting no notification of the corresponding type.
29169 After the dash it will say either Hdrs or Full.  Hdrs means to return only
29170 the headers and Full means to return the full message (applies to
29171 failure notifications only).
29174 NOTE: This feature relies on your system's mail transport agent or
29175 configured
29176 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
29177 having the negotiation mechanism introduced in
29178 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
29179 &quot;Delivery Status Notification&quot; (DSN).  If the mail tranport agent you
29180 are using doesn't support DSN, a short warning will be shown to you on
29181 the message line at the bottom of the screen after you send your message,
29182 but your message will have been sent anyway.
29185 Note that DSNs don't provide a mechanism to request read receipts.  That
29186 is, if you request notification on success you are notified when the
29187 message is delivered to the mailbox, not when the message is read.
29190 ESMTP allows for graceful migration to upgraded mail transfer agents, but
29191 it is possible that this feature might cause problems for some servers. 
29194 &lt;End of help on this topic&gt;
29195 </BODY>
29196 </HTML>
29197 ====== h_config_auto_zoom =====
29198 <HTML>
29199 <HEAD>
29200 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
29201 </HEAD>
29202 <BODY>
29203 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
29205 This feature affects the behavior of the Select command.
29206 If set, the select command will automatically perform a zoom
29207 after the select is complete.
29208 This feature is set by default.
29210 Some related help topics are
29211 <UL>
29212 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29213 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29214 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29215 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29216 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29217 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29218 </UL>
29221 &lt;End of help on this topic&gt;
29222 </BODY>
29223 </HTML>
29224 ====== h_config_auto_unzoom =====
29225 <HTML>
29226 <HEAD>
29227 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
29228 </HEAD>
29229 <BODY>
29230 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
29232 This feature affects the behavior of the Apply command.  If set, and if
29233 you are currently looking at a Zoomed Index view of selected messages,
29234 the Apply command will do the operation you specify, but then will
29235 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
29236 the normal Index view after the Apply. 
29237 This feature is set by default.
29240 Some related help topics are
29241 <UL>
29242 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29243 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29244 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29245 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29246 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29247 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29248 </UL>
29250 &lt;End of help on this topic&gt;
29251 </BODY>
29252 </HTML>
29253 ====== h_config_auto_unselect =====
29254 <HTML>
29255 <HEAD>
29256 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
29257 </HEAD>
29258 <BODY>
29259 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
29261 This feature affects the behavior of the Apply command.  If set,
29262 the Apply command will do the operation you specify, but then will
29263 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
29264 the normal Index view after the Apply. 
29267 Some related help topics are
29268 <UL>
29269 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29270 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29271 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29272 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29273 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29274 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29275 </UL>
29277 &lt;End of help on this topic&gt;
29278 </BODY>
29279 </HTML>
29280 ====== h_config_fast_recent =====
29281 <HTML>
29282 <HEAD>
29283 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
29284 </HEAD>
29285 <BODY>
29286 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
29288 This feature controls the behavior of the TAB key when traversing folders
29289 in the optional 
29290 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
29291 collection or in optional <!--#echo var="VAR_news-collections"-->.
29294 When the TAB
29295 (<A HREF="h_common_nextnew">NextNew</A>)
29296 key is pressed, the default behavior is to
29297 explicitly examine the status of the folder for the number of recent
29298 messages (messages delivered since the last time it was viewed).
29299 Depending on the size and number of messages in the folder, this test
29300 can be time consuming.
29303 Enabling this feature will cause Alpine to only test for the existence of
29304 any recent messages rather than to obtain the count.  This is much faster
29305 in many cases.  The downside is that you're not given the number of recent
29306 messages when prompted to view the next folder.
29307 If the feature
29308 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
29309 is turned on, then the present feature will have no effect.
29312 <UL>   
29313 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29314 </UL><P>
29315 &lt;End of help on this topic&gt;
29316 </BODY>
29317 </HTML>
29318 ====== h_config_arrow_nav =====
29319 <HTML>
29320 <HEAD>
29321 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
29322 </HEAD>
29323 <BODY>
29324 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
29326 This feature controls the behavior of the left and right arrow keys.
29327 If set, the left and right arrow keys will operate like the usual
29328 navigation keys &lt; and &gt;.
29329 This feature is set by default.
29332 If you set this feature, and do not like the changed behavior of the up/down 
29333 arrow 
29334 keys when navigating through the FOLDER LIST screen -- 
29335 <B>first</B> from column to column, if more than one folder is 
29336 displayed per row, 
29337 and <B>then</B> from row to row -- you may either also wish to set the feature 
29338 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
29339 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
29340 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
29341 folders in each column.
29343 <UL>   
29344 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29345 </UL><P>
29346 &lt;End of help on this topic&gt;
29347 </BODY>
29348 </HTML>
29349 ====== h_config_relaxed_arrow_nav =====
29350 <HTML>
29351 <HEAD>
29352 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
29353 </HEAD>
29354 <BODY>
29355 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
29357 This feature controls the behavior of the left, right, up and down
29358 arrow keys in the FOLDER LIST screen when the &quot;<A
29359 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
29360 set.
29361 This feature is set by default.
29365 When this feature is set, the left and right
29366 arrow keys in the FOLDER LIST screen
29367 move the highlight bar to the left or right, and the up and
29368 down arrows move it up or down.
29371 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
29372 feature is not set;
29373 the left and right arrow keys in the Folder List screen strictly
29374 track the commands bound to the '&lt;' and '&gt;' keys, and the up
29375 and down arrow keys move the highlight bar to the previous and next
29376 folder or directory name.
29379 <UL>   
29380 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29381 </UL><P>
29382 &lt;End of help on this topic&gt;
29383 </BODY>
29384 </HTML>
29385 ====== h_config_alt_compose_menu =====
29386 <HTML>
29387 <HEAD>
29388 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
29389 </HEAD>
29390 <BODY>
29391 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
29393 This feature controls the menu that is displayed when Compose is selected.
29394 If set, a list of options will be presented, with each option representing
29395 the type of composition that could be used. This feature is most useful for
29396 users who want to avoid being prompted with each option separately, or who
29397 want to avoid the checking of remote postponed or form letter folders.
29398 The possible types of composition are:
29401 New, for starting a new composition. Note that if New is selected and roles
29402 are set, roles are checked for matches and applied according to the setting
29403 of the matching role.
29406 Interrupted, for continuing an interrupted composition. This option is only
29407 offered if an interrupted message folder is detected.
29410 Postponed, for continuing postponed compositions. This option is offered
29411 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
29412 the postponed folder actually exists. This option is especially handy
29413 for avoiding having to check for the existence of a remote postponed folder.
29416 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
29417 is set in the config, and is not checked for existence for reasons similar
29418 to those explained by the postponed option.
29421 setRole, for selecting a role to apply to a composition.
29424 &lt;End of help on this topic&gt;
29425 </BODY>
29426 </HTML>
29427 ====== h_config_alt_role_menu =====
29428 <HTML>
29429 <HEAD>
29430 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
29431 </HEAD>
29432 <BODY>
29433 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
29435 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
29436 a role and compose a new message using that role.
29437 When this feature is set, the role command will first ask whether you want to
29438 Compose a new message, Forward the current message, Reply to the
29439 current message, or Bounce the current message.
29440 If you are not in the MESSAGE INDEX and are not viewing a message,
29441 then there is no current message and the question will be skipped.
29442 After you have chosen to Compose, Forward, Reply, or Bounce you will
29443 then choose the role to be used.
29445 When Bouncing the &quot;Set From&quot; address is used for the
29446 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
29447 provided that the option
29448 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
29449 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
29450 set.
29451 Other actions of the role are ignored when Bouncing.
29454 &lt;End of help on this topic&gt;
29455 </BODY>
29456 </HTML>
29457 ====== h_config_always_spell_check =====
29458 <HTML>
29459 <HEAD>
29460 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
29461 </HEAD>
29462 <BODY>
29463 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
29465 When this feature is set, every composed message will be spell-checked before
29466 being sent.
29468 &lt;End of help on this topic&gt;
29469 </BODY>
29470 </HTML>
29471 ====== h_config_quell_asterisks =====
29472 <HTML>
29473 <HEAD>
29474 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
29475 </HEAD>
29476 <BODY>
29477 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
29479 When you are running Alpine you will sometimes be asked for a password
29480 in a prompt on the third line from the bottom of the screen.
29481 Normally each password character you type will cause an asterisk to echo
29482 on the screen. That gives you some feedback to know that your typing is
29483 being recognized.
29484 There is a very slight security risk in doing it this way because someone
29485 watching over your shoulder might be able to see how many characters there
29486 are in your password.
29487 If you'd like to suppress the echoing of the asterisks set this feature.
29489 &lt;End of help on this topic&gt;
29490 </BODY>
29491 </HTML>
29492 ====== h_config_quell_flowed_text =====
29493 <HTML>
29494 <HEAD>
29495 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
29496 </HEAD>
29497 <BODY>
29498 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
29500 Alpine generates flowed text where possible.
29501 The method for generating flowed text is defined by
29502 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
29503 the benefit of doing so is
29504 to send message text that can properly be viewed both on normal width displays
29505 and on displays with smaller or larger than normal screen widths.
29506 With flowed text, a space at the end of a line tells the receiving mail
29507 client that the following line belongs to the same paragraph.
29508 Quoted text will also be affected, with only the innermost
29509 level of &quot;&gt;&quot; quoting being followed by a space.
29510 However, if you have changed the
29511 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29512 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29513 quoted text will not be flowed.
29514 For this reason, we recommend that you leave your
29515 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
29517 This feature turns off the generation of flowed text, as it might be
29518 desired to more tightly control how a message is displayed on the receiving end.
29520 If this feature is <EM>not</EM> set, you can control on a message by message
29521 basis whether or not flowed text is generated.
29522 You do this by typing ^V at the Send confirmation prompt that you get
29523 after typing ^X to send a message.
29524 ^V is a toggle that turns flowing off and back on if typed again.
29525 If for some reason flowing cannot be done on a particular message, then the
29526 ^V command will not be available.
29527 This would be the case, for example, if this feature was set, or if your
29528 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
29529 If the feature
29530 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29531 then the opportunity to control on a message by message basis
29532 whether or not flowed text is generated is lost.
29534 When this feature is not set and you have typed ^V to turn off flowing,
29535 the Send confirmation prompt will change to look like
29537 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
29539 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
29540 also turn off the sending of flowed text messages, but it differs in that
29541 it also trims all trailing white space from a message before sending it.
29543 If alternate editors are used extensively, be aware that a message will still
29544 be sent flowed if this feature is unset.  In most cases this will be fine,
29545 but if the editor has a &quot;flowed text&quot; mode, it would be best to
29546 use that.
29548 &lt;End of help on this topic&gt;
29549 </BODY>
29550 </HTML>
29551 ====== h_config_strip_ws_before_send =====
29552 <HTML>
29553 <HEAD>
29554 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
29555 </HEAD>
29556 <BODY>
29557 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
29559 By default, trailing whitespace is not stripped from
29560 a message before sending.  Trailing whitespace should have no effect on an
29561 email message, and in flowed text can aid in delimiting paragraphs.
29562 However, the old behavior of stripping trailing whitespace was in place
29563 to better deal with older clients that couldn't handle certain types of
29564 text encodings.  This feature restores the old behavior
29566 Trailing whitespace is of aid to flowed-text-formatted messages, which are
29567 generated by default but can be turned off via the
29568 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
29569 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
29570 of flowed text.
29572 &lt;End of help on this topic&gt;
29573 </BODY>
29574 </HTML>
29575 ====== h_config_alt_reply_menu =====
29576 <HTML>
29577 <HEAD>
29578 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></TITLE>
29579 </HEAD>
29580 <BODY>
29581 <H1>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></H1>
29583 Note that if this option is enabled, then the option
29584 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
29585 is ignored. See below to understand why.
29587 When you reply to a message, a series of questions are asked that 
29588 determines how your reply will be handled by Alpine. This feature only 
29589 affects the result of the first question you are asked, and its purpose is 
29590 to set values that could override defaults set in Alpine's main 
29591 configuration screen. As a result, this menu allows you to configure even 
29592 more features than you would be able to do without this option. For 
29593 example, this menu always allows you to override or select a <A 
29594 HREF="h_rules_roles">Role</A> if you have defined one, or allows you to 
29595 override your indent string, regardless of if you have enabled 
29596 <A HREF="h_config_prefix_editing"><!--#echo var="FEAT_enable-reply-indent-string-editing"--></A>.
29597 The full list of options can be found below.
29599 Here is an example of how this option works. After you press Reply,
29600 if you see &quot;A Inc Attach&quot; in the menu, it means that 
29601 if you press &quot;A&quot;, then Alpine will include the attachments
29602 of the original message, and the default is not to include them. 
29603 Conversely, if you see &quot;A No Attach&quot; 
29604 then by pressing &quot;A&quot; Alpine will not include
29605 attachments in your reply, and the default is that Alpine will 
29606 include them in your reply. The value that you see when you 
29607 start your reply is controlled by the option
29608 <A HREF="h_config_attach_in_reply">
29609 <!--#echo var="FEAT_include-attachments-in-reply"-->
29610 </A>. If the feature is enabled, then Alpine will display 
29611 &quot;A No Attach&quot; to override the default behavior. You can
29612 toggle between the two values of this option by pressing &quot;A&quot;.
29613 Remember that the value that you see in the menu is the action that will 
29614 be done when you press the associated command.
29616 Below are your options:
29617 <OL>
29618 <LI><B>A</B>: This determines if Alpine will include or not the 
29619 attachments sent to you in the message that you are replying to. The default 
29620 is to use the value of the configuration option 
29621 <A HREF="h_config_attach_in_reply"><!--#echo var="FEAT_include-attachments-in-reply"--></A> and can be overriden by using this command.
29623 <LI><B>H</B>: This command determines if the headers of a message are
29624 included in the body of the message that is being replied to. By default 
29625 Alpine will use the value of the configuration option 
29626 <A HREF="h_config_include_header"><!--#echo var="FEAT_include-header-in-reply"--></A>. 
29627 Observe that by toggling this option to include headers, text will be toggled
29628 to be included by default.
29630 <LI><B>R</B>: Can be used to set a role different from the default.
29632 <LI><B>S</B>: Determines if Alpine will strip the signature from a 
29633 message. The default is to strip the signature when the message is not
29634 viewed in headers mode, and you either have enabled
29635 <A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A> 
29637 <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>.
29639 <LI><B>Ctrl-R</B>: Can be used to edit the 
29640 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>.
29641 </OL>
29643 In order to include the text of the original message in the reply
29644 you either need to press 'y' to include the original text, or 'n' to 
29645 exclude it from the reply. Pressing return will execute the default 
29646 action, which is to include text only if the option
29647 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
29648 is enabled. However, notice that the default is to include text if you edit the 
29649 reply indent string or if you explicitly set through this menu that you
29650 want headers included in the reply message.
29653 &lt;End of help on this topic&gt;
29654 </BODY>
29655 </HTML>
29656 ====== h_config_del_from_dot =====
29657 <HTML>
29658 <HEAD>
29659 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
29660 </HEAD>
29661 <BODY>
29662 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
29664 This feature controls the behavior of the Ctrl-K command in the composer.
29665 If set, ^K will cut from the current cursor position to the end of the line,
29666 rather than cutting the entire line.
29669 &lt;End of help on this topic&gt;
29670 </BODY>
29671 </HTML>
29672 ====== h_config_print_index =====
29673 <HTML>
29674 <HEAD>
29675 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
29676 </HEAD>
29677 <BODY>
29678 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
29680 This feature controls the behavior of the Print command when in the
29681 MESSAGE INDEX screen.  If set, the print command will give you a prompt
29682 asking if you wish to print the message index, or the currently highlighted
29683 message. If not set, the message will be printed.
29686 &lt;End of help on this topic&gt;
29687 </BODY>
29688 </HTML>
29689 ====== h_config_allow_talk =====
29690 <HTML>
29691 <HEAD>
29692 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
29693 </HEAD>
29694 <BODY>
29695 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
29697 UNIX Alpine only.
29699 By default, permission for others to &quot;talk&quot; to your terminal is turned
29700 off when you are running Alpine.  When this feature is set, permission is
29701 instead turned on.  If enabled, you may see unexpected messages in the
29702 middle of your Alpine screen from someone attempting to contact you via the
29703 &quot;talk&quot; program.
29706 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
29707 talk daemon on your system will attempt to print a message on your screen 
29708 when someone else is trying to contact you.  If you wish to see these
29709 messages while you are running Alpine, you should enable this feature.
29712 If you do enable this feature and see a &quot;talk&quot; message, you must 
29713 suspend or quit Alpine before you can respond.
29716 &lt;End of help on this topic&gt;
29717 </BODY>
29718 </HTML>
29719 ====== h_config_send_filter_dflt =====
29720 <HTML>
29721 <HEAD>
29722 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
29723 </HEAD>
29724 <BODY>
29725 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
29726 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
29727 configured, setting this feature will cause
29728 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
29729 instead of unfiltered, the usual default.
29731 <UL>   
29732 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29733 </UL><P>
29734 &lt;End of help on this topic&gt;
29735 </BODY>
29736 </HTML>
29737 ====== h_config_custom_print =====
29738 <HTML>
29739 <HEAD>
29740 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
29741 </HEAD>
29742 <BODY>
29743 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
29745 When this feature is set, the print command will have an additional
29746 subcommand called "C CustomPrint".  If selected, you will have
29747 the opportunity to enter any system print command --instead of being 
29748 restricted to using those that have been previously configured in the 
29749 printer setup menu.
29752 &lt;End of help on this topic&gt;
29753 </BODY>
29754 </HTML>
29755 ====== h_config_enable_dot_files =====
29756 <HTML>
29757 <HEAD>
29758 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
29759 </HEAD>
29760 <BODY>
29761 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
29763 When this feature is set, files beginning with dot (".") will be
29764 visible in the file browser.  For example, you'll be able to select them
29765 when using the browser to add an attachment to a message.
29767 &lt;End of help on this topic&gt;
29768 </BODY>
29769 </HTML>
29770 ====== h_config_enable_dot_folders =====
29771 <HTML>
29772 <HEAD>        
29773 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
29774 </HEAD>
29775 <BODY>
29776 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
29778 When this feature is set, folders beginning with dot (".") may be added
29779 and viewed.
29781 &lt;End of help on this topic&gt;
29782 </BODY>
29783 </HTML>
29784 ====== h_config_ff_between_msgs =====
29785 <HTML>
29786 <HEAD>
29787 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
29788 </HEAD>
29789 <BODY>
29790 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
29792 Setting this feature causes a formfeed to be printed between messages when
29793 printing multiple messages (with Apply Print command).
29795 &lt;End of help on this topic&gt;
29796 </BODY>
29797 </HTML>
29798 ====== h_config_blank_keymenu =====
29799 <HTML>
29800 <HEAD>
29801 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
29802 </HEAD>
29803 <BODY>
29804 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
29806 If this feature is set the command key menu that normally appears on the
29807 bottom two lines of the screen will not usually be there.  Asking for
29808 help with ^G or ? will cause the key menu to appear instead of causing
29809 the help message to come up.  If you want to actually see the help text,
29810 another ^G or ? will show it to you.  After the key menu has popped
29811 up with the help key it will remain there for an O for Other command but
29812 disappear if any other command is typed.
29814 &lt;End of help on this topic&gt;
29815 </BODY>
29816 </HTML>
29817 ====== h_config_enable_mouse =====
29818 <HTML>
29819 <HEAD>
29820 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
29821 </HEAD>
29822 <BODY>
29823 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
29825 This feature controls whether or not an X terminal mouse can be used with
29826 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
29827 being used, the left mouse button on the mouse can be used to select text
29828 or commands.
29829 Clicking on a command at the bottom of the screen will behave as if you had
29830 typed that command.
29831 Clicking on an index line will move the current message highlight to
29832 that line.
29833 Double-clicking on an index line will view the message.
29834 Double-clicking on a link will view the link.
29836 This type of mouse support will also work in some terminal emulators which are
29837 not actually X terminals, but which have extra code to support the xterm
29838 style mouse.
29839 For those emulators you not only need to turn this feature on but you also
29840 have to set the $DISPLAY environment variable even though it isn't needed
29841 for your terminal.
29842 That will cause Alpine to think that it is an xterm and to properly interpret the
29843 escape sequences sent by the mouse.
29845 Note: if this feature is set, the behavior of X terminal cut-and-paste is
29846 also modified.  It is sometimes possible to hold the shift key down while clicking
29847 left or middle mouse buttons for the normal xterm cut/paste operations. 
29848 There is also an Alpine command to toggle this mode on or off.
29849 The command is Ctrl-&#92; (Control-backslash).
29851 &lt;End of help on this topic&gt;
29852 </BODY>
29853 </HTML>
29854 ====== h_config_enable_xterm_newmail =====
29855 <HTML>
29856 <HEAD>        
29857 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
29858 </HEAD>
29859 <BODY>
29860 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
29862 This feature controls whether or not Alpine will attempt to announce new
29863 mail arrival when it is running in an X terminal window and that window
29864 is iconified.  If set, and the $DISPLAY variable indicates that an X
29865 terminal is being used, Alpine will send appropriate escape sequences to
29866 the X terminal to modify the label on Alpine's icon to indicate that new
29867 mail has arrived. Alpine will also modify the Alpine window's title to
29868 indicate new mail.
29869 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
29871 &lt;End of help on this topic&gt;
29872 </BODY></HTML>
29873 ====== h_config_enable_newmail_short_text =====
29874 <HTML>
29875 <HEAD>        
29876 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
29877 </HEAD>
29878 <BODY>
29879 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
29881 This feature controls the text to be displayed in an icon in the event
29882 of a new message arrival.  Normally, the message will
29883 be the one that is displayed on the screen.  This feature shortens the
29884 message to a count of the number of new messages in brackets.  This may be
29885 more useful for those who use the window's title bar in the task bar as a
29886 new mail indicator.  This feature is only useful if the
29887 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
29888 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
29889 feature, this feature is only relevant when run in an xterm environment.
29891 &lt;End of help on this topic&gt;
29892 </BODY></HTML>
29893 ====== h_config_copy_to_to_from =====
29894 <HTML>
29895 <HEAD>
29896 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
29897 </HEAD>
29898 <BODY>
29899 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
29901 This feature affects the From address used when Replying to a message.
29902 It is probably only useful if you have some
29903 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
29904 defined.
29905 When enabled, it checks to see if any of the addresses in the To or Cc
29906 fields of the message you are replying to is one of your addresses.
29907 If it is, and there is only one of them, then that address is used as
29908 the From address in the message you are composing.
29909 In other words, you will be using a From address that is the same
29910 as the To address that was used to get the mail to you in the first place.
29913 If a role is being used and it has a From address defined, that From address will
29914 be used rather than the one derived from this feature.
29917 <UL>   
29918 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29919 </UL><P>
29920 &lt;End of help on this topic&gt;
29921 </BODY>
29922 </HTML>
29923 ====== h_config_prefix_editing =====
29924 <HTML>
29925 <HEAD>
29926 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
29927 </HEAD>
29928 <BODY>
29929 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
29931 This feature affects the Reply command's &quot;Include original message
29932 in Reply?&quot; prompt.  When enabled, it causes the
29933 &quot;Edit Indent String&quot; sub-command to appear which allows 
29934 you to edit the string Alpine would otherwise use to denote included 
29935 text from the message being replied to.<P>
29937 Thus, you can change Alpine's default message quote character (usually
29938 an angle bracket) on a per message basis. So you could change your quoted message to
29939 look, for example, like this:<p>
29941 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
29943 John: I just wanted to say hello and to congratulate you
29944 John: on a job well done!</pre><p>
29946 The configuration option
29947 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29948 may be used to change what appears as the default string to be edited.
29950 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
29951 currently being replied to.
29953 If you change your <!--#echo var="VAR_reply-indent-string"-->
29954 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29955 quoted text will not be flowed
29956 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
29957 when you reply.
29958 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
29959 set to the default value.
29961 <UL>   
29962 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29963 </UL><P>
29964 &lt;End of help on this topic&gt;
29965 </BODY>
29966 </HTML>
29967 ====== h_config_enable_search_and_repl =====
29968 <HTML>
29969 <HEAD>
29970 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
29971 </HEAD>
29972 <BODY>
29973 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
29975 This feature modifies the behavior of Alpine's composer.  Setting this
29976 feature causes Alpine to offer the "^R Replace" subcommand, which
29977 allows you to search and replace text strings in a message you are composing, 
29978 inside the "^W Where is" command.  
29982 To search and replace text, first enter the text to be replaced at the 
29983 "Search: " prompt.  Then, rather than pressing Enter to just search for that
29984 text, press ^R, which turns the prompt into 
29988 Search (to replace): 
29992 and then press Enter.  The cursor will highlight the first occurrence 
29993 of the text string you entered, and the prompt will show: 
29997 Replace "<your text string>" with : 
30001 where <your text string> is what you entered at the previous prompt;
30002 here, enter the replacement text.  To only replace the highlighted 
30003 occurrence, simply press Enter now; to replace all occurrences in the 
30004 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
30005 each replacement.
30009 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
30010 ^X toggles between "Replace All" and "Replace One."
30014 If you previously searched for text in a message, it will be offered for 
30015 re-use as part of the prompt, shown in [ ] brackets.
30018 &lt;End of help on this topic&gt;
30019 </BODY>
30020 </HTML>
30021 ====== h_config_enable_view_attach =====
30022 <HTML>
30023 <HEAD>
30024 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
30025 </HEAD>
30026 <BODY>
30027 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
30029 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30030 Setting this feature causes Alpine to present attachments in boldface.
30031 The first available attachment is displayed in inverse.  This is the
30032 "selected" attachment.  Pressing RETURN will cause Alpine to display
30033 the selected attachment.  Use the arrow keys to change which of the
30034 attachments displayed in boldface is the current selection.
30038 Speaking of arrow keys, the Up and Down Arrows will select the next
30039 and previous attachments if one is available on the screen for selection.
30040 Otherwise, they will simply adjust the viewed text one line up or down.
30044 Similarly, when selectable items are present in a message, the Ctrl-F key
30045 can be used to select the next item in the message independent of which
30046 portion of the viewed message is currently displayed. The Ctrl-B key can
30047 be used to select the previous item in the same way. 
30048 <P> 
30049 &lt;End of help on this topic&gt;
30050 </BODY>
30051 </HTML>
30052 ====== h_config_enable_y_print =====
30053 <HTML>
30054 <HEAD>
30055 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
30056 </HEAD>
30057 <BODY>
30058 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
30060 This feature modifies the behavior of Alpine's Print command.
30062 By default, Alpine's print command is available by pressing the "%" key.  
30063 (This command is a substantial change from Pine versions before 4.00 -- 
30064 where the print command was "Y" -- based on numerous complaints about 
30065 printing being invoked inadvertently, since Y also means "Yes.")  
30069 This feature is supplied to mitigate any disruption or anxiety users 
30070 might feel as a result of this change.  
30074 Enabling this feature will cause Alpine to recognize both the old
30075 command, "Y" for Prynt, as well the new "%" method for invoking
30076 printing.  Note, key menu labels are not changed as a result of
30077 enabling this feature.
30081 &lt;End of help on this topic&gt;
30082 </BODY>
30083 </HTML>
30084 ====== h_config_enable_lessthan_exit =====
30085 <HTML>
30086 <HEAD>
30087 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
30088 </HEAD>
30089 <BODY>
30090 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
30092 If this feature is set, then on screens where there is an Exit command
30093 but no < command, the < key will perform the same function as the Exit
30094 command.
30095 This feature is set by default.
30097 &lt;End of help on this topic&gt;
30098 </BODY>
30099 </HTML>
30100 ====== h_config_enable_view_url =====
30101 <HTML>
30102 <HEAD>
30103 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
30104 </HEAD>
30105 <BODY>
30106 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
30107 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30108 When this feature is set (the default) Alpine will select possible URLs from the
30109 displayed text and display them in boldface for selection.
30111 The first available URL is displayed in inverse.  This is the
30112 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
30113 the selected URL via either built-in means as with mailto:, imap:,
30114 news:, and nntp:, or via an external application as defined
30115 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30116 variable.
30118 Use the arrow keys to change which of the URLs displayed in boldface
30119 is the current selection.
30121 Speaking of arrow keys, the Up and Down Arrows will select the next
30122 and previous URL if one is available on the screen for selection (unless 
30123 you have set the feature 
30124 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
30125 Otherwise, they will simply adjust the viewed text one line up or down.
30127 Similarly, when selectable items are present in a message, the Ctrl-F
30128 key can be used to select the next item in the message independent
30129 of which portion of the viewed message is currently displayed. The
30130 Ctrl-B key can be used to select the previous item in the same way.
30132 <UL>   
30133 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30134 </UL><P>
30135 &lt;End of help on this topic&gt;
30136 </BODY>
30137 </HTML>
30138 ====== h_config_enable_view_web_host =====
30139 <HTML>
30140 <HEAD>
30141 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
30142 </HEAD>
30143 <BODY>
30144 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
30146 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30147 When this feature is set (the default) Alpine will select possible web hostnames
30148 from the displayed text and display them in boldface for selection.  
30149 This can be useful when you receive messages referencing World Wide Web 
30150 sites without the use of complete URLs; for example, specifying only 
30151 &quot;www.patches.freeiz.com/alpine/&quot; (which will <B>not</B> become a 
30152 selectable 
30153 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
30154 rather than explicitly
30155 &quot;http://www.patches.freeiz.com/alpine/&quot;.  
30157 The first available hostname is displayed in inverse.  This is the
30158 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
30159 the selected hostname via an external application as defined
30160 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30161 variable.
30163 Use the arrow keys (unless you have set the feature 
30164 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30165 to change which of the hostnames displayed in
30166 boldface is the current selection.
30168 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30169 key can be used to select the next web hostname 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 web hostnames 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_addresses =====
30180 <HTML>
30181 <HEAD>
30182 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
30183 </HEAD>
30184 <BODY>
30185 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
30187 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30188 Setting this feature causes Alpine to select possible email addresses
30189 from the displayed text and display them in boldface for selection.  
30192 The first available email address is displayed in inverse.  This is the
30193 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
30194 the message composition screen with the To: field filled in with the
30195 selected address.
30197 Use the arrow keys (unless you have set the feature 
30198 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30199 to change which of the hostnames displayed in
30200 boldface is the current selection.
30202 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30203 key can be used to select the next web hostname in the message independent
30204 of which portion of the viewed message is currently displayed. The
30205 Ctrl-B key can be used to select the previous web hostnames in the same way.
30207 <UL>   
30208 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30209 </UL><P>
30210 &lt;End of help on this topic&gt;
30211 </BODY>
30212 </HTML>
30213 ====== h_config_enable_view_arrows =====
30214 <HTML>
30215 <HEAD>
30216 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
30217 </HEAD>
30218 <BODY>
30219 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
30221 This feature modifies Up and Down arrow key behavior in Alpine's
30222 MESSAGE TEXT screen when selectable Attachments, URL's, or
30223 web-hostnames are presented. Alpine's usual behavior is to move to
30224 the next or previous selectable item if currently displayed or
30225 simply to adjust the screen view by one line.
30229 Setting this feature causes the UP and Down arrow key to behave as
30230 if no selectable items were present in the message.
30234 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
30235 item) functionality is unchanged.
30238 &lt;End of help on this topic&gt;
30239 </BODY>
30240 <HTML>
30241 ====== h_config_quell_charset_warning =====
30242 <HTML>
30243 <HEAD>
30244 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
30245 </HEAD>
30246 <BODY>
30247 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
30249 By default, if the message you are viewing contains characters that are
30250 not representable in your
30251 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
30252 then Alpine will
30253 add a warning to the start of the displayed text.
30254 If this option is set, then that editorial message will be suppressed.
30256 Setting this feature also suppresses the comment about the character set
30257 in header lines.
30258 For example, when viewing a message you might see
30260 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
30262 in the From header if your Character-Set is something other than ISO-8859-2.
30263 If you set this feature, the comment about the character set will
30264 no longer be there.
30266 &lt;End of help on this topic&gt;
30267 </BODY>
30268 </HTML>
30269 ====== h_config_quell_host_after_url =====
30270 <HTML>
30271 <HEAD>
30272 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
30273 </HEAD>
30274 <BODY>
30275 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
30277 By default, links in HTML text are displayed with the host the link
30278 references appended, within square brackets, to the link text.  Alpine
30279 does this to help indicate where a link will take you, particularly when
30280 the link text might suggest a different destination.
30283 Setting this feature will prevent the server name from being appended
30284 to the displayed text.
30287 &lt;End of help on this topic&gt;
30288 </BODY>
30289 </HTML>
30290 ====== h_config_prefer_plain_text =====
30291 <HTML>
30292 <HEAD>
30293 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
30294 </HEAD>
30295 <BODY>
30296 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
30298 A message being viewed may contain alternate versions of the same content.
30299 Those alternate versions are supposed to be ordered by the sending software such that the
30300 first alternative is the least preferred and the last alternative is the
30301 most preferred. Alpine will normally display the most-preferred version that
30302 it knows how to display. This is most often encountered where the two
30303 alternate versions are a plain text version and an HTML version, with the
30304 HTML version listed last as the most preferred.
30306 If this option is set, then any plain text version will be preferred to
30307 all other versions.
30309 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
30310 which will temporarily change the sense of this option.
30311 If this option is set you will first see the plain text version of a
30312 message.
30313 If you then type the &quot;A&quot; command, you will see the most preferred version,
30314 most likely HTML, instead.
30315 Typing the &quot;A&quot; command a second time will switch it back.
30316 Alternatively, if the present option is not set you will originally see
30317 the most preferred version of the message and typing &quot;A&quot; will switch to
30318 the plain text version.
30320 &lt;End of help on this topic&gt;
30321 </BODY>
30322 </HTML>
30323 ====== h_config_pass_control =====
30324 <HTML>
30325 <HEAD>
30326 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
30327 </HEAD>
30328 <BODY>
30329 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
30331 It is probably not useful to set this option.
30332 This is a legacy option left behind &quot;just in case&quot;.
30333 Multi-byte characters that have an octet that has the same
30334 value as a control character are permitted through whether or not
30335 this option is turned on.
30337 This feature controls how certain characters contained in messages are
30338 displayed.
30339 If set, all characters in a message will be sent to the
30340 screen. Normally, control characters are displayed as shown below to
30341 avoid a garbled screen and to 
30342 avoid inadvertently changing terminal setup parameters.
30343 Control characters are usually displayed as two character sequences like
30344 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
30345 for Control-C,
30346 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
30347 for ESCAPE,
30348 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
30349 for DELETE, and
30350 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
30351 for the character with value 133 (0x85).
30352 (The DEL character is displayed as ^?, regular control characters are displayed
30353 as the character ^ followed by the character obtained by adding the
30354 five low-order bits of the character to 0x40, and the C1
30355 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
30356 character obtained by adding the
30357 five low-order bits of the character to 0x40.)
30358 Sometimes, in cases where changing a single control character into a
30359 two-character sequence would confuse Alpine's display routines,
30360 a question mark is substituted for the control character.
30362 If you wish to filter out regular control characters but pass the
30363 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30364 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.
30366 &lt;End of help on this topic&gt;
30367 </BODY>
30368 </HTML>
30369 ====== h_config_pass_c1_control =====
30370 <HTML>
30371 <HEAD>
30372 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
30373 </HEAD>
30374 <BODY>
30375 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
30377 It is probably not useful to set this option.
30378 This is a legacy option left behind &quot;just in case&quot;.
30379 Multi-byte characters that have an octet that has the same
30380 value as a control character are permitted through whether or not
30381 this option is turned on.
30383 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30384 is set, then this feature has no effect.
30385 However, if you wish to filter out regular control characters but pass the
30386 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30387 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30388 unset and set this feature.
30390 &lt;End of help on this topic&gt;
30391 </BODY>
30392 </HTML>
30393 ====== h_config_fcc_on_bounce =====
30394 <HTML>
30395 <HEAD>
30396 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
30397 </HEAD>
30398 <BODY>
30399 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
30401 This feature controls an aspect of Alpine's behavior when bouncing a
30402 message. If set, normal FCC ("File Carbon Copy") processing will be
30403 done, just as if you had composed a message to the address you are
30404 bouncing to.  If not set, no FCC of the message will be saved. 
30406 &lt;End of help on this topic&gt;
30407 </BODY>
30408 </HTML>
30409 ====== h_config_show_cursor =====
30410 <HTML>
30411 <HEAD>
30412 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
30413 </HEAD>
30414 <BODY>
30415 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
30417 This feature controls an aspect of Alpine's displays.  If set, the system
30418 cursor will move to convenient locations in the displays.  For example,
30419 to the beginning of the status field of the highlighted index line, or
30420 to the highlighted word after a successful WhereIs command.  It is intended
30421 to draw your attention to an "interesting" spot on the screen.
30423 &lt;End of help on this topic&gt;
30424 </BODY>
30425 </HTML>
30426 ====== h_config_sort_fcc_alpha =====
30427 <HTML>
30428 <HEAD>
30429 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
30430 </HEAD>
30431 <BODY>
30432 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
30434 This feature controls an aspect of Alpine's FOLDER LIST screen.
30435 If set, the default Fcc folder will be sorted alphabetically with the other
30436 folders instead of appearing right after the INBOX.
30438 &lt;End of help on this topic&gt;
30439 </BODY>
30440 </HTML>
30441 ====== h_config_sort_save_alpha =====
30442 <HTML>
30443 <HEAD>
30444 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
30445 </HEAD>
30446 <BODY>
30447 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
30449 This feature controls an aspect of Alpine's FOLDER LIST screen.
30450 If set, the default save folder will be sorted alphabetically with the other
30451 folders instead of appearing right after the INBOX (and default FCC folder).
30453 &lt;End of help on this topic&gt;
30454 </BODY>
30455 </HTML>
30456 ====== h_config_single_list =====
30457 <HTML>
30458 <HEAD>
30459 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
30460 </HEAD>
30461 <BODY>
30462 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
30464 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30465 the folders will be listed one per line instead of several per line
30466 in the FOLDER LIST display.
30468 &lt;End of help on this topic&gt;
30469 </BODY>
30470 </HTML>
30471 ====== h_config_vertical_list =====
30472 <HTML>
30473 <HEAD>
30474 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
30475 </HEAD>
30476 <BODY>
30477 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
30479 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30480 the folders will be listed alphabetically down the columns rather
30481 than across the columns as is the default.
30483 &lt;End of help on this topic&gt;
30484 </BODY>
30485 </HTML>
30486 ====== h_config_verbose_post =====
30487 <HTML>
30488 <HEAD>
30489 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
30490 </HEAD>
30491 <BODY>
30492 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
30493 This feature controls an aspect of Alpine's message sending.  When enabled,
30494 Alpine will send a VERB (i.e., VERBose) command early in the posting process
30495 intended to cause the SMTP server to provide a more detailed account of
30496 the transaction.  This feature is typically only useful to system
30497 administrators and other support personel as an aid in troublshooting
30498 problems.
30500 Note, this feature relies on a specific capability of the system's mail
30501 transport agent or configured 
30502 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
30503 It is possible that this
30504 feature will cause problems for some tranport agents, and may result in
30505 sending failure.  In addition, as the verbose output comes from the mail
30506 transport agent, it is likely to vary from one system to another. 
30507 <P><UL>
30508 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30509 </UL><P>
30510 &lt;End of help on this topic&gt;
30511 </BODY>
30512 </HTML>
30513 ====== h_config_auto_reply_to =====
30514 <HTML>
30515 <HEAD>
30516 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
30517 </HEAD>
30518 <BODY>
30519 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
30521 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
30522 will not prompt when a message being replied to contains a "Reply-To:"
30523 header value, but will simply use its value (as opposed to using the
30524 "From:" field's value).
30528 Note: Using the "Reply-To:" address is usually the preferred behavior,
30529 however, some mailing list managers choose to place the list's address in
30530 the "Reply-To:" field of any message sent out to the list.  In such
30531 cases, this feature makes it all too easy for personal replies to be
30532 inadvertently sent to the entire mail list, so be careful! 
30534 &lt;End of help on this topic&gt;
30535 </BODY>
30536 </HTML>
30537 ====== h_config_del_skips_del =====
30538 <HTML>
30539 <HEAD>
30540 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
30541 </HEAD>
30542 <BODY>
30543 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
30545 This feature controls an aspect of Alpine's Delete command.  If set, this
30546 feature will cause the Delete command to advance past following messages that
30547 are marked deleted.  In other words, pressing "D" will both mark the
30548 current message deleted and advance to the next message that is not marked
30549 deleted.
30550 This feature is set by default.
30552 &lt;End of help on this topic&gt;
30553 </BODY></HTML>
30554 ====== h_config_expunge_manually =====
30555 <HTML>
30556 <HEAD>
30557 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
30558 </HEAD>
30559 <BODY>
30560 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
30562 Normally, when you close a folder that contains deleted messages you are
30563 asked if you want to expunge those messages from the folder permanently.
30564 If this feature is set, you won't be asked and the deleted messages will
30565 remain in the folder.
30566 If you choose to set this feature you will have to expunge the
30567 messages manually using the eXpunge command, which you can use while
30568 in the MESSAGE INDEX screen.
30569 If you do not expunge deleted messages the size of your
30570 folder will continue to increase until you are out of disk space.
30572 <UL>   
30573 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30574 </UL><P>
30575 &lt;End of help on this topic&gt;
30576 </BODY>
30577 </HTML>
30578 ====== h_config_auto_expunge =====
30579 <HTML>
30580 <HEAD>
30581 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
30582 </HEAD>
30583 <BODY>
30584 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
30586 This features controls an aspect of Alpine's eXpunge command.  If set, you
30587 will <B>not</B> be prompted to confirm your intent before the expunge takes 
30588 place.
30589 Actually, this is only true for the INBOX folder and for folders in the
30590 Incoming Folders collection. See the feature
30591 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
30593 <UL>   
30594 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30595 </UL><P>
30596 &lt;End of help on this topic&gt;
30597 </BODY>
30598 </HTML>
30599 ====== h_config_full_auto_expunge =====
30600 <HTML>
30601 <HEAD>
30602 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
30603 </HEAD>
30604 <BODY>
30605 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
30607 This features controls an aspect of Alpine's eXpunge command.  If set, you
30608 will <B>not</B> be prompted to confirm your intent before the expunge 
30609 takes place.  This feature sets this behavior for all folders, unlike the
30610 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
30611 feature that works only for incoming folders.
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_read_msgs =====
30620 <HTML>
30621 <HEAD>
30622 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
30623 </HEAD>
30624 <BODY>
30625 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
30626 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
30627 and the 
30628 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
30629 option is also set, then Alpine will
30630 automatically transfer all read messages to the designated folder and mark
30631 them as deleted in the INBOX.  Messages in the INBOX marked with an 
30632 &quot;N&quot; (meaning New, or unseen) are not affected.
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_auto_fcc_only =====
30641 <HTML>
30642 <HEAD>
30643 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
30644 </HEAD>
30645 <BODY>
30646 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
30647 This features controls an aspect of Alpine's composer.
30648 The only time this feature will be used is if you attempt to send mail
30649 that has no recipients but does have an Fcc.
30650 Normally, Alpine will ask if you really mean to copy the message only to
30651 the Fcc.
30652 That is, it asks if you really meant to have no recipients.
30653 If this feature is set, you
30654 will <B>not</B> be prompted to confirm your intent to make only a copy
30655 of a message with no recipients.
30657 This feature is closely related to
30658 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
30659 The difference between this feature and that feature is that this feature
30660 considers a Bcc to be a recipient while that feature will ask for confirmation
30661 even if there is a Bcc when there is no To, Cc, or Newsgroup.
30662 The default values also differ. This feature defaults to asking the question
30663 and you have to turn it off.
30664 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
30665 unless you turn it on.
30668 <UL>   
30669 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30670 </UL><P>
30671 &lt;End of help on this topic&gt;
30672 </BODY>
30673 </HTML>
30674 ====== h_config_mark_fcc_seen =====
30675 <HTML>
30676 <HEAD>
30677 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
30678 </HEAD>
30679 <BODY>
30680 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
30682 This features controls the way Fccs (File carbon copies) are
30683 made of the messages you send.
30686 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
30687 copy will be marked as Unseen.
30688 When you look at the folder it was saved in the message will appear to
30689 be a New message until you read it.
30690 When this feature is enabled, the message will be marked as having
30691 been Seen.
30694 <UL>   
30695 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30696 </UL><P>
30697 &lt;End of help on this topic&gt;
30698 </BODY>
30699 </HTML>
30700 ====== h_config_no_fcc_attach =====
30701 <HTML>
30702 <HEAD>
30703 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
30704 </HEAD>
30705 <BODY>
30706 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
30708 This features controls the way Fcc's (File carbon copies) are
30709 made of the messages you send.
30712 Normally, Alpine saves an exact copy of your message as it was sent.
30713 When this feature is enabled, the &quot;body&quot; of the message
30714 you send (the text you type in the composer) is preserved in the 
30715 copy as before, however all attachments are replaced with text
30716 explaining what had been sent rather than the attachments themselves.
30719 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
30720 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
30721 allows you to interactively set whether or not attachments are saved
30722 to the Fcc'd copy.
30725 <UL>   
30726 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30727 </UL><P>
30728 &lt;End of help on this topic&gt;
30729 </BODY>
30730 </HTML>
30731 ====== h_config_read_in_newsrc_order =====
30732 <HTML>
30733 <HEAD>
30734 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
30735 </HEAD>
30736 <BODY>
30737 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
30739 This feature controls the order in which newsgroups will be presented.  If
30740 set, they will be presented in the same order as they occur in your 
30741 <!--chtml if pinemode="os_windows"-->
30742 &quot;NEWSRC&quot;
30743 <!--chtml else-->
30744 &quot;.newsrc&quot;
30745 <!--chtml endif-->
30746 file (the default location of which can be changed with the 
30747 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
30749 If not set, the newsgroups will be presented in alphabetical order.
30751 <UL>   
30752 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30753 </UL><P>
30754 &lt;End of help on this topic&gt;
30755 </BODY>
30756 </HTML>
30757 ====== h_config_quell_tz_comment =====
30758 <HTML>
30759 <HEAD>
30760 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
30761 </HEAD>
30762 <BODY>
30763 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
30765 Normally, when Alpine generates a Date header for outgoing mail,
30766 it will try to include the symbolic timezone at the end of the
30767 header inside parentheses.
30768 The symbolic timezone is often three characters long, but on
30769 some operating systems, it may be longer.
30770 Apparently there are some SMTP servers in the world that will reject an
30771 incoming message if it has a Date header longer than about 80 characters.
30772 If this feature is set, the symbolic timezone normally generated by
30773 Alpine will not be included.
30774 You probably don't need to worry about this feature unless you run into
30775 the problem described above.
30778 &lt;End of help on this topic&gt;
30779 </BODY>
30780 </HTML>
30781 ====== h_config_post_wo_validation =====
30782 <HTML>
30783 <HEAD>
30784 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
30785 </HEAD>
30786 <BODY>
30787 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
30789 This feature controls whether the NNTP server is queried as newsgroups
30790 are entered for posting.  Validation over slow links (e.g. dialup using
30791 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
30793 &lt;End of help on this topic&gt;
30794 </BODY>
30795 </HTML>
30796 ====== h_config_send_wo_confirm =====
30797 <HTML>
30798 <HEAD>
30799 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
30800 </HEAD>
30801 <BODY>
30802 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
30804 By default, when you send or post a message you will be asked to confirm
30805 with a question that looks something like:
30808 <CENTER><SAMP>Send message?</SAMP></CENTER>
30811 If this feature is set, you
30812 will <B>not</B> be prompted to confirm your intent to send
30813 and your message will be sent.
30815 If this feature is set it disables some possibilities and renders some
30816 other features meaningless.
30817 You will not be able to use
30818 <A HREF="h_config_sending_filter">Sending Filters</A>,
30819 Verbose sending mode,
30820 <A HREF="h_config_compose_bg_post">Background Sending</A>,
30821 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
30822 or ^V to turn off the generation of flowed text for this message.
30823 These options are normally available as suboptions in the Send prompt, but
30824 with no Send prompt the options are gone.
30827 A somewhat related feature is
30828 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
30829 which may be used to eliminate the extra confirmation
30830 question when posting to a newsgroup.
30832 <UL>   
30833 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30834 </UL><P>
30835 &lt;End of help on this topic&gt;
30836 </BODY>
30837 </HTML>
30838 ====== h_config_quell_filtering_done_message =====
30839 <HTML>
30840 <HEAD>
30841 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
30842 </HEAD>
30843 <BODY>
30844 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
30846 If you use Filter Rules that move messages or set status of messages
30847 you sometimes see a message from Alpine that looks like
30850 <CENTER><SAMP>filtering done</SAMP></CENTER>
30853 If this feature is set, this message will be suppressed.
30854 If the feature
30855 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
30856 is set then this message will be suppressed regardless.
30859 <UL>   
30860 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30861 </UL><P>
30862 &lt;End of help on this topic&gt;
30863 </BODY>
30864 </HTML>
30865 ====== h_config_quell_filtering_messages =====
30866 <HTML>
30867 <HEAD>
30868 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
30869 </HEAD>
30870 <BODY>
30871 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
30873 If you use Filter Rules that move messages or set status of messages
30874 you sometimes see messages from Alpine that look like
30877 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
30883 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
30889 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
30892 If this feature is set, these messages will be suppressed.
30893 The feature
30894 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
30895 is related.
30898 <UL>   
30899 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30900 </UL><P>
30901 &lt;End of help on this topic&gt;
30902 </BODY>
30903 </HTML>
30904 ====== h_config_quell_post_prompt =====
30905 <HTML>
30906 <HEAD>
30907 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
30908 </HEAD>
30909 <BODY>
30910 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
30912 By default, when you post a message to a newsgroup you are asked to confirm
30913 that you want to post with the question
30916 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
30919 If this feature is set, you
30920 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
30921 and your message will be posted.
30924 <UL>   
30925 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30926 </UL><P>
30927 &lt;End of help on this topic&gt;
30928 </BODY>
30929 </HTML>
30930 ====== h_config_check_mail_onquit =====
30931 <HTML>
30932 <HEAD>
30933 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
30934 </HEAD>
30935 <BODY>
30936 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
30938 If this feature is set, Alpine will check for new mail after you give the
30939 Quit command.
30940 If new mail has arrived since the previous check, you will be notified
30941 and given the choice of quitting or not quitting.
30943 <UL>   
30944 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30945 </UL><P>
30946 &lt;End of help on this topic&gt;
30947 </BODY>
30948 </HTML>
30949 ====== h_config_inbox_no_confirm =====
30950 <HTML>
30951 <HEAD>
30952 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
30953 </HEAD>
30954 <BODY>
30955 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
30957 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
30958 command and there are no more folders or newsgroups to visit, you are asked
30959 if you want to return to the INBOX.
30960 If this feature is set you will not be asked.
30961 It will be assumed that you do want to return to the INBOX.
30963 <UL>   
30964 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30965 </UL><P>
30966 &lt;End of help on this topic&gt;
30967 </BODY>
30968 </HTML>
30969 ====== h_config_dates_to_local =====
30970 <HTML>
30971 <HEAD>
30972 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
30973 </HEAD>
30974 <BODY>
30975 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
30977 Normally, the message dates that you see in the
30978 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
30979 For example, if a message was sent to you from a few timezones to the east
30980 it might appear that it was sent from the future;
30981 or if it was sent from somewhere to the west it might appear
30982 as if it is from yesterday even though it was sent only a few minutes ago.
30983 If this feature is set an attempt will be made to convert the dates
30984 to your local timezone to be displayed.
30986 Note that this does not affect the results of Select by Date or of
30987 anything else other than these displayed dates.
30988 When viewing the message you may look at the original unconverted value of the Date
30989 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
30991 <UL>   
30992 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30993 </UL><P>
30994 &lt;End of help on this topic&gt;
30995 </BODY>
30996 </HTML>
30997 ====== h_config_tab_no_prompt =====
30998 <HTML>
30999 <HEAD>
31000 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
31001 </HEAD>
31002 <BODY>
31003 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
31005 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
31006 command and there is a problem checking a folder, you are asked
31007 whether you want to continue with the search in the following folder or not.
31008 This question gives you a chance to stop the NextNew processing.
31009 (The checking problem might be caused by the fact that the folder does not
31010 exist, or by an authentication problem, or by a server problem
31011 of some sort.)
31014 If this feature is set you will not be asked.
31015 It will be assumed that you do want to continue.
31017 <UL>   
31018 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31019 </UL><P>
31020 &lt;End of help on this topic&gt;
31021 </BODY>
31022 </HTML>
31023 ====== h_config_input_history =====
31024 <HTML>
31025 <HEAD>
31026 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
31027 </HEAD>
31028 <BODY>
31029 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
31031 Many of the prompts that ask for input in the status line near the
31032 bottom of the screen will respond to Up Arrow and Down Arrow
31033 with the history of previous entries.
31034 For example, in the MESSAGE INDEX screen when you use the WhereIs
31035 command the text you entered will be remembered and can be recalled
31036 by using the Up Arrow key.
31037 Another example, when saving a message the folders saved to will
31038 be remembered and can be recalled using the arrow keys.
31040 In the Save prompt, some users prefer that the Up and Down arrow keys
31041 be used for the Previous Collection and Next Collection commands
31042 instead of for a history of previous saves.
31043 If this option is set the Up and Down arrow keys will become synonyms for the
31044 Previous Collection and Next Collection (^P and ^N) commands in the
31045 prompt for the name of a folder to Save to or in the prompt for the
31046 name of a folder to GoTo.
31047 When this feature is not set (the default), ^P and ^N will change the
31048 collection and the arrow keys will show the history.
31050 <UL>   
31051 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31052 </UL><P>
31053 &lt;End of help on this topic&gt;
31054 </BODY>
31055 </HTML>
31056 ====== h_config_confirm_role =====
31057 <HTML>
31058 <HEAD>
31059 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
31060 </HEAD>
31061 <BODY>
31062 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
31064 If you have roles, when you Reply to or Forward a message, or Compose
31065 a new message, Alpine
31066 will search through your roles for one that matches.
31067 Normally, if no matches are found you will be placed into the composer
31068 with no opportunity to select a role.
31069 If this feature is set, then you will be asked to confirm that you don't
31070 want a role.
31071 This will give you the opportunity to select a role (with the ^T command).
31072 If you confirm no role with a Return, you will be placed in
31073 the composer with no role.
31074 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
31075 These behave the same as if you pressed the Return.
31076 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
31077 match what you might type if there was a role match.)
31079 If you are using the alternate form of the Compose command called
31080 &quot;Role&quot;, then all of your roles will be available to you,
31081 independent of the value of this feauture and of the values set for all of
31082 Reply Use, Forward Use, and Compose Use.
31084 <UL>   
31085 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31086 </UL><P>
31087 &lt;End of help on this topic&gt;
31088 </BODY>
31089 </HTML>
31090 ====== h_config_news_cross_deletes =====
31091 <HTML>
31092 <HEAD>
31093 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
31094 </HEAD>
31095 <BODY>
31096 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
31098 This feature controls what Alpine does when you delete a message in a
31099 newsgroup that appears in more than one newsgroup.  Such a message
31100 is sometimes termed a &quot;crossposting&quot; in that it was posted
31101 across several newsgroups.
31104 Alpine's default behavior when you delete such a message is to remove
31105 only the copy in the current newsgroup from view when you use the
31106 &quot;Exclude&quot; command or the next time you visit the newsgroup.
31109 Enabling this feature causes Alpine to remove every occurrence of the
31110 message from all newsgroups it appears in and to which you are
31111 subscribed.
31114 NOTE: As currently implemented, enabling this feature may increase the
31115 time it takes the Expunge command and newsgroup closing to complete.
31118 <UL>   
31119 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31120 </UL><P>
31121 &lt;End of help on this topic&gt;
31122 </BODY>
31123 </HTML>
31124 ====== h_config_news_catchup =====
31125 <HTML>
31126 <HEAD>
31127 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
31128 </HEAD>
31129 <BODY>
31130 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
31132 This feature controls what Alpine does as it closes a newsgroup.
31133 When set, Alpine will offer to delete all messages from the newsgroup
31134 as you are quitting Alpine or opening a new folder.
31137 This feature is useful if you typically read all the interesting messages
31138 in a newsgroup each time you open it.  This feature saves you from
31139 having to delete each message in a newsgroup as you read it or from
31140 selecting all the messages and doing an
31141 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
31142 move on to the next folder or newsgroup.
31145 <UL>   
31146 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31147 </UL><P>
31148 &lt;End of help on this topic&gt;
31149 </BODY>
31150 </HTML>
31151 ====== h_config_next_thrd_wo_confirm =====
31152 <HTML>
31153 <HEAD>
31154 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
31155 </HEAD>
31156 <BODY>
31157 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
31159 This feature controls an aspect of Alpine's Next and Prev commands in
31160 the case where you are using one of the
31161 &quot;separate-index-screen&quot; styles for the configuration option
31162 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
31163 and currently have the folder sorted by a Threaded or OrderedSubject sort.
31164 When you are Viewing a particular thread you have a
31165 MESSAGE INDEX of only the messages in that thread.
31166 If you press the Next command with the last message in the thread highlighted
31167 you will normally be asked if you want to &quot;View next thread?&quot;,
31168 assuming there is a next thread to view.
31169 If this feature is set it will be assumed that you always want to view the
31170 next thread and you won't be asked to confirm that.
31171 Similarly, if the first message of the thread is highlighted and you
31172 press the Prev command, this feature will prevent the question
31173 &quot;View previous thread&quot;.
31175 This feature only has an effect in the MESSAGE INDEX screen.
31176 If you then view a particular message from that screen and press the
31177 Next command, you will be sent to the next thread without being asked,
31178 independent of the setting of this feature.
31180 The feature
31181 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
31183 &lt;End of help on this topic&gt;
31184 </BODY>
31185 </HTML>
31186 ====== h_config_kw_braces =====
31187 <HTML>
31188 <HEAD>
31189 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
31190 </HEAD>
31191 <BODY>
31192 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
31194 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
31195 TEXT screens.
31196 If you have modified the
31197 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31198 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
31199 are used to display keywords or their initials along with the Subject; then
31200 this option may be used to modify the resulting display slightly.
31201 By default, the keywords or initials displayed for these tokens will be
31202 surrounded with curly braces ({ and }) and a trailing space.
31203 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
31204 a message, the &quot;SUBJKEY&quot; token will normally look like
31206 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
31208 and the SUBJKEYINIT token would look like
31210 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
31212 The default character before the keywords is the left brace ({) and the
31213 default after the keywords is the right brace followed by a space (} ).
31215 This option allows you to change that.
31216 You should set it to two values separated by a space.
31217 The values may be quoted if they include space characters.
31218 So, for example, the default value could be specified explicitly by setting this
31219 option to
31221 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
31223 The first part wouldn't need to be quoted (but it doesn't hurt).
31224 The second part does need the quotes because it includes a space character.
31225 If you wanted to change the braces to brackets you could use
31227 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
31229 Inside the quotes you can use backslash quote to mean quote, so
31231 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
31233 would produce
31235 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
31237 It is also possible to color keywords in the index using the
31238 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
31240 It is not possible to change the fact that a space character is used to
31241 separate the keywords if more than one keyword is set for a message.
31242 It is also not possible to change the fact that there are no separators
31243 between the keyword initials if more than one keyword is set.
31245 &lt;End of help on this topic&gt;
31246 </BODY>
31247 </HTML>
31248 ====== h_config_opening_sep =====
31249 <HTML>
31250 <HEAD>
31251 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
31252 </HEAD>
31253 <BODY>
31254 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
31256 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
31257 With some setups the text of the subject is followed
31258 by the opening text of the message if there is any room available in the index line.
31259 If you have configured your
31260 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31261 to include one of the Subject tokens that causes this behavior
31262 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
31263 to modify what is displayed slightly.
31264 By default, the Subject is separated from the opening text of the message by
31265 the three characters space dash space;
31267 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
31269 Use this option to set it to something different.
31270 The value must be quoted if it includes any space characters.
31271 For example, the default value could be specified explicitly by setting this
31272 option to
31274 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
31276 &lt;End of help on this topic&gt;
31277 </BODY>
31278 </HTML>
31279 ====== h_config_select_wo_confirm =====
31280 <HTML>
31281 <HEAD>
31282 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
31283 </HEAD>
31284 <BODY>
31285 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
31287 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
31288 These commands all take text input to specify the name of the folder or
31289 file to be used, but allow you to press ^T for a list of possible names.
31290 If set, the selected name will be used immediately, without further
31291 opportunity to confirm or edit the name.
31293 Some related help topics are
31294 <UL>
31295 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
31296 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
31297 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
31298 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
31299 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
31300 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
31301 </UL>
31303 &lt;End of help on this topic&gt;
31304 </BODY>
31305 </HTML>
31306 ====== h_config_save_part_wo_confirm =====
31307 <HTML>
31308 <HEAD>
31309 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
31310 </HEAD>
31311 <BODY>
31312 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
31314 This feature controls an aspect of Alpine's Save command.
31315 By default, when you Save a message that has some deleted parts, you will
31316 be asked to confirm that you want to Save with a prompt that looks like:
31318 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
31320 If this feature is set, you will not be asked.
31322 &lt;End of help on this topic&gt;
31323 </BODY>
31324 </HTML>
31325 ====== h_config_use_resentto =====
31326 <HTML>
31327 <HEAD>
31328 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
31329 </HEAD>
31330 <BODY>
31331 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
31333 This feature is turned off by default because turning it on causes problems
31334 with some deficient IMAP servers.
31335 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
31336 <A HREF="h_rule_patterns">Pattern</A>
31337 contains a To header pattern and this feature is turned on,
31338 then a check is made in the message to see
31339 if a Resent-To header is present, and that is used instead of the To header.
31340 If this feature is not turned on, then the regular To header will always
31341 be used.
31344 &lt;End of help on this topic&gt;
31345 </BODY>
31346 </HTML>
31347 ====== h_config_use_reg_start_for_stayopen =====
31348 <HTML>
31349 <HEAD>
31350 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
31351 </HEAD>
31352 <BODY>
31353 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
31355 This feature affects which message is selected as the current message
31356 when you enter a
31357 <A HREF="h_config_permlocked">Stay Open</A> folder.
31359 Normally, the starting position for an incoming folder (which most Stay Open
31360 folders will likely be) is controlled by the
31361 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
31362 However, if a folder is a Stay Open folder, when you re-enter the folder
31363 after the first time the current message will be the same as it was when
31364 you left the folder.
31365 An exception is made if you use the TAB command to get to the folder.
31366 In that case, the message number will be incremented by one from what it
31367 was when you left the folder.
31369 The above special behavior is thought to be useful.
31370 However, it is special and different from what you might at first expect.
31371 If this feature is set, then Stay Open folders will not be treated specially
31372 as far as the startup rule is concerned.
31375 &lt;End of help on this topic&gt;
31376 </BODY>
31377 </HTML>
31378 ====== h_config_use_current_dir =====
31379 <HTML>
31380 <HEAD>
31381 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
31382 </HEAD>
31383 <BODY>
31384 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
31386 This feature controls an aspect of several commands. 
31387 If set, your &quot;current working directory&quot; 
31388 <!--chtml if pinemode="running"-->
31389 (which, at least for your current Alpine &quot;session,&quot; 
31390 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
31391 <!--chtml endif-->
31392 will be used instead of your home directory 
31393 <!--chtml if pinemode="running"-->
31394 (which, in the present configuration of your system, is
31395  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
31396 <!--chtml endif-->
31397 for all of the following operations:<UL>
31398     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
31399     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
31400     <LI> <!--chtml if pinemode="function_key"-->F4
31401          <!--chtml else-->Ctrl-R
31402          <!--chtml endif--> file inclusion in the COMPOSER
31403     <LI> <!--chtml if pinemode="function_key"-->F5
31404          <!--chtml else-->Ctrl-J
31405          <!--chtml endif--> file attachment in the COMPOSER
31406 </UL>
31407 <!--chtml if pinemode="os_windows"-->
31409 If you are starting PC-Alpine from a desktop icon or the Start menu, 
31410 you can set the &quot;current drive&quot; 
31411 by specifying it in the &quot;Start in:&quot; 
31412 box found in the Shortcut tab of the Properties.  
31413 <!--chtml endif-->
31415 <UL>   
31416 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31417 </UL>
31420 &lt;End of help on this topic&gt;
31421 </BODY>
31422 </HTML>
31423 ====== h_config_save_wont_delete =====
31424 <HTML>
31425 <HEAD>
31426 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
31427 </HEAD>
31428 <BODY>
31429 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
31431 This feature controls one aspect of the Save command.  If set, Save will
31432 not mark the message &quot;deleted&quot; (its default behavior) after
31433 it has been copied to the designated folder.
31436 &lt;End of help on this topic&gt;
31437 </BODY>
31438 </HTML>
31439 ====== h_config_use_boring_spinner =====
31440 <HTML>
31441 <HEAD>
31442 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
31443 </HEAD>
31444 <BODY>
31445 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
31447 When Alpine is delayed for some reason it usually shows that
31448 something is happening with a small animated display in the status
31449 message line near the bottom of the screen.
31450 Setting this feature will cause that animation to be the same
31451 each time instead of having Alpine choose a random animation.
31452 You may turn the animation off altogether by setting the
31453 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
31454 option to zero.
31457 &lt;End of help on this topic&gt;
31458 </BODY>
31459 </HTML>
31460 ====== h_config_unsel_wont_advance =====
31461 <HTML>
31462 <HEAD>
31463 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
31464 </HEAD>
31465 <BODY>
31466 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
31468 This feature controls one aspect of the Unselect Current message command.
31469 Normally, when the Unselect current message command (:) is typed when the
31470 current message is selected, the message will be unselected and the next
31471 message will become the current message.
31472 If this feature is set, the cursor will not advance to the next message.
31473 Instead, the current message will remain the current message after
31474 unselecting.
31477 &lt;End of help on this topic&gt;
31478 </BODY>
31479 </HTML>
31480 ====== h_config_prune_uses_iso =====
31481 <HTML>
31482 <HEAD>
31483 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
31484 </HEAD>
31485 <BODY>
31486 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
31488 By default, Alpine asks monthly whether or not you would like to rename
31489 some folders to a new name containing the date.
31490 It also asks whether or not you would like to delete some old folders.
31491 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
31492 explanation.
31495 By default, the name used when renaming a folder looks like
31497 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
31499 For example, the first time you run Alpine in May of 2004,
31500 the folder &quot;sent-mail&quot; might be renamed to
31502 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
31504 If this feature is set, the name used will be of the form
31506 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
31508 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
31509 month (01, 02, ..., 12).
31510 For the April, 2004 example above, it would instead be
31512 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
31514 because April is the 4th month of the year.
31515 A reason you might want to set this feature is so that the folders
31516 will sort in chronological order.
31519 &lt;End of help on this topic&gt;
31520 </BODY>
31521 </HTML>
31522 ====== h_config_save_advances =====
31523 <HTML>
31524 <HEAD>
31525 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
31526 </HEAD>
31527 <BODY>
31528 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
31530 This feature controls one aspect of the Save command.  If set, Save will
31531 (in addition to copying the current message to the designated folder) also
31532 advance to the next message.
31535 &lt;End of help on this topic&gt;
31536 </BODY>
31537 </HTML>
31538 ====== h_config_force_arrow =====
31539 <HTML>
31540 <HEAD>
31541 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
31542 </HEAD>
31543 <BODY>
31544 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
31546 This feature affects Alpine's MESSAGE INDEX display routine.
31547 If set, the normal inverse-video cursor will be
31548 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
31549 second column of the index display.
31551 This is the same index cursor you get if you turn on
31552 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
31553 line coloring will still be present if this feature is turned on and
31554 <!--#echo var="FEAT_assume-slow-link"--> is off.
31556 An alternative version of the Arrow cursor is available by including the
31557 <A HREF="h_config_index_arrow_color">ARROW</A>
31558 token in the
31559 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31561 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
31562 but that is not implemented.
31565 &lt;End of help on this topic&gt;
31566 </BODY>
31567 </HTML>
31568 ====== h_config_ignore_size =====
31569 <HTML>
31570 <HEAD>
31571 <TITLE>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></TITLE>
31572 </HEAD>
31573 <BODY>
31574 <H1>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></H1>
31576 When you have an account residing in an IMAP server, Alpine records the 
31577 size of each message as reported by the server. However, when Alpine saves 
31578 a message in such IMAP server, Alpine will compute the size of the message 
31579 independently, from the data it received. If these two numbers do not 
31580 match for a message, Alpine asks you if you still want to take the risk of 
31581 saving such message, since data corruption or loss of data could result 
31582 from this save.
31585 Sometimes the root of this problem is that the IMAP server does not 
31586 compute sizes correctly, and there will not be loss of information when 
31587 saving such message. Enabling this feature will make Alpine ignore such 
31588 error and continue saving the message without producing any warnings or 
31589 ever stopping the process, as if there had not been any error. This option 
31590 applies to all IMAP servers that you use, so if you enable this feature, 
31591 size discrepancy warnings will not be given for any IMAP server you 
31592 connect to.
31595 Example of a server where you could reproduce this problem is the Gmail 
31596 IMAP server. Another example can be found in some versions of the Exchange 
31597 server.
31600 It is recommended that this feature be disabled most of the time and only 
31601 enabled when you find a server which you can determine that has the above 
31602 mentioned defect, but be disabled again after making the save operation 
31603 succeed.
31606 &lt;End of help on this topic&gt;
31607 </BODY>
31608 </HTML>
31609 ====== h_config_force_low_speed =====
31610 <HTML>
31611 <HEAD>
31612 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
31613 </HEAD>
31614 <BODY>
31615 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
31617 UNIX Alpine only.
31619 This feature affects Alpine's display routines.  If set, the normal
31620 inverse-video cursor (used to highlight the current item in a list) will be
31621 replaced by an &quot;arrow&quot; cursor and other
31622 screen update optimizations for
31623 low-speed links (e.g. 2400 bps dialup connections) will be activated.
31624 One of the optimizations is that colored index lines (set up with Indexcolor
31625 Rules) will not be colored.
31626 If you are just turning this feature on because you like using
31627 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
31628 coloring by turning this feature off and the
31629 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
31632 &lt;End of help on this topic&gt;
31633 </BODY>
31634 </HTML>
31635 ====== h_config_show_delay_cue =====
31636 <HTML>
31637 <HEAD>
31638 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
31639 </HEAD>
31640 <BODY>
31641 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
31643 If set, this feature will cause an asterisk to appear in the upper
31644 left-hand corner of the screen whenever Alpine checks for new mail.
31645 Two asterisks whenever Alpine saves (checkpoints) the state of the current
31646 mailbox to disk.
31648 <!--chtml if pinemode="os_windows"-->
31650 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
31651 it is trying to open a network connection (e.g, to open your INBOX
31652 on an IMAP
31653 server) or read from the network connection.  A greater-than symbol,
31654 will be displayed when PC-Alpine is trying to write to the network
31655 connection (e.g, sending a command to your IMAP server).
31656 <!--chtml endif-->
31659 &lt;End of help on this topic&gt;
31660 </BODY>
31661 </HTML>
31662 ====== h_config_color_style =====
31663 <HTML>
31664 <HEAD>
31665 <TITLE>OPTION: Color Style</TITLE>
31666 </HEAD>
31667 <BODY>
31668 <H1>OPTION: Color Style</H1>
31670 UNIX Alpine only.
31672 If the terminal or terminal emulator you are using is capable of displaying
31673 colors, this option controls whether or not color will be used in Alpine.
31674 If you turn color on and things are set up correctly,
31675 you should see color appear on the screen immmediately.
31676 Modern terminal emulators are usually capable of displaying colors.
31678 The available options include:
31681 <DL>
31682 <DT>no-color</DT>
31683 <DD>Don't use color.
31684 </DD>
31686 <DT>use-termdef</DT>
31687 <DD>In order to decide if your terminal is capable of color, Alpine looks in
31688 the terminal capabilities database, TERMINFO or TERMCAP, depending on
31689 how Alpine was compiled.
31690 This is a good option to choose if you switch between a color and a non-color
31691 terminal with the same Alpine configuration.
31692 Alpine will know to use color on the color terminal because it is described
31693 in the termcap entry, and Alpine will know to use black and white on the
31694 non-color terminal.
31695 The Alpine Technical Notes
31696 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/tech-notes/">http://www.washington.edu/alpine/tech-notes/</A></SAMP></CENTER>
31697 have more information on configuring a TERMCAP or TERMINFO
31698 entry for color Alpine.
31699 This is usually something a system administrator does.
31700 </DD>
31702 <DT>force-ansi-8color</DT>
31703 <DD>This is probably the setting that most people should use.
31704 Because setting up a termcap entry is confusing and because the
31705 terminal capabilities database is often not correctly configured for color,
31706 this choice and the next may be easier for you to use.
31707 If your terminal emulator responds to ANSI color escape sequences, which
31708 many do, this option will cause Alpine to believe your terminal will respond
31709 to the escape sequences that produce eight different foreground and background
31710 colors.
31711 The escape sequences used to set the foreground colors are
31713   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31715 where the color_number is an ASCII digit between 0 and 7.
31716 The numbers 0 through 7 should correspond to the colors black, red, green,
31717 yellow, blue, magenta, cyan, and white.
31718 Some terminal emulators use a pre-ANSI scheme that swaps
31719 the colors blue and red and the colors yellow and cyan.
31720 This will cause the default colors to be different, but other than that
31721 things should work fine.
31722 There is also a 9th color available, the last one shown, which is the default
31723 color from the terminal emulator.
31724 When used as a background color some people refer to this color as
31725 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
31726 shown in the color swatch of the SETUP COLOR screen.
31727 The foreground transparent color is shown as
31728 the color of the &quot;TRAN&quot; text.
31729 (The transparent color will not work correctly in a PC-Alpine configuration.)
31730 The escape sequences used to set the background colors are the same
31731 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
31732 The escape sequences for foreground and background default colors (transparent)
31733 are 39m and 49m.
31735 Note: With the Tera Term terminal emulator this setting works well.
31736 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
31737 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
31738 menu, in the &quot;Window&quot; submenu.
31739 </DD>
31741 <DT>force-ansi-16color</DT>
31742 <DD>Many terminal emulators know about the same eight colors above
31743 plus eight more.
31744 This option attempts to use all 16 colors.
31745 The same escape sequences as for the eight-color terminal are used
31746 for the first eight colors.
31747 The escape sequences used to set foreground colors 8-15 are the same as
31748 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
31749 The background color sequences for colors 8-15 are the same as for 0-7
31750 except the &quot;4&quot; is replaced with &quot;10&quot;.
31751 You can tell if the 16 colors are working by turning on this option
31752 and then going into one of the color configuration screens, for example,
31753 the configuration screen for Normal Color.
31754 If you see 16 different colors to select from (plus a 17th for
31755 the transparent color), it's working.
31756 </DD>
31758 <DT>force-xterm-256color</DT>
31759 <DD>Some versions of xterm (and some other terminal emulators)
31760 have support for 256 colors.
31761 The escape sequences used to set the foreground colors are
31763   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31765 where the color_number is an ASCII digit between 0 and 255.
31766 Background colors are the same with the 38 replaced with a 48.
31767 The numbers 0 through 15 are probably similar to the 16 color version
31768 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
31769 The terminal default (transparent) color is the 257th color at the bottom.
31770 Some terminal emulators will misinterpret these escape sequences causing
31771 the terminal to blink or overstrike characters or to do something else
31772 undesirable.
31774 The PuTTY terminal emulator has an option called &quot;Allow terminal to
31775 use xterm 256-colour mode&quot; which allows PuTTY to work well with
31776 this 256-color setting.
31778 </DD>
31779 </DL>
31782 The normal default is &quot;no-color&quot;.
31785 Once you've turned on color you may set the
31786 colors of many objects on the screen individually.
31787 For example, you may add colors to the status letters on the MESSAGE
31788 INDEX page.
31789 Most categories of color that Alpine supports are configurable here.
31790 For example, &quot;Normal Color&quot;
31791 is the color used to display most of the text in Alpine, and
31792 &quot;Reverse Color&quot; is used to display highlighted text, such as the
31793 current message in the MESSAGE INDEX.
31795 Lines in the MESSAGE INDEX may also be colored.
31796 Use Setup Rules to get to the Indexcolor configuration screen.
31799 <UL>   
31800 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31801 </UL><P>
31802 &lt;End of help on this topic&gt;
31803 </BODY>
31804 </HTML>
31805 ====== h_config_disable_index_locale_dates =====
31806 <HTML>
31807 <HEAD>
31808 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
31809 </HEAD>
31810 <BODY>
31811 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
31813 This feature affects the display of dates in the MESSAGE INDEX.
31814 Normally an attempt is made to localize the dates
31815 used in the MESSAGE INDEX display to your locale.
31816 This is controlled with the
31817 LC_TIME locale setting on a UNIX system.
31818 On Windows the Regional Options control panel may be used to set the date format.
31819 At the programming level, Alpine is using the strftime routine
31820 to print the parts of a date.
31822 If this feature is set, dates are displayed in English and
31823 with the conventions of the United States.
31826 <UL>   
31827 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31828 </UL><P>
31829 &lt;End of help on this topic&gt;
31830 </BODY>
31831 </HTML>
31832 ====== h_config_auto_open_unread =====
31833 <HTML>
31834 <HEAD>
31835 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
31836 </HEAD>
31837 <BODY>
31838 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
31840 This feature controls the behavior of the TAB key when traversing folders
31841 in the optional 
31842 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
31843 collection or in optional <!--#echo var="VAR_news-collections"-->.
31845 When the TAB
31846 (<A HREF="h_common_nextnew">NextNew</A>)
31847 key is pressed, and there
31848 are no more unseen messages in the current (incoming message or news)
31849 folder, Alpine will search the list of folders in the current collection for
31850 one containing New or Recent (new since the last time the folder was
31851 opened) messages.
31852 This behavior may be modified slightly with the
31853 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
31854 feature that causes Alpine to look for Unseen messages instead of Recent
31855 messages.
31856 Normally, when such a folder is found, Alpine will ask
31857 whether you wish to open the folder.  If this feature is set, Alpine will
31858 automatically open the folder without prompting.
31860 This feature also affects some other similar situations.
31861 If you have a
31862 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
31863 that is equal to one of the &quot;separate-&quot; values, and you are
31864 viewing a thread; then when you type the NextNew command and are at the
31865 end of the current thread you will automatically go to the next thread
31866 if this feature is set.
31867 By default, you would be asked if you want to view the next thread.
31868 You will also be asked at times whether or not you want to view the next
31869 thread after you delete the last message in the thread.
31870 Setting this feature will also cause that question to be skipped.
31873 <UL>   
31874 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31875 </UL><P>
31876 &lt;End of help on this topic&gt;
31877 </BODY>
31878 </HTML>
31879 ====== h_config_auto_include_reply =====
31880 <HTML>
31881 <HEAD>
31882 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
31883 </HEAD>
31884 <BODY>
31885 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
31887 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
31888 will ask whether you wish to include the original message in your reply.
31889 If this feature is set and the feature
31890 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
31891 is <EM>not</EM> set, then the original message will be included in the reply
31892 automatically, without prompting.
31894 &lt;End of help on this topic&gt;
31895 </BODY>
31896 </HTML>
31897 ====== h_config_select_in_bold =====
31898 <HTML>
31899 <HEAD>
31900 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
31901 </HEAD>
31902 <BODY>
31903 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
31905 This feature controls an aspect of Alpine's 
31906 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
31907 commands; in
31908 particular, the Select and WhereIs commands. Select and WhereIs (with the
31909 ^X subcommand) will search the current folder for messages meeting a
31910 specified criteria, and &quot;tag&quot; the resulting messages with an 
31911 &quot;X&quot; in the
31912 first column of the applicable lines in the MESSAGE INDEX.  If this feature
31913 is set, instead of using the &quot;X&quot; to denote a selected message, 
31914 Alpine will
31915 attempt to display those index lines in boldface. Whether this is
31916 preferable to the &quot;X&quot; will depend on personal taste and the type of
31917 terminal being used.
31919 <UL>   
31920 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31921 </UL><P>
31922 &lt;End of help on this topic&gt;
31923 </BODY>
31924 </HTML>
31925 ====== h_config_alt_auth =====
31926 <HTML>
31927 <HEAD>
31928 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
31929 </HEAD>
31930 <BODY>
31931 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
31933 This feature affects how Alpine connects to IMAP servers.
31934 It's utility has largely been overtaken by events,
31935 but it may still be useful in some circumstances.
31936 If you only connect to modern IMAP servers that support
31937 &quot;TLS&quot; you can ignore this feature.
31940 Details:
31943 By default, Alpine will attempt to connect to an IMAP server on the
31944 normal IMAP service port (143), and if the server offers &quot;Transport Layer
31945 Security&quot; (TLS) and Alpine has been compiled with encryption capability,
31946 then a secure (encrypted) session will be negotiated.
31949 With this feature enabled, before connecting on the normal IMAP port, Alpine
31950 will first attempt to connect to an alternate IMAP service port (993) used
31951 specifically for encrypted IMAP sessions via the Secure Sockets Layer
31952 (SSL) method.
31953 If the SSL attempt fails, Alpine will then try the default
31954 behavior described in the previous paragraph.
31957 TLS negotiation on the normal port is preferred, and supersedes the use of
31958 SSL on port 993, but older servers may not provide TLS support.
31959 This feature may be convenient when accessing IMAP servers that do not support
31960 TLS, but do support SSL connections on port 993.
31961 However, it is important to understand that with this feature enabled,
31962 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
31963 but it will proceed to make an insecure connection if that is the only
31964 option offered by the server, or if the Alpine in question has been built
31965 without encryption capability.
31968 Note that this feature specifies a per-user (or system-wide) default
31969 behavior, but host/folder specification flags may be used to control the
31970 behavior of any specific connection.
31971 This feature interacts with some of
31972 the possible host/folder path specification flags as follows:
31975 The <SAMP>/tls</SAMP> host flag, for example,
31978 <CENTER><SAMP>{foo.example.com/tls}INBOX</SAMP></CENTER>
31980 will over-ride this feature for the specified host by bypassing the
31981 SSL connection attempt.
31982 Moreover, with <SAMP>/tls</SAMP> specified,
31983 the connection attempt will fail if the
31984 service on port 143 does not offer TLS support.
31987 The <SAMP>/ssl</SAMP> host flag, for example,
31990 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
31992 will insist on an SSL connection for the specified host,
31993 and will fail if the SSL service on port 993 is not available.
31994 Alpine will not subsequently retry a connection
31995 on port 143 if <SAMP>/ssl</SAMP> is specified.
31998 <UL>   
31999 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32000 </UL><P>
32001 &lt;End of help on this topic&gt;
32002 </BODY>
32003 </HTML>
32004 ====== h_config_file_dir ======
32005 <HTML>
32006 <HEAD>
32007 <TITLE>OPTION: File Directory</TITLE>
32008 </HEAD>
32009 <BODY>
32010 <H1>OPTION: File Directory</H1>
32012 PC-Alpine only.
32014 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
32015 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
32016 Message Index's &quot;E&nbsp;Export&quot; command.
32019 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
32020 component, Alpine assumes the file exists in the user's home directory.
32021 Under Windows operating systems, this definition isn't always clear.  This 
32022 feature allows you to explictly set where Alpine should look for files
32023 without a leading path.
32026 NOTE: this feature's value is ignored if either 
32027 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
32028 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
32031 <UL>   
32032 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32033 </UL><P>
32034 &lt;End of help on this topic&gt;
32035 </BODY>
32036 </HTML>
32037 ====== h_config_quote_all_froms =====
32038 <HTML>
32039 <HEAD>
32040 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
32041 </HEAD>
32042 <BODY>
32043 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
32045 This feature controls an aspect of the Save command (and also the way
32046 outgoing messages are saved to an FCC folder).  If set, Alpine will add
32047 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
32048 when they are saved to another folder, including lines syntactically
32049 distinguishable from the type of message separator line commonly used on
32050 Unix systems.
32053 The default behavior is that a &quot;>&quot; will be prepended only to lines
32054 beginning with &quot;From &quot; that might otherwise be confused with a message
32055 separator line on Unix systems.  If pine is the only mail program you use,
32056 this default is reasonable.  If another program you use has trouble
32057 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
32058 enable this feature.  This feature only applies to the common Unix mailbox
32059 format that uses message separator lines beginning with &quot;From &quot;.  If
32060 Alpine has been configured to use a different mailbox format (possibly
32061 incompatible with other mail programs), then this issue does not arise,
32062 and the feature is irrelevant.
32065 &lt;End of help on this topic&gt;
32066 </BODY>
32067 </HTML>
32068 ====== h_config_normal_color =====
32069 <HTML>
32070 <HEAD>
32071 <TITLE>OPTION: Normal Color</TITLE>
32072 </HEAD>
32073 <BODY>
32074 <H1>OPTION: Normal Color</H1>
32076 Sets the color Alpine normally uses.
32077 The foreground color is the color of the actual character and the
32078 background color is the color of the area behind the character.
32079 By default this color is black characters on a white background.
32081 <A HREF="h_color_setup">Descriptions of the available commands</A>
32083 Look <A HREF="h_edit_nav_cmds">here</A>
32084 to see the available Editing and Navigation commands.
32086 &lt;End of help on this topic&gt;
32087 </BODY>
32088 </HTML>
32089 ====== h_config_reverse_color =====
32090 <HTML>
32091 <HEAD>
32092 <TITLE>OPTION: Reverse Color</TITLE>
32093 </HEAD>
32094 <BODY>
32095 <H1>OPTION: Reverse Color</H1>
32097 Sets the color Alpine uses for reverse video characters.
32098 The foreground color is the color of the actual character and the
32099 background color is the color of the area behind the character.
32101 <A HREF="h_color_setup">Descriptions of the available commands</A>
32103 Look <A HREF="h_edit_nav_cmds">here</A>
32104 to see the available Editing and Navigation commands.
32106 &lt;End of help on this topic&gt;
32107 </BODY>
32108 </HTML>
32109 ====== h_config_title_color =====
32110 <HTML>
32111 <HEAD>
32112 <TITLE>OPTION: Title Color</TITLE>
32113 </HEAD>
32114 <BODY>
32115 <H1>OPTION: Title Color</H1>
32117 Sets the color Alpine uses for the titlebar (the top line on the screen).
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, the Title Color is black characters on a yellow background.
32122 The actual titlebar color may be different from the Title Color if
32123 the option
32124 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
32125 is set to some value other than the default.
32126 It may also be different if the current folder is closed and the
32127 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
32128 color is set to something different from the Title Color.
32130 <A HREF="h_color_setup">Descriptions of the available commands</A>
32132 Look <A HREF="h_edit_nav_cmds">here</A>
32133 to see the available Editing and Navigation commands.
32135 &lt;End of help on this topic&gt;
32136 </BODY>
32137 </HTML>
32138 ====== h_config_titleclosed_color =====
32139 <HTML>
32140 <HEAD>
32141 <TITLE>OPTION: Title Closed Color</TITLE>
32142 </HEAD>
32143 <BODY>
32144 <H1>OPTION: Title Closed Color</H1>
32146 Sets the color Alpine uses for the titlebar (the top line on the screen)
32147 when the current folder is closed.
32148 The foreground color is the color of the actual character and the
32149 background color is the color of the area behind the character.
32150 By default, the Title Color Closed Color is white characters on a red background.
32152 By setting this color to something noticeable you will be alerted to the
32153 fact that the current folder is closed, perhaps unexpectedly.
32155 &lt;End of help on this topic&gt;
32156 </BODY>
32157 </HTML>
32158 ====== h_config_status_color =====
32159 <HTML>
32160 <HEAD>
32161 <TITLE>OPTION: Status Color</TITLE>
32162 </HEAD>
32163 <BODY>
32164 <H1>OPTION: Status Color</H1>
32166 Sets the color Alpine uses for status messages written to the message
32167 line near the bottom of the screen.
32168 The foreground color is the color of the actual character and the
32169 background color is the color of the area behind the character.
32170 By default, the Status Color is the same as the Reverse Color.
32172 <A HREF="h_color_setup">Descriptions of the available commands</A>
32174 Look <A HREF="h_edit_nav_cmds">here</A>
32175 to see the available Editing and Navigation commands.
32177 &lt;End of help on this topic&gt;
32178 </BODY>
32179 </HTML>
32180 ====== h_config_index_opening_color =====
32181 <HTML>
32182 <HEAD>
32183 <TITLE>OPTION: Index Opening Color</TITLE>
32184 </HEAD>
32185 <BODY>
32186 <H1>OPTION: Index Opening Color</H1>
32188 With some setups the text of the subject is followed
32189 by the opening text of the message if there is any room available in the index line.
32190 If you have configured your
32191 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32192 to include one of the Subject tokens that causes this behavior
32193 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
32194 this opening text with this option.
32195 This coloring takes place for all but the current index line, and the Opening
32196 Color appears to be in front of any color from an Index Color Rule.
32198 By default the Index Opening Color is gray characters on a white background.
32201 <A HREF="h_color_setup">Descriptions of the available commands</A>
32203 Look <A HREF="h_edit_nav_cmds">here</A>
32204 to see the available Editing and Navigation commands.
32206 &lt;End of help on this topic&gt;
32207 </BODY>
32208 </HTML>
32209 ====== h_config_index_pri_color =====
32210 <HTML>
32211 <HEAD>
32212 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
32213 </HEAD>
32214 <BODY>
32215 <H1>OPTION: Index Priority Symbol Colors</H1>
32217 The X-Priority header is a non-standard header that is used in a
32218 somewhat standard way by many mail programs.
32219 Alpine expects the value of this header to be a digit with a value
32220 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
32221 Alpine can be made to display an indication of this priority in
32222 messages by use of one of the tokens
32223 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
32224 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
32225 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32228 You may set the color used to draw these tokens by use of the colors
32229 Index High Priority Symbol Color and Index Low Priority Symbol Color.
32230 This coloring takes place for all but the current index line, and the Priority
32231 Color appears to be in front of any color from an Index Color Rule.
32232 If the priority has a value of 1 or 2 the High Priority color will be
32233 used,
32234 and if the value is 4 or 5 the Low Priority color will be used.
32236 If you don't set these colors the index line will be colored in the same color as
32237 the bulk of the index line.
32240 <A HREF="h_color_setup">Descriptions of the available commands</A>
32242 Look <A HREF="h_edit_nav_cmds">here</A>
32243 to see the available Editing and Navigation commands.
32245 &lt;End of help on this topic&gt;
32246 </BODY>
32247 </HTML>
32248 ====== h_config_index_subject_color =====
32249 <HTML>
32250 <HEAD>
32251 <TITLE>OPTION: Index Subject Color</TITLE>
32252 </HEAD>
32253 <BODY>
32254 <H1>OPTION: Index Subject Color</H1>
32256 You may set the color used to draw the Subject part of the index line.
32257 This coloring takes place for all but the current index line, and the Subject
32258 Color appears to be in front of any color from an Index Color Rule.
32260 If you don't set this color it will be colored in the same color as
32261 the bulk of the index line.
32264 <A HREF="h_color_setup">Descriptions of the available commands</A>
32266 Look <A HREF="h_edit_nav_cmds">here</A>
32267 to see the available Editing and Navigation commands.
32269 &lt;End of help on this topic&gt;
32270 </BODY>
32271 </HTML>
32272 ====== h_config_index_from_color =====
32273 <HTML>
32274 <HEAD>
32275 <TITLE>OPTION: Index From Color</TITLE>
32276 </HEAD>
32277 <BODY>
32278 <H1>OPTION: Index From Color</H1>
32280 You may set the color used to draw the From part of the index line.
32281 This coloring takes place for all but the current index line, and the From
32282 Color appears to be in front of any color from an Index Color Rule.
32284 If you don't set this color it will be colored in the same color as
32285 the bulk of the index line.
32288 <A HREF="h_color_setup">Descriptions of the available commands</A>
32290 Look <A HREF="h_edit_nav_cmds">here</A>
32291 to see the available Editing and Navigation commands.
32293 &lt;End of help on this topic&gt;
32294 </BODY>
32295 </HTML>
32296 ====== h_config_index_arrow_color =====
32297 <HTML>
32298 <HEAD>
32299 <TITLE>OPTION: Index Arrow Color</TITLE>
32300 </HEAD>
32301 <BODY>
32302 <H1>OPTION: Index Arrow Color</H1>
32304 If you have configured your
32305 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32306 to include the &quot;ARROW&quot; token, you may set the color of
32307 the arrow displayed with this option.
32308 If you don't set the color it will be colored in the same color as
32309 the bulk of the index line.
32312 <A HREF="h_color_setup">Descriptions of the available commands</A>
32314 Look <A HREF="h_edit_nav_cmds">here</A>
32315 to see the available Editing and Navigation commands.
32317 &lt;End of help on this topic&gt;
32318 </BODY>
32319 </HTML>
32320 ====== h_config_index_color =====
32321 <HTML>
32322 <HEAD>
32323 <TITLE>OPTION: Index Colors</TITLE>
32324 </HEAD>
32325 <BODY>
32326 <H1>OPTION: Index Colors</H1>
32328 You may add color to the single character symbols that give the status
32329 of each message in the MESSAGE INDEX.
32330 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
32331 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
32332 screen depending on whether the message is addressed to you, and whether
32333 the message is marked Important, is Deleted, is Answered, or is New.
32334 The color for each of those characters may be specified by setting the
32335 &quot;Index-to-me&quot; Symbol Color,
32336 the &quot;Index-important&quot; Symbol Color,
32337 the &quot;Index-deleted&quot; Symbol Color,
32338 the &quot;Index-answered&quot; Symbol Color,
32339 and the &quot;Index-new&quot; Symbol Color.
32340 There are also two other symbol colors called &quot;Index-recent&quot;
32341 and &quot;Index-unseen&quot;.
32342 These two colors will only be used if you have configured your
32343 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
32344 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
32346 The default colors for these symbols are:
32347 <TABLE>
32348 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
32349 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
32350 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32351 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
32352 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
32353 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32354 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32355 </TABLE>
32357 Besides coloring the message status symbols, you may also color the
32358 entire index line.
32359 This is done by using the
32360 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
32361 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
32362 When the entire line is colored that color will be &quot;behind&quot; the
32363 status symbol colors talked about in the paragraph above.
32365 You may also color
32366 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32367 in the index using the
32368 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
32369 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
32370 the Subject using
32371 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
32372 the From field using
32373 <A HREF="h_config_index_from_color">Index From Color</A>;
32374 and the
32375 <A HREF="h_config_index_opening_color">Index Opening</A> text.
32377 <A HREF="h_color_setup">Descriptions of the available commands</A>
32379 Look <A HREF="h_edit_nav_cmds">here</A>
32380 to see the available Editing and Navigation commands.
32382 &lt;End of help on this topic&gt;
32383 </BODY>
32384 </HTML>
32385 ====== h_config_metamsg_color =====
32386 <HTML>
32387 <HEAD>
32388 <TITLE>OPTION: Meta-Message Color</TITLE>
32389 </HEAD>
32390 <BODY>
32391 <H1>OPTION: Meta-Message Color</H1>
32393 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
32394 that aren't part of the message itself.
32395 For example, an attachment that isn't shown might produce a meta
32396 message something like:
32398 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
32400 If you set the
32401 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
32402 option you might see
32404 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
32406 Warnings about suspicious looking URLs in HTML will also be colored
32407 with this color.
32409 The foreground color is the color of the actual character and the
32410 background color is the color of the area behind the character.
32411 By default, the Meta-Message Color is black characters on a yellow background.
32413 <A HREF="h_color_setup">Descriptions of the available commands</A>
32415 Look <A HREF="h_edit_nav_cmds">here</A>
32416 to see the available Editing and Navigation commands.
32418 &lt;End of help on this topic&gt;
32419 </BODY>
32420 </HTML>
32421 ====== h_config_keylabel_color =====
32422 <HTML>
32423 <HEAD>
32424 <TITLE>OPTION: KeyLabel Color</TITLE>
32425 </HEAD>
32426 <BODY>
32427 <H1>OPTION: KeyLabel Color</H1>
32429 Sets the color Alpine uses for the labels of the keys in the two-line
32430 menu at the bottom of the screen.
32431 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32432 This option sets the color used when displaying &quot;PrevMsg&quot;.
32433 The foreground color is the color of the actual character and the
32434 background color is the color of the area behind the character.
32435 By default, the KeyLabel Color is the same as the Normal Color.
32437 WARNING: Some terminal emulators have the property that the screen will scroll
32438 down one line whenever a character is written to the character cell in the
32439 lower right corner of the screen.
32440 Alpine can usually avoid writing a character in that corner of the screen.
32441 However, if you have defined a KeyLabel Color then Alpine does have to write
32442 a character in that cell in order to color the cell correctly.
32443 If you find that your display sometimes scrolls up a line this could be
32444 the problem.
32445 The most obvious symptom is probably that the titlebar at the top of the
32446 screen scrolls off the screen.
32447 Try setting KeyLabel Color to Default to see if that fixes the problem.
32449 <A HREF="h_color_setup">Descriptions of the available commands</A>
32451 Look <A HREF="h_edit_nav_cmds">here</A>
32452 to see the available Editing and Navigation commands.
32454 &lt;End of help on this topic&gt;
32455 </BODY>
32456 </HTML>
32457 ====== h_config_keyname_color =====
32458 <HTML>
32459 <HEAD>
32460 <TITLE>OPTION: KeyName Color</TITLE>
32461 </HEAD>
32462 <BODY>
32463 <H1>OPTION: KeyName Color</H1>
32465 Sets the color Alpine uses for the names of the keys in the two-line
32466 menu at the bottom of the screen.
32467 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32468 This option sets the color used when displaying the &quot;P&quot;.
32469 The foreground color is the color of the actual character and the
32470 background color is the color of the area behind the character.
32471 By default, the KeyName Color is the same as the Reverse Color.
32473 <A HREF="h_color_setup">Descriptions of the available commands</A>
32475 Look <A HREF="h_edit_nav_cmds">here</A>
32476 to see the available Editing and Navigation commands.
32478 &lt;End of help on this topic&gt;
32479 </BODY>
32480 </HTML>
32481 ====== h_config_slctbl_color =====
32482 <HTML>
32483 <HEAD>
32484 <TITLE>OPTION: Selectable Item Color</TITLE>
32485 </HEAD>
32486 <BODY>
32487 <H1>OPTION: Selectable Item Color</H1>
32489 Sets the color Alpine uses for selectable items, such as URLs.
32490 The foreground color is the color of the actual character and the
32491 background color is the color of the area behind the character.
32492 By default, the Selectable Item Color is the same as the Normal Color,
32493 except that it is bold.
32495 <A HREF="h_color_setup">Descriptions of the available commands</A>
32497 Look <A HREF="h_edit_nav_cmds">here</A>
32498 to see the available Editing and Navigation commands.
32500 &lt;End of help on this topic&gt;
32501 </BODY>
32502 </HTML>
32503 ====== h_config_quote_color =====
32504 <HTML>
32505 <HEAD>
32506 <TITLE>OPTION: Quote Colors</TITLE>
32507 </HEAD>
32508 <BODY>
32509 <H1>OPTION: Quote Colors</H1>
32511 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
32512 screen.
32513 If a line begins with a &gt; character (or space followed by &gt;)
32514 it is considered a quote.
32515 That line will be given the Quote1 Color (first level quote).
32516 If there is a second level of quoting then the Quote2 Color will be used.
32517 Alpine considers there to be a second level of quoting if that first &gt; is
32518 followed by another &gt; (or space followed by &gt;).
32519 If there are characters other than whitespace and &gt; signs, then it isn't
32520 considered another level of quoting.
32521 Similarly, if there is a third level of quoting the Quote3 Color will be
32522 used.
32523 If there are more levels after that the Quote Colors are re-used.
32524 If you define all three colors then it would repeat like Color1, Color2, Color3,
32525 Color1, Color2, Color3, ...
32526 If you only define the first two it would be
32527 Color1, Color2, Color1, Color2, ...
32528 If you define only the Quote1 Color, then the entire quote would be that
32529 color regardless of the quoting levels.
32530 By default, the Quote1 Color is black characters on a greenish-blue background;
32531 the Quote2 Color is black characters on a dull yellow background; and
32532 the Quote3 Color is black characters on a green background.
32534 <A HREF="h_color_setup">Descriptions of the available commands</A>
32536 Look <A HREF="h_edit_nav_cmds">here</A>
32537 to see the available Editing and Navigation commands.
32539 &lt;End of help on this topic&gt;
32540 </BODY>
32541 </HTML>
32542 ====== h_config_folder_color =====
32543 <HTML>
32544 <HEAD>
32545 <TITLE>OPTION: Folder Color</TITLE>
32546 </HEAD>
32547 <BODY>
32548 <H1>OPTION: Folder Color</H1>
32550 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
32551 screen. By default, the Folder Color is the normal text color.
32554 If you set a color for this feature, other than the normal color
32555 (the default), or a color for
32556 <A HREF="h_config_directory_color">Directory Color</A>, then directories
32557 will be colored according to the color specified in the
32558 <A HREF="h_config_directory_color">Directory Color</A> option. In this
32559 case, the color will be the only indication that the colored name
32560 refers to a directory. The normal behavior is that Alpine
32561 indicates that a name refers to a directory by appending a
32562 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32563 the folder.
32566 If a folder is a directory, then the folder name will be painted
32567 according to the color defined by this variable, and a separator
32568 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
32569 to the name. That
32570 indicator will be painted according to the color defined in the
32571 <A HREF="h_config_directory_color">Directory Color</A> option.
32574 &lt;End of help on this topic&gt;
32575 </BODY>
32576 </HTML>
32577 ====== h_config_directory_color =====
32578 <HTML>
32579 <HEAD>
32580 <TITLE>OPTION: Directory Color</TITLE>
32581 </HEAD>
32582 <BODY>
32583 <H1>OPTION: Directory Color</H1>
32585 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
32586 screen. By default, the Folder Color is the normal text color.
32588 If you set a color for this feature, other than the normal color
32589 (the default), or a color for
32590 <A HREF="h_config_folder_color">Folder Color</A>, then folders
32591 will be colored according to the color specified in the
32592 <A HREF="h_config_folder_color">Folder Color</A> option. In this
32593 case, the color will be the only indication that the colored name
32594 refers to a directory. The normal behavior is that Alpine
32595 indicates that a name refers to a directory by appending a
32596 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32597 the folder.
32599 If a folder is a directory, then the folder name will be painted
32600 according to the color defined by the option
32601 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
32602 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
32603 after the name. That
32604 indicator will be painted according to the color defined in this
32605 option.
32607 &lt;End of help on this topic&gt;
32608 </BODY>
32609 </HTML>
32610 ====== h_config_folder_list_color =====
32611 <HTML>
32612 <HEAD>
32613 <TITLE>OPTION: Folder-List Color</TITLE>
32614 </HEAD>
32615 <BODY>
32616 <H1>OPTION: Folder-List Color</H1>
32618 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
32619 screen. By default, the Folder-List Color is the normal text color.
32621 This text refers to the informative text that Alpine displays so you
32622 can recognize each collection. The color of the content of each collection
32623 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
32624 and <A HREF="h_config_directory_color">Directory Color</A>.
32626 Unlike the options
32627 <A HREF="h_config_folder_color">Folder Color</A>
32628 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
32629 this option does not affect the way that Alpine reports folders,
32630 directories and folders that are directories.
32632 &lt;End of help on this topic&gt;
32633 </BODY>
32634 </HTML>
32635 ====== h_config_incunseen_color =====
32636 <HTML>
32637 <HEAD>
32638 <TITLE>OPTION: Incoming Unseen Color</TITLE>
32639 </HEAD>
32640 <BODY>
32641 <H1>OPTION: Incoming Unseen Color</H1>
32643 If the option
32644 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
32645 is turned on it is possible to highlight the folders that contain
32646 unseen messages by coloring them with this color.
32647 By default, this is the same as the Normal Color and no highlighting is done.
32649 Usually the &quot;current&quot; folder (the folder the cursor is on)
32650 is highlighted using reverse video.
32651 If the current folder is colored because it contains unseen messages then
32652 the color used to show that it is also the current folder is controlled
32653 by the
32654 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
32655 feature at the top of the SETUP COLOR screen.
32657 <A HREF="h_color_setup">Descriptions of the available commands</A>
32659 Look <A HREF="h_edit_nav_cmds">here</A>
32660 to see the available Editing and Navigation commands.
32662 &lt;End of help on this topic&gt;
32663 </BODY>
32664 </HTML>
32665 ====== h_config_signature_color =====
32666 <HTML>
32667 <HEAD>
32668 <TITLE>OPTION: Signature Color</TITLE>
32669 </HEAD>
32670 <BODY>
32671 <H1>OPTION: Signature Color</H1>
32673 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
32674 screen. According to USENET conventions, the signature is defined as the
32675 paragraph following the &quot;sigdashes&quot;, that is, the special line
32676 consisting of the three characters
32677 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
32678 empty line right after the sigdashes to be considered as part of the
32679 signature.
32680 By default, the Signature Color is blue characters on a white background.
32682 <A HREF="h_color_setup">Descriptions of the available commands</A>
32684 Look <A HREF="h_edit_nav_cmds">here</A>
32685 to see the available Editing and Navigation commands.
32687 &lt;End of help on this topic&gt;
32688 </BODY>
32689 </HTML>
32690 ====== h_config_prompt_color =====
32691 <HTML>
32692 <HEAD>
32693 <TITLE>OPTION: Prompt Color</TITLE>
32694 </HEAD>
32695 <BODY>
32696 <H1>OPTION: Prompt Color</H1>
32698 Sets the color Alpine uses for confirmation prompts and questions that
32699 appear in the status line near the bottom of the screen.
32700 The foreground color is the color of the actual character and the
32701 background color is the color of the area behind the character.
32702 By default, the Prompt Color is the same as the Reverse Color.
32704 <A HREF="h_color_setup">Descriptions of the available commands</A>
32706 Look <A HREF="h_edit_nav_cmds">here</A>
32707 to see the available Editing and Navigation commands.
32709 &lt;End of help on this topic&gt;
32710 </BODY>
32711 </HTML>
32712 ====== h_config_header_general_color =====
32713 <HTML>
32714 <HEAD>
32715 <TITLE>OPTION: Header General Color</TITLE>
32716 </HEAD>
32717 <BODY>
32718 <H1>OPTION: Header General Color</H1>
32720 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
32721 screen.
32722 The foreground color is the color of the actual character and the
32723 background color is the color of the area behind the character.
32724 By default, this is the same as the Normal Color.
32726 It is also possible to set the colors for specific header fields, for
32727 example the Subject, using
32728 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
32729 If both a Header General Color and a specific Viewer Header Color are set
32730 the specific color will override the general color, as you would expect.
32732 <A HREF="h_color_setup">Descriptions of the available commands</A>
32734 Look <A HREF="h_edit_nav_cmds">here</A>
32735 to see the available Editing and Navigation commands.
32737 &lt;End of help on this topic&gt;
32738 </BODY>
32739 </HTML>
32740 ====== h_config_incol =====
32741 <HTML>
32742 <HEAD>
32743 <TITLE>Index Line Color</TITLE>
32744 </HEAD>
32745 <BODY>
32746 <H1>Index Line Color</H1>
32748 This option is used to set the color of a line in the index when the
32749 message for that line matches the Pattern.
32750 This colors the whole index line, except possibly the status letters,
32751 which may be colored separately using the
32752 <A HREF="h_color_setup">Setup Kolor</A> screen.
32753 The foreground color is the color of the actual characters and the
32754 background color is the color of the area behind the characters.
32756 <A HREF="h_color_setup">Descriptions of the available commands</A>
32758 Look <A HREF="h_edit_nav_cmds">here</A>
32759 to see the available Editing and Navigation commands.
32761 &lt;End of help on this topic&gt;
32762 </BODY>
32763 </HTML>
32764 ====== h_config_usetransparent_color =====
32765 <HTML>
32766 <HEAD>
32767 <TITLE>OPTION: Use Transparent Color</TITLE>
32768 </HEAD>
32769 <BODY>
32770 <H1>OPTION: Use Transparent Color</H1>
32772 This is a special color supported by some terminal emulators.
32773 It is intended to result in the default foreground or background color
32774 from the terminal emulator.
32775 This is the color the terminal was displaying characters in before you started Alpine.
32776 The reason it is called Transparent is because you could set the foreground color
32777 to some specific color, like Red, and then set the background color to the
32778 Transparent Color. If it works as expected, the background color from the terminal
32779 window in which Alpine is running will show through but with the Red characters
32780 in the foreground.
32782 <A HREF="h_color_setup">Descriptions of the available commands</A>
32784 Look <A HREF="h_edit_nav_cmds">here</A>
32785 to see the available Editing and Navigation commands.
32787 &lt;End of help on this topic&gt;
32788 </BODY>
32789 </HTML>
32790 ====== h_config_usenormal_color =====
32791 <HTML>
32792 <HEAD>
32793 <TITLE>OPTION: Use Normal Color</TITLE>
32794 </HEAD>
32795 <BODY>
32796 <H1>OPTION: Use Normal Color</H1>
32798 When you use this color value, the actual color used will be the same
32799 as the corresponding Normal Color.
32800 For example if your Normal Color is black on white and you set both
32801 the foreground and background colors here to use the Normal Color, you'll
32802 get black on white. If you later change the Normal Color to red on blue
32803 this color will also change to red on blue.
32805 <A HREF="h_color_setup">Descriptions of the available commands</A>
32807 Look <A HREF="h_edit_nav_cmds">here</A>
32808 to see the available Editing and Navigation commands.
32810 &lt;End of help on this topic&gt;
32811 </BODY>
32812 </HTML>
32813 ====== h_config_usenone_color =====
32814 <HTML>
32815 <HEAD>
32816 <TITLE>OPTION: Use None Color</TITLE>
32817 </HEAD>
32818 <BODY>
32819 <H1>OPTION: Use None Color</H1>
32821 This is a special color that simply means to leave the color alone.
32822 It is useful for Index symbols and for Keyword Colors used in the Subject
32823 field of an index line.
32824 The most likely use is to set an explicit foreground color and then set
32825 the background color to the None Color.
32826 That will cause the symbol or keyword to be drawn in the foreground color
32827 with a background equal to whatever color the rest of the index line is already
32828 drawn in.
32829 You will see no visible effect unless you have assigned Indexcolor Rules to
32830 color index lines or you have set an actual color for the Reverse Color.
32832 <A HREF="h_color_setup">Descriptions of the available commands</A>
32834 Look <A HREF="h_edit_nav_cmds">here</A>
32835 to see the available Editing and Navigation commands.
32837 &lt;End of help on this topic&gt;
32838 </BODY>
32839 </HTML>
32840 ====== h_config_dflt_color =====
32841 <HTML>
32842 <HEAD>
32843 <TITLE>OPTION: Default Color</TITLE>
32844 </HEAD>
32845 <BODY>
32846 <H1>OPTION: Default Color</H1>
32848 Setting default will cause the color to be the default color.
32849 Unsetting default is normally done by choosing a color, but in some cases
32850 you may want to declare the current default color to be your non-default
32851 choice.
32852 For example, the default Keyname Color is the same as the Reverse Color.
32853 Whenever the Reverse Color changes the Keyname Color will also change, unless
32854 you've changed it or unset the default box.
32856 <A HREF="h_color_setup">Descriptions of the available commands</A>
32858 Look <A HREF="h_edit_nav_cmds">here</A>
32859 to see the available Editing and Navigation commands.
32861 &lt;End of help on this topic&gt;
32862 </BODY>
32863 </HTML>
32864 ====== h_config_bold_slctbl =====
32865 <HTML>
32866 <HEAD>
32867 <TITLE>OPTION: Bold</TITLE>
32868 </HEAD>
32869 <BODY>
32870 <H1>OPTION: Bold</H1>
32872 The color for this particular section may have the Bold attribute turned
32873 on or off.
32874 Setting bold will cause the characters to be bold.
32876 <A HREF="h_color_setup">Descriptions of the available commands</A>
32878 Look <A HREF="h_edit_nav_cmds">here</A>
32879 to see the available Editing and Navigation commands.
32881 &lt;End of help on this topic&gt;
32882 </BODY>
32883 </HTML>
32884 ====== h_config_kw_color =====
32885 <HTML>
32886 <HEAD>
32887 <TITLE>OPTION: Keyword Colors</TITLE>
32888 </HEAD>
32889 <BODY>
32890 <H1>OPTION: Keyword Colors</H1>
32892 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
32893 Keywords are displayed as part of the Subject by default.
32894 They are also displayed as part of the Subject if the tokens
32895 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
32896 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32897 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
32898 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
32900 For example, you might have set up a Keyword
32901 &quot;Work&quot; using the
32902 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
32903 You could cause that Keyword to show up as a special color
32904 by setting up the Keyword Color using this option, and then including it
32905 in the MESSAGE INDEX screen using one of the tokens listed above in the
32906 <!--#echo var="VAR_index-format"-->.
32908 <A HREF="h_color_setup">Descriptions of the available commands</A>
32910 Look <A HREF="h_edit_nav_cmds">here</A>
32911 to see the available Editing and Navigation commands.
32913 &lt;End of help on this topic&gt;
32914 </BODY>
32915 </HTML>
32916 ====== h_config_customhdr_color =====
32917 <HTML>
32918 <HEAD>
32919 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
32920 </HEAD>
32921 <BODY>
32922 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
32924 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
32925 For example, you may set the color of the Subject header or the From header.
32926 The foreground color is the color of the actual character and the
32927 background color is the color of the area behind the character.
32929 In addition to setting the colors for particular headers (like the Subject)
32930 you may also set a color to be used for all headers unless overridden by a
32931 more specific Viewer Header Color.
32932 To do this use the
32933 <A HREF="h_config_header_general_color">Header General Color</A>.
32935 For Header Colors,
32936 there is an additional line on the
32937 screen labeled &quot;Pattern to match&quot;.
32938 If you leave that blank, then the whole field for that header will
32939 be colored.
32940 However, if you give a pattern to match, the coloring will only take place
32941 if there is a match for that pattern in the value of the field.
32942 For example, if you are working on a color for the Subject header and
32943 you fill in a pattern of &quot;important&quot;, then only Subjects that
32944 contain the word &quot;important&quot; will be colored.
32946 If the pattern you enter is a comma-separated list of patterns, then coloring
32947 happens if any of those patterns matches.
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_indextoken_color =====
32958 <HTML>
32959 <HEAD>
32960 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
32961 </HEAD>
32962 <BODY>
32963 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
32965 This option allows you to set up the color in which any token, not specified by the
32966 previous options, will be colored in the MESSAGE INDEX screen. 
32968 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
32969 a token that can be used in the index format. 
32970 The list of available tokens is <A HREF="h_index_tokens">here</A>.
32972 If you fail to enter a valid token your entry will be ignored, and you will be asked to
32973 enter a new one. Once you have entered a valid token, a line will be added to the
32974 configuration screen that you can use to set up the colors in which that token will
32975 be painted. This is done in the same way that you configure colors for other
32976 variables.
32978 <A HREF="h_color_setup">Descriptions of the available commands</A>
32980 Look <A HREF="h_edit_nav_cmds">here</A>
32981 to see the available Editing and Navigation commands.
32983 &lt;End of help on this topic&gt;
32984 </BODY>
32985 </HTML>
32986 ====== h_config_customhdr_pattern =====
32987 <HTML>
32988 <HEAD>
32989 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
32990 </HEAD>
32991 <BODY>
32992 <H1>OPTION: Viewer Header Color Pattern</H1>
32994 If you leave this blank, then the whole field for the header will
32995 be colored.
32996 If you give a pattern to match, the coloring will only take place
32997 if there is a match for that pattern in the value of the field.
32998 For example, if you are working on a color for the Subject header and
32999 you fill in a pattern of &quot;important&quot;, then only Subjects that
33000 contain the word &quot;important&quot; will be colored.
33002 For address headers (like From and To) and for the Newsgroups header,
33003 a pattern match will cause only the matched addresses or newsgroups to be
33004 colored.
33005 If there is no pattern to match, then all of the addresses or newsgroups
33006 in the relevant header will be colored.
33008 The matching pattern may be a comma-separated list of patterns to match
33009 instead of a single pattern.
33010 For example, you could use the pattern &quot;important,urgent&quot; which would
33011 cause a match if either the word &quot;important&quot; or the word
33012 &quot;urgent&quot; appeared in the value of the header.
33013 You could list several comma-separated email addresses in the Header
33014 From Color pattern so that those addresses will be colored when any of
33015 them appear in the From header.
33017 To add a new matching pattern or change the existing pattern use the 
33018 <!--chtml if pinemode="function_key"-->
33019 &quot;F4&quot;
33020 <!--chtml else-->
33021 &quot;C&quot;
33022 <!--chtml endif-->
33023 &quot;Change&quot; command that is available when the &quot;Pattern to
33024 match&quot; line is highlighted.
33026 <!--chtml if pinemode="function_key"-->
33027 &quot;F10&quot;
33028 <!--chtml else-->
33029 &quot;D&quot;
33030 <!--chtml endif-->
33031 &quot;Delete&quot; command may be used to quickly remove all patterns
33032 for a particular header.
33034 &lt;End of help on this topic&gt;
33035 </BODY>
33036 </HTML>
33037 ====== h_color_setup =====
33038 <HTML>
33039 <HEAD>
33040 <TITLE>SETUP COLOR COMMANDS</TITLE>
33041 </HEAD>
33042 <BODY>
33043 <H1>SETUP COLOR COMMANDS</H1>
33044 <!--chtml if pinemode="function_key"-->
33045 <PRE>
33046 Available Commands -- Group 1
33047 -------------------------------
33048 F1  Display this help text
33049 F2  Show other available commands
33050 F3  Exit to MAIN MENU
33051 F4  Select the highlighted foreground or background color
33052 F5  Move to previous line
33053 F6  Move to next line
33054 F7  Previous page
33055 F8  Next page
33056 F9  Add a config section for a header field
33057 F10 Restore all default colors (for all sections)
33058 F11 Print color configuration screen
33059 F12 Whereis (search for word)
33061 Available Commands -- Group 2
33062 -------------------------------
33063 F1  Display this help text
33064 F2  Show other available commands
33065 F5  Delete config section for highlighted header field
33066 F6  Shuffle the order of Header Color sections
33067 </PRE>
33068 <!--chtml else-->
33069 <PRE>
33070 General commands
33071 -------------------------------------------------
33072  ?  Display this help text     E  Exit back to MAIN MENU
33073  P  Previous Line              N  Next Line
33074  -  Previous page             Spc (space bar) Next page
33075  W  WhereIs (search for word)  %  Print color configuration screen
33077 Color Setup Commands
33078 ------------------------------------------------
33079  *  Select the highlighted foreground or background color
33080  A  Add a config section for a header field
33081  D  Delete config section for highlighted header field
33082  R  Restore all default colors (for all sections)
33083  $  Shuffle the order of Header Color sections
33084 </PRE>
33085 <!--chtml endif-->
33087 <H2>Description of the Setup Color Screen</H2>
33089 From this screen you may turn on color and set the colors of
33090 various parts of the Alpine display.
33091 For help on turning on color move your cursor into the Color Style section
33092 at the top of the Setup Color screen and ask for help.
33095 There are several sections in the Setup Color Screen.
33096 At the top are some settings that handle the style of color used
33097 with your terminal emulator (UNIX only), and some settings that
33098 control how the current indexline and the titlebar are colored.
33099 After that comes a long section called GENERAL COLORS that allows
33100 you to set the color of many elements in the Alpine screens.
33101 For example, the color of the titlebar, status messages,
33102 selectable links, quotes and signatures in messages, and so on.
33103 After that is a section called INDEX COLORS that allows you to
33104 set the colors of various pieces of the displayed index lines in
33105 the MESSAGE INDEX screen.
33106 The next section is HEADER COLORS. This is for coloring headers of
33107 messages in the MESSAGE TEXT screen in just about any way you would like.
33108 Finally, the KEYWORD COLORS section allows you to highlight
33109 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
33110 in the MESSAGE INDEX screen.
33113 To change a color, highlight the color you want to change (for example,
33114 the Status Color) by moving
33115 the cursor into it.
33116 You may want to read the help text for the color to see a brief desription
33117 of what you are coloring.
33118 Then press &quot;C&quot; for Change to set the color to something new.
33119 That will put you into a screen with two columns of colors, one for
33120 the foreground color and one for the background color.
33121 The foreground color is just the color you want the actual characters
33122 to be and the background color is the color of the rest of the rectangle
33123 behind the characters.
33124 Select the foreground and background colors desired by using the Next and
33125 Prev keys to highlight the color, and the * command to select it.
33127 To set a color to its default value, set the X in the Default line at
33128 the bottom of the list of colors.
33131 The HEADER COLORS section is a little bit different from the others.
33132 Besides coloring the specific fields that Alpine knows about, you may also
33133 color specific header fields when viewing a message in the MESSAGE TEXT
33134 screen.
33135 For example, you may color the Subject header a particular color.
33136 There are a few commands for use with headers.
33137 The &quot;AddHeader&quot; command adds a section to the color
33138 configuration screen that allows you to set the color for that header.
33139 You'll be asked for the name of the header field you want to color.
33140 If you wanted to color the Subject, you would answer
33141 with the word &quot;subject&quot;.
33142 Once you've added a header field, the color setting works just like the
33143 other color fields, except that there is an additional line on the
33144 configuration screen labeled &quot;Pattern to match&quot;.
33145 If you leave that blank, then the whole field for that header will always
33146 be colored.
33147 However, if you give a pattern to match, the coloring will only take place
33148 if there is a match for that pattern in the value of the field.
33149 For example, if you are working on a color for the Subject header and
33150 you fill in a pattern of &quot;important&quot;, then only Subjects that
33151 contain the word &quot;important&quot; will be colored.
33153 The &quot;DeleteHdr&quot; command removes a header section from the
33154 configuration altogether.
33155 The &quot;Shuffle&quot; command changes the order of header sections.
33156 This is only necessary if you use header sections with pattern fields.
33157 For example, if you have two Subject sections, one with one pattern and
33158 another with another pattern, and the subject for a particular message
33159 happens to match both, then the color from the first match is used.
33162 The command &quot;RestoreDefs&quot; will restore all of the default colors.
33163 Each section will change to the default value used for that section when
33164 color is first enabled.
33165 When you restore all default colors the color settings for the Header Colors
33166 will be unset (since that's the default), but the header fields you've
33167 added will remain so that you may easily reset them.
33168 In order to get rid of them completely you'd have to use
33169 the &quot;DeleteHdr&quot; command.
33172 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
33173 may be set with matching rules and that is configured separately from
33174 the rest of the color settings described here.
33175 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
33176 instead of in the Setup/Kolor section.
33178 <P><UL>
33179 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33180 </UL><P>
33181 &lt;End of help on this topic&gt;
33182 </BODY>
33183 </HTML>
33184 ====== h_config_news_uses_recent ======
33185 <HTML>
33186 <HEAD>
33187 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
33188 </HEAD>
33189 <BODY>
33190 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
33192 This feature causes certain messages to be marked as "New" in the
33193 MESSAGE INDEX of newsgroups.
33194 This feature is set by default.
33198 When opening a newsgroup, Alpine will consult your "newsrc" file and
33199 determine the last message you have previously disposed of via the "D"
33200 key.  If this feature is set, any subsequent messages will be shown in the
33201 Index with an "N", and the first of these messages will be highlighted.
33202 Although this is only an approximation of true "New" or "Unseen"
33203 status, it provides a useful cue to distinguish more-or-less recent
33204 messages from those you have seen previously, but are not yet ready to
33205 mark deleted.
33209 Background: your "newsrc" file (used to store message status information
33210 for newsgroups) is only capable of storing a single flag, and Alpine uses
33211 this to record whether or not you are "done with" a message, as
33212 indicated by marking the message as "Deleted".  Unfortunately, this
33213 means that Alpine has no way to record exactly which messages you have
33214 previously seen, so it normally does not show the "N" status flag for
33215 any messages in a newsgroup. This feature enables a starting
33216 *approximation* of seen/unseen status that may be useful.
33218 &lt;End of help on this topic&gt;
33219 </BODY>
33220 </HTML>
33221 ====== h_config_expose_hidden_config =====
33222 <HTML>
33223 <HEAD>
33224 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
33225 </HEAD>
33226 <BODY>
33227 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
33229 If set, this causes configuration options and features that are normally
33230 hidden from view to be editable in the Setup/Config screen.
33233 The purpose of this feature is to allow you to change configuration
33234 features and variables that are normally hidden.
33235 This is particularly useful if you are using a remote configuration,
33236 where it is difficult to edit the contents manually, but it may also be used
33237 on a local pinerc configuration file.
33239 If set, several configuration variables and features that are normally
33240 hidden from view will show up in the Setup/Configuration screen.
33241 They will be at the bottom of the configuration screen.
33242 You can find them by searching for the words &quot;hidden configuration&quot;.
33245 Note that this is an advanced feature that should be used with care.
33246 The reason that this part of the configuration is normally hidden is because
33247 there is a significant potential for causing problems if you change these
33248 variables.
33249 If something breaks after a change try changing it back to see if that is
33250 what is causing the problem.
33251 There are also some variables that are normally hidden because they are
33252 manipulated through Alpine in other ways.
33253 For example, colors are normally set using the Setup/Kolors screen and
33254 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
33255 the Setup/AddressBooks screen, so there is little reason to edit these directly.
33256 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
33257 the Add, Delete, and Rename commands in the FOLDER LIST screen,
33258 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
33259 internally by Alpine and not set directly by the user.
33261 <UL>   
33262 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33263 </UL><P>
33264 &lt;End of help on this topic&gt;
33265 </BODY>
33266 </HTML>
33267 ====== h_config_disable_signature_edit =====
33268 <HTML>
33269 <HEAD>
33270 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
33271 </HEAD>
33272 <BODY>
33273 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
33275 If set, this disables the editing of signature files from within
33276 the Setup/Config screen.
33278 <UL>   
33279 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33280 </UL><P>
33281 &lt;End of help on this topic&gt;
33282 </BODY>
33283 </HTML>
33284 ====== h_config_disable_roles_templateedit =====
33285 <HTML>
33286 <HEAD>
33287 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
33288 </HEAD>
33289 <BODY>
33290 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
33292 If set, this disables the editing of template files within the
33293 Role setup screen.
33295 <UL>   
33296 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33297 </UL><P>
33298 &lt;End of help on this topic&gt;
33299 </BODY>
33300 </HTML>
33301 ====== h_config_disable_roles_sigedit =====
33302 <HTML>
33303 <HEAD>
33304 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
33305 </HEAD>
33306 <BODY>
33307 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
33309 If set, this disables the editing of signature files within the
33310 Role setup screen.
33312 <UL>   
33313 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33314 </UL><P>
33315 &lt;End of help on this topic&gt;
33316 </BODY>
33317 </HTML>
33318 ====== h_config_disable_roles_setup =====
33319 <HTML>
33320 <HEAD>
33321 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
33322 </HEAD>
33323 <BODY>
33324 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
33326 If set, this disables the Setup/Rules/Roles command.
33328 <UL>   
33329 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33330 </UL><P>
33331 &lt;End of help on this topic&gt;
33332 </BODY>
33333 </HTML>
33334 ====== h_config_disable_pipes_in_templates =====
33335 <HTML>
33336 <HEAD>
33337 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
33338 </HEAD>
33339 <BODY>
33340 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
33342 By default, if a template file name is followed by a vertical bar (|) then
33343 that causes the file to be executed to produce the text for the template.
33344 If this feature is set, then this is not allowed.
33346 <UL>   
33347 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33348 </UL><P>
33349 &lt;End of help on this topic&gt;
33350 </BODY>
33351 </HTML>
33352 ====== h_config_disable_pipes_in_sigs =====
33353 <HTML>
33354 <HEAD>
33355 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
33356 </HEAD>
33357 <BODY>
33358 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
33360 By default, if a signature file name is followed by a vertical bar (|) then
33361 that causes the file to be executed to produce the text for the signature.
33362 If this feature is set, then this is not allowed.
33364 <UL>   
33365 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33366 </UL><P>
33367 &lt;End of help on this topic&gt;
33368 </BODY>
33369 </HTML>
33370 ====== h_config_disable_password_cmd =====
33371 <HTML>
33372 <HEAD>
33373 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
33374 </HEAD>
33375 <BODY>
33376 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
33378 If set, then the Setup/Newpassword command is disabled.
33380 <UL>   
33381 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33382 </UL><P>
33383 &lt;End of help on this topic&gt;
33384 </BODY>
33385 </HTML>
33386 ====== h_config_disable_password_caching =====
33387 <HTML>
33388 <HEAD>
33389 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
33390 </HEAD>
33391 <BODY>
33392 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
33394 Normally, loginname/password combinations are cached in Alpine so that
33395 you do not have to enter the same password more than once in a session.
33396 A disadvantage to this approach is that the password must be stored in
33397 the memory image of the running Alpine in order that it can be re-used.
33398 In the event that Alpine crashes and produces a core dump, and that core
33399 dump is readable by others, the loginname and password could be read
33400 from the core dump.
33402 If this feature is set, then the passwords will not be cached and you
33403 will have to retype the password whenever Alpine needs it.
33404 Even with this feature set there is still some chance that the core
33405 file will contain a password, so care should be taken to make the
33406 core files unreadable.
33408 NOTE: If PASSFILE caching is enabled, this does not disable it.
33409 That is a separate and independent feature.
33410 <UL>   
33411 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33412 </UL><P>
33413 &lt;End of help on this topic&gt;
33414 </BODY>
33415 </HTML>
33416 ====== h_config_disable_password_file_saving =====
33417 <HTML>
33418 <HEAD>
33419 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></TITLE>
33420 </HEAD>
33421 <BODY>
33422 <H1>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></H1>
33424 This feature changes the behavior of Alpine when a login name and password combination
33425 for a specific server is not found in the password file. The default behavior is that
33426 Alpine will ask the user if they wish to save this information in the password file for future
33427 use. It is assumed that if a user created a password file it is because they intend
33428 to use it, but in some instances a user might want to save some passwords and not others.
33429 In this case, enabling this feature will make Alpine not add any more passwords to the
33430 password file and will only use the passwords that it already saved. If you wish to allow
33431 Alpine to save more passwords in the password file, disable this feature.
33433 <UL>   
33434 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33435 </UL><P>
33436 &lt;End of help on this topic&gt;
33437 </BODY>
33438 </HTML>
33439 ====== h_config_disable_kb_lock =====
33440 <HTML>
33441 <HEAD>
33442 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
33443 </HEAD>
33444 <BODY>
33445 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
33447 If set, then the Keyboard Lock command is removed from the MAIN MENU.
33449 <UL>   
33450 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33451 </UL><P>
33452 &lt;End of help on this topic&gt;
33453 </BODY>
33454 </HTML>
33455 ====== h_config_disable_config_cmd =====
33456 <HTML>
33457 <HEAD>
33458 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
33459 </HEAD>
33460 <BODY>
33461 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
33463 If set, then the Setup/Config screen is disabled.
33465 <UL>   
33466 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33467 </UL><P>
33468 &lt;End of help on this topic&gt;
33469 </BODY>
33470 </HTML>
33471 ====== h_config_allow_chg_from =====
33472 <HTML>
33473 <HEAD>
33474 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
33475 </HEAD>
33476 <BODY>
33477 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
33479 This feature affects Alpine's handling of the &quot;From:&quot; header field
33480 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
33481 option.
33483 If this feature is set then the From line can be changed just like
33484 all the other header fields that can be changed.
33485 This feature defaults to <EM>ON</EM>.
33487 Even with this feature turned ON (the default) you will not be able 
33488 to change the From header unless you add it to your list of
33489 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
33490 You may also want to change the
33491 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
33492 if you want the From header to always show up in the composer without
33493 having to type the Rich Headers command first.
33495 Note that many sites restrict the use of this feature in order to
33496 reduce the chance of falsified addresses and misdirected mail.
33497 If you want to change the value of what gets included in the From header
33498 in messages you send
33499 look <A HREF="h_config_change_your_from">here</A> for a description.
33501 <UL>   
33502 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33503 </UL><P>
33504 &lt;End of help on this topic&gt;
33505 </BODY>
33506 </HTML>
33507 ====== h_config_disable_collate =====
33508 <HTML>
33509 <HEAD>
33510 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
33511 </HEAD>
33512 <BODY>
33513 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
33515 This is a hard to understand feature that should only be used in rare cases.
33516 Normally, the C function call
33518 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
33520 is used by Alpine.
33521 If you want to try turning it off,
33522 setting this feature will turn it off.
33523 This part of the locale has to do with the sort order
33524 of characters in your locale.
33526 <UL>   
33527 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33528 </UL><P>
33529 &lt;End of help on this topic&gt;
33530 </BODY>
33531 </HTML>
33532 ====== h_config_quell_attach_extra_prompt =====
33533 <HTML>
33534 <HEAD>
33535 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
33536 </HEAD>
33537 <BODY>
33538 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
33540 By default, when you attempt to view an attachment externally
33541 from the &quot;Attachment View&quot; screen, you are asked if you
33542 really want to view the selected attachment.
33545 If this feature is set, you will <B>not</B> be prompted to confirm
33546 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
33547 prompt. This feature was added for those wanting to preserve that
33548 behavior (along with 
33549 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
33552 <UL>   
33553 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33554 </UL><P>
33555 &lt;End of help on this topic&gt;
33556 </BODY>
33557 </HTML>
33558 ====== h_config_quell_attach_ext_warn =====
33559 <HTML>
33560 <HEAD>
33561 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
33562 </HEAD>
33563 <BODY>
33564 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
33567 This feature suppresses the extra warning you can get when trying
33568 to view an attachment for which there is no mime-type match.  Turning
33569 on this feature will just run the program according to extension
33570 instead of first warning the user that it will run according to the
33571 file's extension.
33573 This feature can be used along side 
33574 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
33575 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
33577 <UL>   
33578 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33579 </UL><P>
33580 &lt;End of help on this topic&gt;
33581 </BODY>
33582 </HTML>
33583 ====== h_config_mailcap_params =====
33584 <HTML>
33585 <HEAD>
33586 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
33587 </HEAD>
33588 <BODY>
33589 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
33591 If set, this will allow mailcap named parameter substitution to occur
33592 in mailcap entries.
33593 By default, this is turned off to prevent security problems that may occur
33594 with some incorrect mailcap configurations.
33595 For more information, see RFC1524 and look for "named parameters" in the
33596 text of the RFC.
33598 <UL>   
33599 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33600 </UL><P>
33601 &lt;End of help on this topic&gt;
33602 </BODY>
33603 </HTML>
33604 ====== h_config_disable_shared =====
33605 <HTML>
33606 <HEAD>
33607 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
33608 </HEAD>
33609 <BODY>
33610 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
33612 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
33613 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
33614 will be disabled.
33615 The reason this feature exists is because there are some implementations
33616 of system password lookup routines that are very slow when presented with
33617 a long loginname that does not exist.
33618 This feature could be set to prevent the delay at startup time when the
33619 names above are searched for in the password file.
33621 <UL>   
33622 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33623 </UL><P>
33624 &lt;End of help on this topic&gt;
33625 </BODY>
33626 </HTML>
33627 ====== h_config_hide_nntp_path =====
33628 <HTML>
33629 <HEAD>
33630 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
33631 </HEAD>
33632 <BODY>
33633 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
33635 Normally the Path header that Alpine generates when posting to a newsgroup
33636 contains the name of the computer from which the message is being sent and
33637 the user name.
33638 Some believe that this information is used by spammers.
33639 If this feature is set, that information will be replaced with the text
33641 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
33643 instead.
33645 It should be noted that many servers being connected to will still reveal
33646 the information that this feature attempts to protect.
33648 <UL>   
33649 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33650 </UL><P>
33651 &lt;End of help on this topic&gt;
33652 </BODY>
33653 </HTML>
33654 ====== h_config_no_bezerk_zone =====
33655 <HTML>
33656 <HEAD>
33657 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
33658 </HEAD>
33659 <BODY>
33660 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
33662 POSIX mandates a timezone in UNIX mailbox format folder delimiters
33663 (the line that begins with From <SPACE>).
33664 Some versions of Berkeley mail have trouble with this, and don't recognize
33665 the line as a message delimiter.
33666 If this feature is set, the timezone will be left off the delimiter line.
33668 <UL>   
33669 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33670 </UL><P>
33671 &lt;End of help on this topic&gt;
33672 </BODY>
33673 </HTML>
33674 ====== h_config_quell_domain_warn =====
33675 <HTML>
33676 <HEAD>
33677 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
33678 </HEAD>
33679 <BODY>
33680 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
33682 When your configuration is set up so that your domain name contains no dots,
33683 it is usually a configuration error.
33684 By default, Alpine will warn you about this when you start it up.
33685 You will see a warning message that looks like
33688 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
33691 If this feature is set, the warning is turned off.
33693 <UL>   
33694 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33695 </UL><P>
33696 &lt;End of help on this topic&gt;
33697 </BODY>
33698 </HTML>
33699 ====== h_config_quell_imap_env =====
33700 <HTML>
33701 <HEAD>
33702 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
33703 </HEAD>
33704 <BODY>
33705 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
33707 In the MESSAGE INDEX screen, if the open folder is being accessed
33708 using IMAP, Alpine normally tries to paint the index lines on the screen
33709 as soon as the information arrives from the IMAP server.
33710 This means that the index information makes it onto the screen more quickly
33711 than it otherwise would.
33712 This sometimes results in behavior that bothers some users.
33713 For example, when paging to a new page of the index, it may be possible for
33714 the lines to be painted on the screen in a random order, rather than from
33715 top to bottom.
33718 Setting this feature causes Alpine to wait for all of the information
33719 to be gathered before it paints the index screen.
33720 Once it collects all of the information, the screen will be painted quickly
33721 from top to bottom.
33723 <UL>   
33724 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33725 </UL><P>
33726 &lt;End of help on this topic&gt;
33727 </BODY>
33728 </HTML>
33729 ====== h_config_quell_news_env =====
33730 <HTML>
33731 <HEAD>
33732 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
33733 </HEAD>
33734 <BODY>
33735 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
33737 In the MESSAGE INDEX screen, if the open folder is being accessed
33738 using NNTP (News), Alpine normally tries to paint the index lines on the screen
33739 as soon as the information arrives from the NNTP server.
33740 This means that the index information makes it onto the screen more quickly
33741 than it otherwise would.
33742 This sometimes results in behavior that bothers some users.
33743 For example, when paging to a new page of the index, it may be possible for
33744 the lines to be painted on the screen in a random order, rather than from
33745 top to bottom.
33748 Setting this feature causes Alpine to wait for all of the information
33749 to be gathered before it paints the index screen.
33750 Once it collects all of the information, the screen will be painted quickly
33751 from top to bottom.
33753 <UL>   
33754 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33755 </UL><P>
33756 &lt;End of help on this topic&gt;
33757 </BODY>
33758 </HTML>
33759 ====== h_config_quell_content_id =====
33760 <HTML>
33761 <HEAD>
33762 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
33763 </HEAD>
33764 <BODY>
33765 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
33767 This feature changes the behavior of Alpine when sending messages.
33768 It is intended to work around a bug in Microsoft's Outlook XP mail user
33769 agent.
33770 As of this writing, Microsoft has acknowledged the bug but
33771 has not added it to the Knowledge Base.
33772 We have been told that there will be a post-SP1 hotfix for Outlook XP.
33773 This particular bug has bug fix number OfficeQFE:4781.
33774 The nature of the bug is that messages with attachments that
33775 contain a Content-ID header (which standard Alpine attachments do)
33776 do not show the attachment indicator (a paperclip) when viewed with
33777 Outlook XP.
33778 So the user has no indication that the message contains an attachment.
33781 If this feature is set then Alpine will remove most Content-ID headers
33782 before sending a message.
33783 If an attachment is of type MESSAGE, then the existing Content-ID headers
33784 inside the message will be left intact.
33785 This would only happen with Alpine if a message was forwarded as an attachment
33786 or if a message with a message attached was forwarded.
33787 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
33788 the Content-ID headers of the alternative parts will not be removed.
33791 Because the Content-ID header is a standard part of MIME it is possible
33792 that setting this feature will break something.
33793 For example, if an attachment has a Content-ID header that is necessary
33794 for the correct functioning of that attachment, it is possible that Alpine
33795 may remove that header when the attachment is forwarded.
33796 However, it seems fairly safe at this time.
33799 <UL>   
33800 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33801 </UL><P>
33802 &lt;End of help on this topic&gt;
33803 </BODY>
33804 </HTML>
33805 ====== h_config_winpos_in_config =====
33806 <HTML>
33807 <HEAD>
33808 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
33809 </HEAD>
33810 <BODY>
33811 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
33813 PC-Alpine only.
33816 Normally, PC-Alpine will store its window size and position in the
33817 Windows Registry.
33818 This is convenient if you want to use the same remote
33819 configuration from more than one PC.
33820 If you use multiple configuration files to start PC-Alpine, you may want
33821 to store the window size and position in the configuration file instead
33822 of in the Registry.
33823 Setting this feature causes the value to be stored in 
33824 <A HREF="h_config_window_position">Window-Position</A>.
33827 <UL>   
33828 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33829 </UL><P>
33830 &lt;End of help on this topic&gt;
33831 </BODY>
33832 </HTML>
33833 ====== h_config_quell_ssl_largeblocks =====
33834 <HTML>
33835 <HEAD>
33836 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
33837 </HEAD>
33838 <BODY>
33839 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
33841 PC-Alpine only.
33843 This feature changes the behavior of fetching messages
33844 and attachments so that the message data is fetched in chunks no larger
33845 than 12K bytes.
33846 This works around a bug in Microsoft's SSL/TLS support.
33847 Some versions of Microsoft SSL are not able to read full-sized (16K)
33848 SSL/TLS packets.
33849 Some servers will send such packets and this will
33850 cause PC-Alpine to crash with the error
33853 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
33856 Microsoft is aware of the problem and has developed a hotfix for it, it is
33857 discussed in article 300562 in the Microsoft Knowledge Base.
33859 <UL>   
33860 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33861 </UL><P>
33862 &lt;End of help on this topic&gt;
33863 </BODY>
33864 </HTML>
33865 ====== h_config_quell_partial =====
33866 <HTML>
33867 <HEAD>
33868 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
33869 </HEAD>
33870 <BODY>
33871 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
33873 Partial fetching is a feature of the IMAP protocol.
33874 By default, Alpine
33875 will use partial fetching when copying the contents of a message or attachment
33876 from the IMAP server to Alpine.
33877 This means that the fetch will be done in many
33878 small chunks instead of one big chunk. The main benefit of this approach is
33879 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
33880 to stop the fetch early. In some cases partial fetching may cause a performance
33881 problem so that the fetching of data takes significantly longer when partial
33882 fetching is used. Turning on this feature will turn off partial fetching.
33884 <UL>   
33885 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33886 </UL><P>
33887 &lt;End of help on this topic&gt;
33888 </BODY>
33889 </HTML>
33890 ====== h_config_quell_personal_name_prompt =====
33891 <HTML>
33892 <HEAD>
33893 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
33894 </HEAD>
33895 <BODY>
33896 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
33898 PC-Alpine only.  This feature quells the prompting for a 
33899 <A HREF="h_config_pers_name">personal name</A>.  This
33900 prompt normally happens before composing a message, and only happens when
33901 there is no personal name already set.
33903 <UL>   
33904 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33905 </UL><P>
33906 &lt;End of help on this topic&gt;
33907 </BODY>
33908 </HTML>
33909 ====== h_config_quell_user_id_prompt =====
33910 <HTML>
33911 <HEAD>
33912 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
33913 </HEAD>
33914 <BODY>
33915 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
33917 PC-Alpine only.  This feature quells the prompting for a 
33918 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
33919 if the information can be obtained from the login name used
33920 to open the INBOX.  Normally, this prompt happens before composing
33921 a message, and only happens when there is no user-id already set
33922 in the configuration.
33924 With this feature set, composing a message is only possible after
33925 establishing a connection to the INBOX.
33927 <UL>   
33928 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33929 </UL><P>
33930 &lt;End of help on this topic&gt;
33931 </BODY>
33932 </HTML>
33933 ====== h_config_save_aggregates =====
33934 <HTML>
33935 <HEAD>
33936 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
33937 </HEAD>
33938 <BODY>
33939 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
33941 This feature will optimize an aggregate copy operation, if
33942 possible, by issuing a single IMAP <EM>COPY</EM> command with a
33943 list of the messages to be copied.
33944 This feature is set by default.
33945 This may reduce network traffic and elapsed time for the Save.
33946 <EM>However, many IMAP servers (including the UW IMAP server) do
33947 not preserve the order of messages when this optimization is applied.</EM>
33948 If this feature is not set, 
33949 Alpine will copy each message individually and the order of the messages
33950 will be preserved.
33952 <UL>   
33953 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33954 </UL><P>
33955 &lt;End of help on this topic&gt;
33956 </BODY>
33957 </HTML>
33958 ====== h_config_use_system_translation =====
33959 <HTML>
33960 <HEAD>
33961 <TITLE>FEATURE: Use System Translation</TITLE>
33962 </HEAD>
33963 <BODY>
33964 <H1>FEATURE: Use System Translation</H1>
33966 UNIX Alpine only.
33968 Alpine normally uses its own internal software to convert between the multi-byte
33969 representation of characters and the Unicode representation of those
33970 same characters.
33971 It converts from the multi-byte characters your keyboard produces to Unicode,
33972 and from Unicode to the multi-byte characters your display expects.
33973 Alpine also uses its own internal software to decide how much space on
33974 the screen a particular Unicode character will occupy.
33977 Setting this feature tells Alpine to use the system-supplied routines to
33978 perform these tasks instead.
33979 In particular there are three tasks and three system routines that will
33980 be used for these tasks.
33983 To convert from multi-byte to Unicode the routine
33986 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
33989 is used.
33990 To convert from Unicode to multi-byte the routine
33993 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
33996 is used.
33997 And to find the screen width a particular Unicode character will
33998 occupy the routine used is
34001 <CENTER><SAMP>wcwidth</SAMP></CENTER>
34004 This feature has been only lightly tested.
34005 The internal routines should normally be used unless you run into
34006 a problem that you think may be solved by using the system routines.
34007 Note that your environment needs to be set up for these
34008 routines to work correctly.
34009 In particular, the LANG or LC_CTYPE variable in your environment will
34010 need to be set.
34013 <UL>   
34014 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34015 </UL><P>
34016 &lt;End of help on this topic&gt;
34017 </BODY>
34018 </HTML>
34019 ====== h_config_suspend_spawns =====
34020 <HTML>
34021 <HEAD>
34022 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
34023 </HEAD>
34024 <BODY>
34025 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
34027 This feature affects Alpine's behavior when process suspension is enabled
34028 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
34029 temporarily interact with the operating system command &quot;shell&quot; 
34030 without
34031 quitting Alpine, and then subsequently resume the still-active Alpine session.
34034 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
34035 is set and subsequently the Ctrl-Z key
34036 is pressed, Alpine will normally suspend itself and return temporary control
34037 to Alpine's parent shell process.  However, if this feature is set, Alpine
34038 will instead create an inferior subshell process.  This is useful when the
34039 parent process is not intended to be used interactively.  Examples include
34040 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
34041 or via a menu system.<P>
34043 Note that one typically resumes a suspended Alpine by entering the Unix
34044 &quot;fg&quot; command, but if this feature is set, it will be necessary to
34045 enter the &quot;exit&quot; command instead.
34047 <UL>   
34048 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34049 </UL><P>
34050 &lt;End of help on this topic&gt;
34051 </BODY>
34052 </HTML>
34053 ====== h_config_8bit_smtp =====
34054 <HTML>
34055 <HEAD>
34056 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
34057 </HEAD>
34058 <BODY>
34059 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
34061 This feature affects Alpine's behavior when sending mail.
34062 By default, this feature is set.
34063 Internet standards
34064 require that all electronic mail messages traversing the global Internet
34065 consist of 7bit ASCII characters unless a pair of cooperating mail 
34066 transfer agents explicitly agree to allow 8bit messages.  In general, 
34067 then, exchanging messages in non-ASCII characters requires MIME encoding.
34069 However, there are now Internet standards that allow for unencoded 8bit
34070 exchange of messages between cooperating systems.  When this feature is set
34071 Alpine will try to negotiate unencoded 8bit transmission during the
34072 sending process.  Should the negotiation fail, Alpine will fall back to its
34073 ordinary encoding rules. 
34075 Note, this feature relies on your system's mail transport agent or
34076 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
34077 having the negotiation mechanism introduced in
34078 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
34079 &quot;8BITMIME&quot;. 
34081 ESMTP allows for graceful migration to upgraded mail transfer agents, but
34082 it is possible that this feature might cause problems for some servers. 
34083 <P><UL>
34084 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34085 </UL>
34086 <P>&lt;End of help on this topic&gt;
34087 </BODY>
34088 </HTML>
34089 ====== h_config_8bit_nntp =====
34090 <HTML>
34091 <HEAD>
34092 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
34093 </HEAD>
34094 <BODY>
34095 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
34097 This feature affects Alpine's behavior when posting news.  
34101 The Internet standard for exchanging USENET news messages (RFC-1036)
34102 specifies that USENET messages should conform to Internet mail standards
34103 and contain only 7bit characters, but much of the news transport software
34104 in use today is capable of successfully sending messages containing 8bit
34105 characters.  Hence, many people believe that it is appropriate to send 8bit
34106 news messages without any MIME encoding.
34110 Moreover, there is no Internet standard for explicitly negotiating 8bit
34111 transfer, as there is for Internet email.  Therefore, Alpine provides the
34112 option of posting unencoded 8bit news messages, though not as the default.
34113 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
34114 postings that contain 8bit characters. 
34118 Note, articles may cross a path or pass through news transport software
34119 that is unsafe or even hostile to 8bit characters.  At best this will only
34120 cause the posting to become garbled.  The safest way to transmit 8bit
34121 characters is to leave Alpine's MIME encoding turned on, but recipients
34122 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
34123 messages.
34125 &lt;End of help on this topic&gt;
34126 </BODY>
34127 </HTML>
34128 ====== h_config_mark_for_cc =====
34129 <HTML>
34130 <HEAD>
34131 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
34132 </HEAD>
34133 <BODY>
34134 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
34136 This feature affects Alpine's MESSAGE INDEX display.
34137 By default, a '+' is displayed in the first column if the
34138 message is addressed directly to you.
34139 When this feature is set and the message is not addressed to you, then a
34140 '-' character is displayed if the message is instead Cc'd directly
34141 to you.
34144 <UL>   
34145 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34146 </UL><P>
34147 &lt;End of help on this topic&gt;
34148 </BODY>
34149 </HTML>
34150 ====== h_config_tab_uses_unseen =====
34151 <HTML>
34152 <HEAD>
34153 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
34154 </HEAD>
34155 <BODY>
34156 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
34158 This feature affects Alpine's behavior when using the TAB
34159 <A HREF="h_common_nextnew">NextNew Command</A>
34160 to move from one folder to the next.
34161 Alpine's usual behavior is to search for folders
34162 with <EM>Recent</EM> messages in them.
34163 Recent messages are messages that have arrived since the last time the
34164 folder was opened.
34167 Setting this feature causes Alpine to search for <EM>Unseen</EM>
34168 messages instead of Recent messages.
34169 Unseen messages remain Unseen until you view them (or flag then as Seen with
34170 the <A HREF="h_common_flag">Flag Command</A>).
34171 Setting this feature allows you to locate messages you have not read
34172 instead of only recently received messages.
34173 When this feature is set, the feature
34174 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
34175 will have no effect, so the checking may be slower.
34178 Another reason why you might want to use this feature is that Alpine sometimes
34179 opens folders implicitly behind the scenes, and this clears the
34180 Recent status of all messages in the folder.
34181 One example where this happens is when Saving or filtering a
34182 message to another folder.
34183 If that message has some <A HREF="h_config_keywords">keywords</A>
34184 set, then because of some shortcomings
34185 in the IMAP specification, the best way to ensure that those keywords are
34186 still set in the saved copy of the message is to open the folder and
34187 set the keywords explicitly.
34188 Because this clears the Recent status of all messages in that folder the
34189 folder will not be found by the NextNew command unless this feature is set.
34192 &lt;End of help on this topic&gt;
34193 </BODY>
34194 </HTML>
34195 ====== h_config_tab_new_only =====
34196 <HTML>
34197 <HEAD>
34198 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
34199 </HEAD>
34200 <BODY>
34201 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
34203 This feature affects Alpine's behavior when using the TAB key to move from
34204 one message to the next.  Alpine's usual behavior is to select the next
34205 unread message or message flagged as "Important".
34209 Setting this feature causes Alpine to skip the messages flagged as important,
34210 and select unread messages exclusively.  Tab behavior when there are no
34211 new messages left to select remains unchanged.
34213 &lt;End of help on this topic&gt;
34214 </BODY>
34215 </HTML>
34216 ====== h_config_warn_if_subj_blank =====
34217 <HTML>
34218 <HEAD>
34219 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
34220 </HEAD>
34221 <BODY>
34222 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
34224 This feature affects Alpine's behavior when you send a message being
34225 composed.
34226 If this option is set, Alpine will check to see if the message about to be sent
34227 has a subject or not.
34228 If not, you will be asked if you want to send the message anyway.
34231 <UL>   
34232 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34233 </UL><P>
34234 &lt;End of help on this topic&gt;
34235 </BODY>
34236 </HTML>
34237 ====== h_config_warn_if_fcc_blank =====
34238 <HTML>
34239 <HEAD>
34240 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
34241 </HEAD>
34242 <BODY>
34243 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
34245 This feature affects Alpine's behavior when you send a message being
34246 composed.
34247 If this option is set, Alpine will check to see if the message about to be sent
34248 has an Fcc or not.
34249 If not, you will be asked if you want to send the message anyway.
34252 <UL>   
34253 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34254 </UL><P>
34255 &lt;End of help on this topic&gt;
34256 </BODY>
34257 </HTML>
34258 ====== h_config_warn_if_no_to_or_cc =====
34259 <HTML>
34260 <HEAD>
34261 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
34262 </HEAD>
34263 <BODY>
34264 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
34266 This feature affects Alpine's behavior when you send a message being
34267 composed.
34268 If this option is set, Alpine will check to see if the message about to be sent
34269 has either a To address, a Cc address, or a Newsgroup.
34270 If none of these is set,
34271 you will be asked if you want to send the message anyway.
34274 This feature is closely related to
34275 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
34276 Alpine will normally ask if you want to copy a message only to the Fcc.
34277 This feature also applies to cases where there is a Bcc but still no To, Cc,
34278 or Newsgroup.
34279 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
34280 message with only an Fcc, then you won't be asked about sending with
34281 a blank To and Cc and Newsgroups header even if this feature is set.
34282 Similarly, if you have already been asked if you want to send to the Fcc
34283 only and you have answered Yes, then you won't be asked again about sending with
34284 blank To, Cc, and Newsgroups headers even if this feature is set.
34287 <UL>   
34288 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34289 </UL><P>
34290 &lt;End of help on this topic&gt;
34291 </BODY>
34292 </HTML>
34293 ====== h_config_quell_dead_letter =====
34294 <HTML>
34295 <HEAD>
34296 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
34297 </HEAD>
34298 <BODY>
34299 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
34301 This feature affects Alpine's behavior when you cancel a message being
34302 composed.  Alpine's usual behavior is to write the canceled message to
34303 a file named 
34304 <!--chtml if pinemode="os_windows"-->
34305 &quot;DEADLETR&quot;,
34306 <!--chtml else-->
34307 &quot;dead.letter&quot; in your home directory,
34308 <!--chtml endif-->
34309 overwriting any previous message. Under
34310 some conditions (some routine), this can introduce a noticeable delay.
34311 Setting this feature will cause Alpine NOT to write canceled compositions
34312 into the file.
34314 NOTE: Enabling this feature means NO record of canceled messages is
34315 maintained.
34317 This feature affects the newer option
34318 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
34319 number of dead letter files to keep around.
34320 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
34322 <UL>   
34323 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34324 </UL><P>
34325 &lt;End of help on this topic&gt;
34326 </BODY>
34327 </HTML>
34328 ====== h_config_quell_beeps =====
34329 <HTML>
34330 <HEAD>
34331 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
34332 </HEAD>
34333 <BODY>
34334 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
34336 This feature affects Alpine's behavior when it displays status message
34337 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
34338 will not affect the display of such messages, but will cause those that
34339 emit a beep to become silent.
34342 <UL>   
34343 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34344 </UL><P>
34345 &lt;End of help on this topic&gt;
34346 </BODY>
34347 </HTML>
34348 ====== h_config_suppress_user_agent =====
34349 <HTML>
34350 <HEAD>
34351 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
34352 </HEAD>
34353 <BODY>
34354 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
34356 If this feature is set then Alpine will not generate a
34357 <CODE>User-Agent</CODE> header in outgoing messages.
34359 <UL>   
34360 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34361 </UL><P>
34362 &lt;End of help on this topic&gt;
34363 </BODY>
34364 </HTML>
34365 ====== h_config_quell_lock_failure_warnings =====
34366 <HTML>
34367 <HEAD>
34368 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
34369 </HEAD>
34370 <BODY>
34371 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
34373 This feature affects Alpine's behavior when it encounters a problem
34374 acquiring a mail folder lock.  Typically, a secondary file associated
34375 with the mail folder being opened is created as part of the locking
34376 process.  On some systems, such file creation has been administratively
34377 precluded by the system configuration.
34379 Alpine issues a warning when such failures occur, which can become bothersome
34380 if the system is configured to disallow such actions.  Setting this
34381 feature causes Alpine to remain silent when this part of lock creation fails.
34383 WARNING: systems that have been configured in a way that precludes locking
34384 introduce some risk of mail folder corruption when more than one program
34385 attempts to modify the mail folder.  This is most likely to occur to one's
34386 INBOX or other incoming message folder. 
34388 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
34390 <UL>   
34391 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34392 </UL><P>
34393 &lt;End of help on this topic&gt;
34394 </BODY>
34395 </HTML>
34396 ====== h_config_enable_role_take ======
34397 <HTML>
34398 <HEAD>
34399 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
34400 </HEAD>
34401 <BODY>
34402 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
34404 Normally, the Take command takes addresses from a message and helps you
34405 put them into your Address Book.
34406 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
34407 you may find it useful
34408 to be able to Take information from a message's headers and put it into
34409 a new Rule.
34410 When this feature is set, you will be given an extra prompt that gives
34411 you the choice to Take into the Address Book or Take into a rule.
34412 <P><UL>
34413 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34414 </UL>
34416 &lt;End of help on this topic&gt;
34417 </BODY>
34418 </HTML>
34419 ====== h_config_enable_take_export ======
34420 <HTML>
34421 <HEAD>
34422 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
34423 </HEAD>
34424 <BODY>
34425 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
34427 Normally, the Take command takes addresses from a message and helps you
34428 put them into your Address Book.
34429 When this feature is set, you will be given an extra prompt that gives you
34430 the choice to Take addresses into a file instead of your Address
34431 Book.
34432 Only the user@domain_name part of the address is put in the file.
34433 <P><UL>
34434 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34435 </UL>
34437 &lt;End of help on this topic&gt;
34438 </BODY>
34439 </HTML>
34440 ====== h_config_quell_folder_internal_msg ======
34441 <HTML>
34442 <HEAD>
34443 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
34444 </HEAD>
34445 <BODY>
34446 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
34448 This feature determines whether or not Alpine will create 
34449 &quot;pseudo messages&quot; in folders that are in standard Unix or 
34450 MMDF format. <P> 
34452 Alpine will normally create these pseudo messages when they are not already
34453 present in a standard Unix or MMDF folder.  Their purpose is to record
34454 certain mailbox state data needed for correct IMAP and POP server
34455 operation, and also for Alpine to be able to mark messages as Answered when
34456 the Reply has been postponed.<P>
34458 Sites that do not use IMAP/POP for remote mail access, and that need to
34459 support mail tools that are adversely affected by the presence of the
34460 pseudo-messages (e.g. some mail notification tools) may enable this
34461 feature to tell Alpine not to create them.  Note that Alpine's 
34462 &quot;Answered&quot; flag
34463 capability will be adversely affected if this is done.<P>
34465 Note too that, even if this feature is enabled, Alpine will not remove
34466 pseudo-messages when it encounters them (e.g. those created by UW's imapd
34467 or ipopd servers.) This feature has no effect on folders that are not in
34468 standard Unix or MMDF format, as pseudo-messages are not needed in the
34469 other formats to record mailbox state information.
34470 <P><UL>
34471 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34472 </UL>
34474 &lt;End of help on this topic&gt;
34475 </BODY>
34476 </HTML>
34477 ====== h_config_mulnews_as_typed ======
34478 <HTML>
34479 <HEAD>
34480 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
34481 </HEAD>
34482 <BODY>
34483 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
34485 This feature will be of little use to most users.
34486 It has no effect unless the feature
34487 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
34488 is set.
34490 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
34491 then the setting of this feature may have an effect on the names of the
34492 newsrc files used.
34493 Normally, the name of the news server will be canonicalized before it is
34494 used in the newsrc file name.
34495 For example, if you type the news server name
34498 <CENTER><SAMP>servername</SAMP></CENTER>
34501 it is likely that the canonical name will be something like
34504 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34507 Or it may be the case that
34510 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34513 is really an alias (a DNS CNAME) for
34516 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
34519 If this feature is not set, then the canonicalized names will be used.
34520 If this feature is set, then the name you typed in (or put in your
34521 configuration) will be used.
34523 <P><UL>
34524 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34525 </UL>
34527 &lt;End of help on this topic&gt;
34528 </BODY>
34529 </HTML>
34530 ====== h_config_quell_empty_dirs ======
34531 <HTML>
34532 <HEAD>
34533 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
34534 </HEAD>
34535 <BODY>
34536 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
34538 This feature causes Alpine to remove from the display any directories
34539 that do not contain at least one file or directory.  This can be useful
34540 to prevent overly cluttered folder lists when a collection is stored on
34541 a server that treats all names as both a folder and a directory.
34544 Note, enabling this feature can cause surprising behavior!  For example,
34545 you can still use Add to create a directory, but unless you immediately
34546 enter that directory and create a folder, that newly created directory
34547 may not be displayed next time you enter the folder list.
34550 The description above is not quite correct.
34551 Only directories which potentially may hold messages are hidden if empty.
34552 That is, a directory which is really just a directory and is not selectable
34553 as a folder will not be hidden.
34554 Such directories can occur on servers that treat most names as both a folder
34555 and a directory.
34556 These directories are typically created implicitly when a folder is created
34557 inside a directory that does not yet exist.
34560 <UL>   
34561 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34562 </UL><P>
34563 &lt;End of help on this topic&gt;
34564 </BODY>
34565 </HTML>
34566 ====== h_config_termcap_wins =====
34567 <HTML>
34568 <HEAD>
34569 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
34570 </HEAD>
34571 <BODY>
34572 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
34574 This feature may affect Alpine's low-level input routines.  Termcap (or
34575 terminfo, depending on how your copy of Alpine was compiled and linked)
34576 is the name of the database that describes terminal capabilities.  In
34577 particular, it describes the sequences of characters that various keys
34578 will emit.
34581 An example would be the Up Arrow key on the keyboard.  Up
34582 Arrow is not a distinct character on most Unix systems.  When you press
34583 the Up Arrow key a short sequence of characters are produced.  This
34584 sequence is supposed to be described in the termcap database by the
34585 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
34586 are using terminfo instead of termcap).
34589 By default, Alpine defines some terminal
34590 escape sequences that are commonly used.  For example, the sequence
34591 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
34592 &quot;ESC&nbsp;[&nbsp;A&quot;
34593 is also recognized as an Up Arrow key.  These are chosen because common
34594 terminals like VT100's or ANSI standard terminals produce these
34595 sequences when you press the Up Arrow key.
34598 If your system's termcap
34599 (terminfo) database assigns some other function to the sequence
34600 &quot;ESC&nbsp;O&nbsp;A&quot;
34601 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
34602 database assigns a sequence that doesn't begin with an escape
34603 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
34604 This usually works fine
34605 because most terminals emit the escape sequences that Alpine has defined
34606 by default.  We have also found that it is usually better to have these
34607 defaults take precedence over the definitions contained in the database
34608 because the defaults are more likely to be correct than the database.
34611 There are some terminals where this breaks down.  If you want Alpine to
34612 believe the definitions given in your termcap (terminfo) database in
34613 preference to the defaults the Alpine itself sets up, then you may turn
34614 this feature on.  Then, sequences of characters that are defined in
34615 both termcap (terminfo) and in Alpine's set of defaults will be
34616 interpreted the way that termcap (terminfo) says they should be
34617 interpreted.  Also, if your terminal capabilities database assigns a
34618 sequence that doesn't begin with escape, it will not be ignored.
34621 <UL>   
34622 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34623 </UL><P>
34624 &lt;End of help on this topic&gt;
34625 </BODY>
34626 </HTML>
34627 ====== h_config_cruise_mode =====
34628 <HTML>
34629 <HEAD>
34630 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
34631 </HEAD>
34632 <BODY>
34633 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
34635 This feature affects Alpine's behavior when you hit the
34636 &quot;Space&nbsp;Bar&quot; at
34637 the end of a displayed message.  Typically, Alpine complains that the end
34638 of the text has already been reached.  Setting this feature causes such
34639 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
34640 taking you to the next &quot;interesting&quot; message,
34641 or scanning ahead to the 
34642 next incoming folder with &quot;interesting&quot; messages.
34645 <UL>   
34646 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34647 </UL><P>
34648 &lt;End of help on this topic&gt;
34649 </BODY>
34650 </HTML>
34651 ====== h_config_cruise_mode_delete =====
34652 <HTML>
34653 <HEAD>
34654 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
34655 </HEAD>
34656 <BODY>
34657 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
34659 This feature modifies the behavior of Alpine's 
34660 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
34661 Setting this feature causes Alpine to implicitly delete read
34662 messages when it moves on to display the next &quot;interesting&quot; message.
34664 NOTE: Beware when enabling this feature AND the 
34665 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
34666 feature.
34668 <UL>   
34669 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34670 </UL><P>
34671 &lt;End of help on this topic&gt;
34672 </BODY>
34673 </HTML>
34674 ====== h_config_slash_coll_entire =====
34675 <HTML>
34676 <HEAD>
34677 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
34678 </HEAD>
34679 <BODY>
34680 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
34682 The slash (/) command is available from the MESSAGE INDEX screen when
34683 the folder is sorted by either Threads or OrderedSubject, and the
34684 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
34685 is set to something other than &quot;none&quot;.
34686 Normally, the slash command Collapses or Expands the subthread that
34687 starts at the currently highlighted message, if any.
34688 If this option is set, then the slash command Collapses or Expands the
34689 <EM>entire</EM> current thread instead of just the subthread.
34690 The current thread is simply the top-level thread that contains the
34691 current message.
34694 <UL>   
34695 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34696 </UL><P>
34697 &lt;End of help on this topic&gt;
34698 </BODY>
34699 </HTML>
34700 ====== h_config_color_thrd_import =====
34701 <HTML>
34702 <HEAD>
34703 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
34704 </HEAD>
34705 <BODY>
34706 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
34708 This option affects only the THREAD INDEX screen.
34709 Whether or not you ever see a THREAD INDEX screen depends on the setting
34710 of the configuration option
34711 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
34712 and on the sort order of the index.
34715 If a message within a thread is flagged as Important
34716 and this option is set, then
34717 the entire line in the THREAD INDEX will be colored the color of the
34718 Index-important Symbol, which can be set using the
34719 <A HREF="h_color_setup">Setup Kolor</A> screen.
34722 <UL>   
34723 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34724 </UL><P>
34725 &lt;End of help on this topic&gt;
34726 </BODY>
34727 </HTML>
34728 ====== h_config_allow_goto =====
34729 <HTML>
34730 <HEAD>        
34731 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
34732 </HEAD>
34733 <BODY>
34734 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
34736 This feature modifies the behavior of Alpine's file browser.  Setting this
34737 feature causes Alpine to offer the "G Goto" command in the file browser.
34738 That is the default.
34742 The Goto command allows you to explicitly type in the desired directory.
34744 &lt;End of help on this topic&gt;
34745 </BODY></HTML>
34746 ====== h_config_add_ldap =====
34747 <HTML>
34748 <HEAD>
34749 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
34750 </HEAD>
34751 <BODY>
34752 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
34754 If both the Directory option
34755 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
34756 and this feature are set,
34757 then when an implicit directory lookup is done from the
34758 composer you will automatically be prompted to add the result of the
34759 directory lookup to your address book.
34761 <UL>   
34762 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34763 </UL><P>
34764 &lt;End of help on this topic&gt;
34765 </BODY>
34766 </HTML>
34767 ===== h_patterns_compat_behavior =====
34768 <HTML>
34769 <HEAD>
34770 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
34771 </HEAD>
34772 <BODY>
34773 <H1>Rules Behavior Changes in Pine 4.50</H1>
34775 In Alpine, Rules that contain unrecognized elements
34776 are ignored.
34777 In most cases, the unrecognized elements will be something that was
34778 added as a new Rules feature in a later version of Alpine.
34779 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
34780 ignore rules that contained unrecognized elements.
34781 For example, a new element of Rules that was added in Pine 4.50 is
34782 Age interval.
34783 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
34784 all messages older than a week red.
34785 Now, if you run Pine 4.44 using that same configuration file, it will not
34786 recognize the Age interval and so will just ignore it.
34787 That means that all messages will match that rule so all messages will
34788 be colored red when using Pine version 4.44.
34791 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
34792 However, since the behavior still exists in versions prior to Pine 4.50 and
34793 since Filtering is a potentially destructive operation, another measure
34794 was taken to attempt to avoid unintentional Filtering of messages.
34795 The first time that you run Alpine or a Pine that is version 4.50 or greater,
34796 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
34797 will be copied to a new Filters configuration variable
34798 with a different name (&quot;Patterns-Filters2&quot;).
34799 From then on, Alpine will continue to use the new
34800 variable.
34801 Of course, Pine version 4.44 or lower will continue to use the old
34802 variable.
34803 That means that if you are using Alpine
34804 and also using a version of Pine that is older than 4.50, they will not
34805 share the configuration information about Filters.
34806 If you make a change in one version you won't see it in the other version.
34809 Since Scoring can be used to trigger Filtering, the same thing has been
34810 done for Score rules.
34811 The old configuration variable name is (&quot;Patterns-Scores&quot;)
34812 and the new name is (&quot;Patterns-Scores2&quot;).
34813 The same is not true of Role, Indexcolor, and Other rules that are
34814 thought to be less harmful when a mistake is made.
34817 &lt;End of help on this topic&gt;
34818 </BODY>
34819 </HTML>
34820 ======= h_config_filt_opts_sentdate =======
34821 <HTML>
34822 <HEAD>
34823 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
34824 </HEAD>
34825 <BODY>
34826 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
34828 By default, the Age interval of a Pattern uses a message's time of
34829 arrival to compute the age of the message.
34830 If this feature is set, the date in the message's Date header will
34831 be used instead.
34833 &lt;End of help on this topic&gt;
34834 </BODY>
34835 </HTML>
34836 ======= h_config_filt_opts_notdel =======
34837 <HTML>
34838 <HEAD>
34839 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
34840 </HEAD>
34841 <BODY>
34842 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
34844 If this option is set then a message will be moved into the
34845 specified folder only if it is not marked for deletion.
34846 This is useful if you have multiple Alpine sessions running
34847 simultaneously and you don't want messages to be filtered into a
34848 folder more than once.
34849 It is also useful if you want to filter
34850 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
34851 This method is not foolproof.
34852 There may be cases where a message
34853 gets marked deleted and so it is never filtered into the folder.
34854 For example, if you deleted it in another Alpine session or another mail
34855 program that didn't use the filtering rule.
34857 This option has no effect if the Filter Action is not set to Move.
34859 &lt;End of help on this topic&gt;
34860 </BODY>
34861 </HTML>
34862 ======= h_config_filt_opts_nonterm =======
34863 <HTML>
34864 <HEAD>
34865 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
34866 </HEAD>
34867 <BODY>
34868 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
34870 If this option is set then this is a non-terminating rule.
34871 Usually, for each message, Alpine searches through the Filter Rules until
34872 a match is found and then it performs the action associated with that rule.
34873 Rules following the match are not considered.
34874 If this option is set then the search for matches will continue at the next
34875 rule.
34877 If a non-terminating rule matches then the actions associated with
34878 that rule, except for any implied deletion of the message, are performed
34879 before the match for the next rule is checked.
34880 For example, if the non-terminating rule sets the Important status, then that
34881 status will be set when the next rule is considered.
34882 However, if the non-terminating rule Moves the message, the message will
34883 actually be copied instead of copied and deleted so that it is still there
34884 for the next rule.
34885 A moved message is deleted after all the relevant rules have been checked.
34886 The name of the &quot;Move&quot; action is confusing in this case because
34887 a single message can be moved to more than one folder.
34888 It turns the Move into a Copy instead, but it is still followed by a deletion
34889 at the end.
34891 This option may be useful if you want to have a single message filtered to
34892 two different folders because it matches two different Patterns.
34893 For example, suppose you normally filter messages to a particular mailing
34894 list into one folder, and messages addressed directly to you into a second
34895 folder.
34896 If a message is sent to both you and the list (and you can tell that by
34897 looking at the headers of the message) this option may give you a convenient
34898 way to capture a copy to each folder.
34899 (It may also cause you to capture two copies to each folder,
34900 depending on whether your mail system delivers one or two copies of the
34901 message to you and on how the list works.)
34903 &lt;End of help on this topic&gt;
34904 </BODY>
34905 </HTML>
34906 ===== h_mainhelp_smime ======
34907 <HTML>
34908 <HEAD>
34909 <TITLE>S/MIME Overview</TITLE>
34910 </HEAD>
34911 <BODY>
34912 <H1>S/MIME Overview</H1>
34914 S/MIME is a standard for the public key encryption and signing of email.
34915 UNIX Alpine contains a basic implementation of S/MIME based on
34916 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries.
34917 To check if this version of Alpine supports S/MIME look at
34918 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
34919 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
34921 Some limitations:
34922 <UL>
34923    <LI> There is no PC-Alpine implementation.
34924    <LI> There is no provision for checking for CRLs
34925         (Certificate Revocation Lists) in Alpine.
34926    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
34927    <LI> There is no mechanism available for feeding either an entire incoming
34928         or an entire outgoing message to an external
34929         filter and using that external filter to do S/MIME or PGP processing.
34930    <LI> Because the implementation currently uses OpenSSL, there is only a very
34931         limited integration with the Mac OS Keychain (the storing and access of
34932         public certificates).
34933 </UL>
34935 The S/MIME configuration screen is reached by going to the Main Menu and typing
34936 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
34939 <H2>S/MIME BASICS</H2>
34941 In order to digitally sign messages you send you must have a public/private key-pair.
34942 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
34943 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
34944 users or a company which provides certificates for its workers.
34945 These certificates are bound to an email address, so the identity being verified is the
34946 email address not a person's name.
34948 Mail is signed by using the sender's private key, which only the owner of the private key
34949 has access to.
34950 The signature is verified using the signer's public key, which anyone can
34951 have access to.
34952 With Alpine, the first time you receive a signed message the public key of the
34953 sender will be stored for future use.
34956 Mail is encrypted using the recipient's public key and decrypted by
34957 the recipient with their private key.
34960 You need a key of your own in order to sign outgoing messages and to have others
34961 encrypt messages sent to you.
34962 You do not need a key of your own to verify signed messages sent by others or to
34963 encrypt messages sent to others.
34965 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
34967 By default UNIX Alpine stores the certificates it uses in a directory in your
34968 home directory.
34969 The directory name is
34971 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
34973 Within that directory are three subdirectories.
34974 Each of the three subdirectories contains files with PEM-encoded contents,
34975 the default format for OpenSSL.
34976 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
34977 The files within that directory have names that are email addresses with the
34978 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
34979 An example filename is
34981 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
34983 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
34984 your private key.
34985 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
34986 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
34987 Authorities that you want to trust but that aren't contained in the set of system CAs.
34988 Those files may have arbitrary names as long as they end with the
34989 suffix &quot;<SAMP>.crt</SAMP>&quot;.
34991 <H2>HOW TO SIGN AND ENCRYPT</H2>
34993 If you have a certificate you may sign outgoing messages.
34994 After typing the Ctrl-X command to send a message you will see the prompt
34996 <CENTER><SAMP>Send message?</SAMP></CENTER>
34998 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
34999 Typing the &quot;G&quot; command will change the prompt to
35001 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
35003 Typing the &quot;E&quot; command will change the prompt to
35005 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
35007 You may even type both to get
35009 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
35012 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
35014 The reading of a signed message should not require any special action on
35015 your part.
35016 There should be an editorial addition at the start of the message which
35017 says either
35019 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
35023 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
35025 If an encrypted message is sent to you the encrypted text will not
35026 be shown.
35027 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
35028 you are viewing the message) and supply your passphrase when asked.
35030 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
35031 which gives you some information about the certificate used to sign or encrypt the message.
35033 <H2>MISCELLANEOUS</H2>
35035 If you have access to a private certificate in the PKCS12 format, which 
35036 would sometimes be in a file with a &quot;.p12&quot; extension, then you can 
35037 use the following commands to generate private keys, public and certificate
35038 authorities certificates. In the examples below, we assume that the 
35039 certificate in the p12 format is called &quot;certificate.p12&quot;, and 
35040 that your email address is &quot;your@address.com&quot;.
35043 In order to create a private key use the command
35045 <CENTER><SAMP>openssl pkcs12 -in certificate.p12 -out your@address.com.key</SAMP></CENTER>
35047 In order to create a public certificate use the command
35049 <CENTER><SAMP>
35050 openssl pkcs12 -in certificate.p12 -clcerts -nokeys -out your@address.com.crt
35051 </SAMP></CENTER>
35053 In order to create a certificate authority certificate use the command
35055 <CENTER><SAMP>
35056 openssl pkcs12 -in certificate.p12 -cacerts -nokeys -out certificate-ca.crt 
35057 </SAMP></CENTER>
35059 <P> If the previous command produces an empty file, it means that the 
35060 certificate authority was not included in the .p12 file, so you will have 
35061 to get it from some other sources. You will need these certificates, so 
35062 that you can validate correctly signatures.
35065 After you have exported these certificates and keys, you can  use the import 
35066 command in Alpine, from the S/MIME configuration screen,
35067 to import these certificates into Alpine. They will be available for use
35068 as soon as you import them.
35070 &lt;End of help on this topic&gt;
35071 </BODY>
35072 </HTML>
35073 ====== h_config_smime_pubcertdir =====
35074 <HTML>
35075 <HEAD>
35076 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
35077 </HEAD>
35078 <BODY>
35079 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
35081 UNIX Alpine only.
35083 If the option
35084 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35085 is set then this option will have no effect.
35087 Normally, Public Certificates for use with S/MIME will be stored in the directory
35088 which is the value of this option.
35089 Those certificates will be stored in PEM format, one certificate per file.
35090 The name of the file for the certificate corresponding to
35092 <CENTER><SAMP>emailaddress</SAMP></CENTER>
35094 should be
35096 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
35098 For example, a file for user@example.com would be in the file
35100 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
35102 in this directory.
35104 Use the Setup/SMIME screen to modify this variable.
35106 Typically, the public certificates that you have will come from S/MIME signed
35107 messages that are sent to you.
35108 Alpine will extract the public certificate from the signed message and store
35109 it in the certificates directory.
35110 These PEM format public certificates look something like:
35111 <PRE>
35112 -----BEGIN CERTIFICATE-----
35113 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
35114 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
35115 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
35117 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
35118 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
35119 -----END CERTIFICATE-----
35120 </PRE>
35122 <UL>   
35123 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35124 </UL><P>
35126 <UL>   
35127 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35128 </UL><P>
35129 &lt;End of help on this topic&gt;
35130 </BODY>
35131 </HTML>
35132 ====== h_config_smime_pubcertcon =====
35133 <HTML>
35134 <HEAD>
35135 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
35136 </HEAD>
35137 <BODY>
35138 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
35140 UNIX Alpine only.
35142 If this option is set it will be used instead of
35143 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35145 This option gives you a way to store certificates remotely on an IMAP server
35146 instead of storing the certificates one per file locally.
35147 In order to do that you just give this option a remote folder name for a folder
35148 which does not yet exist.
35149 The name is similar to the name you might use for a remote configuration file.
35150 A remote folder name might look something like:
35152 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
35155 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35156 about the syntax of folder names.
35158 Use the Setup/SMIME screen to modify this variable.
35160 <UL>   
35161 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35162 </UL><P>
35164 <UL>   
35165 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35166 </UL><P>
35167 &lt;End of help on this topic&gt;
35168 </BODY>
35169 </HTML>
35170 ====== h_config_smime_privkeydir =====
35171 <HTML>
35172 <HEAD>
35173 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
35174 </HEAD>
35175 <BODY>
35176 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
35178 UNIX Alpine only.
35180 In order to sign outgoing S/MIME messages you will need a
35181 personal digital ID certificate.
35182 You will usually get such a certificate from a certificate authority such as
35183 Thawte or CAcert.
35184 (In order to encrypt outgoing messages you don't need a personal digital ID, you
35185 need the public certificate of the recipient instead.)
35186 If the option
35187 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
35188 is set then this option will have no effect.
35190 Normally, Private Keys for use with S/MIME will be stored in the directory
35191 which is the value of this option.
35192 Those certificates will be stored in PEM format, one certificate per file.
35193 The name of the file for the certificate corresponding to your
35195 <CENTER><SAMP>emailaddress</SAMP></CENTER>
35197 should be
35199 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
35201 For example, if your address is user@example.com the name of the file would be
35203 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
35205 in this directory.
35207 Use the Setup/SMIME screen to modify this variable.
35209 Typically, the private key that you have will come from a Certificate
35210 Authority.
35211 The private key should be stored in a PEM format file that
35212 looks something like:
35213 <PRE>
35214 -----BEGIN RSA PRIVATE KEY-----
35215 Proc-Type: 4,ENCRYPTED
35216 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
35218 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
35219 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
35220 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
35222 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
35223 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
35224 -----END RSA PRIVATE KEY-----
35225 </PRE>
35227 <UL>   
35228 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35229 </UL><P>
35231 <UL>   
35232 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35233 </UL><P>
35234 &lt;End of help on this topic&gt;
35235 </BODY>
35236 </HTML>
35237 ====== h_config_smime_privkeycon =====
35238 <HTML>
35239 <HEAD>
35240 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
35241 </HEAD>
35242 <BODY>
35243 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
35245 UNIX Alpine only.
35247 If this option is set it will be used instead of
35248 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35250 This option gives you a way to store keys remotely on an IMAP server
35251 instead of storing the keys one per file locally.
35252 In order to do that you just give this option a remote folder name for a folder
35253 which does not yet exist.
35254 The name is similar to the name you might use for a remote configuration file.
35255 A remote folder name might look something like:
35257 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
35260 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35261 about the syntax of folder names.
35263 Use the Setup/SMIME screen to modify this variable.
35265 <UL>   
35266 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35267 </UL><P>
35269 <UL>   
35270 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35271 </UL><P>
35272 &lt;End of help on this topic&gt;
35273 </BODY>
35274 </HTML>
35275 ====== h_config_smime_cacertdir =====
35276 <HTML>
35277 <HEAD>
35278 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
35279 </HEAD>
35280 <BODY>
35281 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
35283 UNIX Alpine only.
35285 If the option
35286 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
35287 is set then this option will have no effect.
35289 CACert is a shorthand name for certification authority certificate.
35290 Normally Alpine will use the CACerts that are located in the standard system
35291 location for CACerts.
35292 It may be the case that one of your correspondents has a Digital ID which has
35293 been signed by a certificate authority that is not in the regular set of system certificate
35294 authorities.
35295 You may supplement the system list by adding further certificates of your own.
35296 These should  be stored in the directory
35297 which is the value of this option.
35298 The certificates will be stored in PEM format, one certificate per file.
35299 The names of the files can be anything ending in &quot;.crt&quot;.
35301 Use the Setup/SMIME screen to modify this variable.
35303 These PEM format CA certificates look very similar to your public
35304 certificates for particular email addresses
35305 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
35307 <UL>   
35308 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35309 </UL><P>
35311 <UL>   
35312 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35313 </UL><P>
35314 &lt;End of help on this topic&gt;
35315 </BODY>
35316 </HTML>
35317 ====== h_config_smime_cacertcon =====
35318 <HTML>
35319 <HEAD>
35320 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
35321 </HEAD>
35322 <BODY>
35323 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
35325 UNIX Alpine only.
35327 If this option is set it will be used instead of
35328 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35330 This option gives you a way to store certificates remotely on an IMAP server
35331 instead of storing the certificates one per file locally.
35332 In order to do that you just give this option a remote folder name for a folder
35333 which does not yet exist.
35334 The name is similar to the name you might use for a remote configuration file.
35335 A remote folder name might look something like:
35337 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
35340 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35341 about the syntax of folder names.
35343 Use the Setup/SMIME screen to modify this variable.
35345 <UL>   
35346 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35347 </UL><P>
35349 <UL>   
35350 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35351 </UL><P>
35352 &lt;End of help on this topic&gt;
35353 </BODY>
35354 </HTML>
35355 ========== h_config_smime_sign_by_default ==========
35356 <HTML>
35357 <HEAD>
35358 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
35359 </HEAD>
35360 <BODY>
35361 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
35363 UNIX Alpine only.
35365 This feature only has an effect if your version of Alpine includes
35366 support for S/MIME.
35367 It affects Alpine's behavior when you send a message.
35368 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
35370 Only the default value is affected.
35371 In any case, you may still toggle the Signing option on or off before sending
35372 with the &quot;G Sign&quot; command (provided you have a personal digital ID
35373 certificate).
35375 <UL>   
35376 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35377 </UL><P>
35380 <UL>   
35381 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35382 </UL><P>
35383 &lt;End of help on this topic&gt;
35384 </BODY>
35385 </HTML>
35386 ========== h_config_smime_use_cert_store ==========
35387 <HTML>
35388 <HEAD>
35389 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></TITLE>
35390 </HEAD>
35391 <BODY>
35392 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></H1>
35394 UNIX Alpine only.
35396 This feature only has an effect if your version of Alpine includes
35397 support for S/MIME.
35398 It affects Alpine's behavior when you validate a message, and should
35399 not be disabled, unless you are performing a test.
35401 There are two important aspects of validation: validation of the message
35402 (that is, the message was not modified after it was sent) 
35403 as well as validation of the identity of the sender. This option has to 
35404 do with the latter. 
35406 In order to validate that the message came from the sender in the message
35407 and not an impersonator, Alpine can 
35408 either use the certificates that come in the message, or the ones that 
35409 you have personally stored. If this feature is enabled (the default) then 
35410 Alpine will use certificates that you have already saved in your store 
35411 and not those that come in the message to validate the sender of the 
35412 message. In particular, the first time that you receive a signed message
35413 from a sender, and their certificate does not validate against your
35414 store, then you will be asked if you wish to save such certificate. If
35415 you do not wish to save the certificate, then Alpine will fail to validate
35416 the signature of the message. Otherwise, Alpine will proceed to validate
35417 the signature of the message. This behavior helps you prevent against impersonation, because 
35418 it is assumed that you trust the certificates that you have saved, and 
35419 might not trust those that came with the message that you are validating.
35421 <UL>   
35422 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35423 </UL><P>
35426 <UL>   
35427 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35428 </UL><P>
35429 &lt;End of help on this topic&gt;
35430 </BODY>
35431 </HTML>
35432 ========== h_config_smime_pubcerts_in_keychain ==========
35433 <HTML>
35434 <HEAD>
35435 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
35436 </HEAD>
35437 <BODY>
35438 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
35440 UNIX Alpine only.
35442 If this feature is set the Mac OS X default keychain will be used as the place
35443 to store public certificates instead of a
35444 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35445 or a
35446 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35448 <UL>   
35449 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35450 </UL><P>
35452 <UL>   
35453 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35454 </UL><P>
35455 &lt;End of help on this topic&gt;
35456 </BODY>
35457 </HTML>
35458 ========== h_config_smime_dont_do_smime ==========
35459 <HTML>
35460 <HEAD>
35461 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
35462 </HEAD>
35463 <BODY>
35464 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
35466 UNIX Alpine only.
35468 Setting this feature turns off all of Alpine's S/MIME support.
35469 You might want to set this if you are having trouble due to the S/MIME support.
35471 <UL>   
35472 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35473 </UL><P>
35476 <UL>   
35477 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35478 </UL><P>
35479 &lt;End of help on this topic&gt;
35480 </BODY>
35481 </HTML>
35482 ========== h_config_smime_encrypt_by_default ==========
35483 <HTML>
35484 <HEAD>
35485 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
35486 </HEAD>
35487 <BODY>
35488 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
35490 UNIX Alpine only.
35492 This feature only has an effect if your version of Alpine includes
35493 support for S/MIME.
35494 It affects Alpine's behavior when you send a message.
35495 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
35497 Only the default value is affected.
35498 In any case, you may still toggle the Encrypt option on or off before sending
35499 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
35500 for the recipient).
35502 <UL>   
35503 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35504 </UL><P>
35507 <UL>   
35508 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35509 </UL><P>
35510 &lt;End of help on this topic&gt;
35511 </BODY>
35512 </HTML>
35513 ========== h_config_smime_remember_passphrase ==========
35514 <HTML>
35515 <HEAD>
35516 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
35517 </HEAD>
35518 <BODY>
35519 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
35521 UNIX Alpine only.
35523 This feature only has an effect if your version of Alpine includes
35524 support for S/MIME.
35525 If this option is set, you will only have to enter your passphrase for your private key
35526 once during an Alpine session.
35528 <UL>   
35529 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35530 </UL><P>
35533 <UL>   
35534 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35535 </UL><P>
35536 &lt;End of help on this topic&gt;
35537 </BODY>
35538 </HTML>
35539 ====== h_config_smime_transfer_pub_to_con =====
35540 <HTML>
35541 <HEAD>
35542 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
35543 </HEAD>
35544 <BODY>
35545 <H1>S/MIME: Transfer Public Certs to Container</H1>
35547 UNIX Alpine only.
35549 The Transfer command will copy the public certificates in your configured
35550 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35551 to the container in your configured
35552 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35553 This might be useful if you decide to switch from using a cert directory to a cert
35554 container.
35556 Warning: Any previous contents in the container will be lost.
35558 <UL>   
35559 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35560 </UL><P>
35562 <UL>   
35563 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35564 </UL><P>
35565 &lt;End of help on this topic&gt;
35566 </BODY>
35567 </HTML>
35568 ====== h_config_smime_transfer_pub_to_dir =====
35569 <HTML>
35570 <HEAD>
35571 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
35572 </HEAD>
35573 <BODY>
35574 <H1>S/MIME: Transfer Public Certs to Directory</H1>
35576 UNIX Alpine only.
35578 The Transfer command will copy the public certificates in your configured
35579 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35580 to the directory in your configured
35581 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35582 This might be useful if you decide to switch from using a cert container to a cert
35583 directory.
35585 <UL>   
35586 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35587 </UL><P>
35589 <UL>   
35590 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35591 </UL><P>
35592 &lt;End of help on this topic&gt;
35593 </BODY>
35594 </HTML>
35595 ====== h_config_smime_transfer_priv_to_con =====
35596 <HTML>
35597 <HEAD>
35598 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
35599 </HEAD>
35600 <BODY>
35601 <H1>S/MIME: Transfer Private Keys to Container</H1>
35603 UNIX Alpine only.
35605 The Transfer command will copy the private keys in your configured
35606 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35607 to the container in your configured
35608 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35609 This might be useful if you decide to switch from using a key directory to a key
35610 container.
35612 Warning: Any previous contents in the container will be lost.
35614 <UL>   
35615 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35616 </UL><P>
35618 <UL>   
35619 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35620 </UL><P>
35621 &lt;End of help on this topic&gt;
35622 </BODY>
35623 </HTML>
35624 ====== h_config_smime_transfer_priv_to_dir =====
35625 <HTML>
35626 <HEAD>
35627 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
35628 </HEAD>
35629 <BODY>
35630 <H1>S/MIME: Transfer Private Keys to Directory</H1>
35632 UNIX Alpine only.
35634 The Transfer command will copy the private keys in your configured
35635 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35636 to the directory in your configured
35637 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35638 This might be useful if you decide to switch from using a key container to a key
35639 directory.
35641 <UL>   
35642 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35643 </UL><P>
35645 <UL>   
35646 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35647 </UL><P>
35648 &lt;End of help on this topic&gt;
35649 </BODY>
35650 </HTML>
35651 ====== h_config_smime_transfer_cacert_to_con =====
35652 <HTML>
35653 <HEAD>
35654 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
35655 </HEAD>
35656 <BODY>
35657 <H1>S/MIME: Transfer CA Certs to Container</H1>
35659 UNIX Alpine only.
35661 The Transfer command will copy the CA certificates in your configured
35662 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
35663 to the container in your configured
35664 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35665 This might be useful if you decide to switch from using a CA cert directory to a CA cert
35666 container.
35668 Warning: Any previous contents in the container will be lost.
35670 <UL>   
35671 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35672 </UL><P>
35674 <UL>   
35675 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35676 </UL><P>
35677 &lt;End of help on this topic&gt;
35678 </BODY>
35679 </HTML>
35680 ====== h_config_smime_transfer_cacert_to_dir =====
35681 <HTML>
35682 <HEAD>
35683 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
35684 </HEAD>
35685 <BODY>
35686 <H1>S/MIME: Transfer CA Certs to Directory</H1>
35688 UNIX Alpine only.
35690 The Transfer command will copy the CA certificates in your configured
35691 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35692 to the directory in your configured
35693 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35694 This might be useful if you decide to switch from using a CA cert container to a CA cert
35695 directory.
35697 <UL>   
35698 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35699 </UL><P>
35701 <UL>   
35702 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35703 </UL><P>
35704 &lt;End of help on this topic&gt;
35705 </BODY>
35706 </HTML>
35707 ====== h_config_smime_transfer_pubcon_to_key =====
35708 <HTML>
35709 <HEAD>
35710 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35711 </HEAD>
35712 <BODY>
35713 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35715 Mac OS X Alpine only.
35717 The Transfer command will copy the public certificates in your configured
35718 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35719 to your default Mac OS X Keychain.
35720 This might be useful if you decide to switch from using a cert container to using
35721 the Keychain to store your public certs, which you may do by using the
35722 feature
35723 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
35725 <UL>   
35726 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35727 </UL><P>
35729 <UL>   
35730 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35731 </UL><P>
35732 &lt;End of help on this topic&gt;
35733 </BODY>
35734 </HTML>
35735 ====== h_config_smime_transfer_pubkey_to_con =====
35736 <HTML>
35737 <HEAD>
35738 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35739 </HEAD>
35740 <BODY>
35741 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35743 UNIX Alpine only.
35745 The Transfer command will copy the public certificates in your configured
35746 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35747 to your default Mac OS X Keychain.
35748 This might be useful if you decide to switch from using a cert container to using
35749 the Keychain to store your public certs.
35751 <UL>   
35752 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35753 </UL><P>
35755 <UL>   
35756 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35757 </UL><P>
35758 &lt;End of help on this topic&gt;
35759 </BODY>
35760 </HTML>
35761 ====== h_config_smime_public_certificates =====
35762 <HTML>
35763 <HEAD>
35764 <TITLE>S/MIME: Manage Public Certificates</TITLE>
35765 </HEAD>
35766 <BODY>
35767 <H1>S/MIME: Manage Public Certificates</H1>
35769 UNIX Alpine only.
35771 This menu item allows you to manage your public certificates, this
35772 may include your own public certificate, but it normally includes
35773 certificates of people you correspond with. These certificates are
35774 saved by Alpine automatically when they are found in signed messages
35775 that you receive. This interface allows you to manage them, by
35776 giving you the option to delete them, or trust them (in the case
35777 of self-signed certificates).
35780 Please note that Alpine will not validate a message that was sent to you
35781 using a self-signed certificate, unless you decide to trust that certificate.
35782 Internally, a certificate is trusted by copying it to the
35783 <A HREF="h_config_smime_certificate_authorities">Certificate Authorities</A> 
35784 collection. If you decide that you want to stop trusting a self-signed
35785 certificate, you must delete such certificate from such collection.
35787 The <B>I</B> Import command available in this screen allows you to 
35788 import a command to this collection.
35790 <UL>   
35791 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35792 </UL><P>
35794 <UL>   
35795 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35796 </UL><P>
35797 &lt;End of help on this topic&gt;
35798 </BODY>
35799 </HTML>
35800 ====== h_config_smime_private_keys =====
35801 <HTML>
35802 <HEAD>
35803 <TITLE>S/MIME: Manage Private Keys</TITLE>
35804 </HEAD>
35805 <BODY>
35806 <H1>S/MIME: Manage Private Keys</H1>
35808 UNIX Alpine only.
35810 This option allows you to manage your private key. Normally a person has only
35811 one key, in the same way that a person only has one valid passport, or ID card,
35812 at any given time. This option allows you to manage private keys. You can
35813 delete them or import them. Additionally, you can view information
35814 about your public certificate, such as the issuer and the dates of validity
35815 of such certificate, among others.
35818 If you have more than one e-mail address for which you want to use the 
35819 same private key, you must add all those addresses to the private key at 
35820 the moment that the key is generated. When you receive a signed message using 
35821 a key generated for several e-mail addresses, Alpine will save a 
35822 certificate for each e-mail address included in such certificate.
35824 The <B>I</B> Import command available in this screen allows you to 
35825 import a command to this collection.
35827 <UL>   
35828 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35829 </UL><P>
35831 <UL>   
35832 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35833 </UL><P>
35834 &lt;End of help on this topic&gt;
35835 </BODY>
35836 </HTML>
35837 ====== h_config_smime_certificate_authorities =====
35838 <HTML>
35839 <HEAD>
35840 <TITLE>S/MIME: Manage Certificate Authorities</TITLE>
35841 </HEAD>
35842 <BODY>
35843 <H1>S/MIME: Manage Certificate Authorities</H1>
35845 UNIX Alpine only.
35847 This collection contains certificates that are needed to validate the 
35848 certificate of another person, and therefore contains certificates that 
35849 you trust. Typically a certificate is signed by another entity, called a 
35850 certificate authority. This option allows you to manage which certificates 
35851 you trust, allowing you to import them and to delete them or view information
35852 about each certificate, such as the issuer and the dates of validity
35853 of such certificate.
35855 The <B>I</B> Import command available in this screen allows you to 
35856 import a command to this collection.
35858 <UL>   
35859 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35860 </UL><P>
35862 <UL>   
35863 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35864 </UL><P>
35865 &lt;End of help on this topic&gt;
35866 </BODY>
35867 </HTML>
35868 ====== h_config_smime_password_file_certificates =====
35869 <HTML>
35870 <HEAD>
35871 <TITLE>S/MIME: Manage Password File Certificates</TITLE>
35872 </HEAD>
35873 <BODY>
35874 <H1>S/MIME: Manage Password File Certificates</H1>
35876 UNIX Alpine only.
35878 This option allows you to manage the certificates that are used to
35879 encrypt and decrypt your password file. This is useful in case you
35880 want to change the certificates used to encrypt your password file.
35882 In order to avoid unauthorized use of this option, you are asked to
35883 enter the password of the current private key used to encrypt your
35884 password file.
35886 Once you have entered your password for the current key, you enter a
35887 screen where you can import your new key, and see the information on your
35888 current key.
35890 To import a new key press &quot;RETURN&quot; and enter the location of
35891 the new key. You will be asked to enter the password of the new key. If
35892 this part of the process is successful, Alpine will search for the 
35893 certificate that matches that key. If your key is named 
35894 &quot;your_email@address.com.key&quot;, then Alpine will look for your
35895 certificate in the same directory in the file named
35896 &quot;your_email@address.com.crt&quot;, otherwise it will look for it
35897 as part of your key (that is, it will look to see if your certificate
35898 is in the file &quot;your_email@address.com.key&quot;), if all of this
35899 fails, Alpine will ask you to enter the location of the certificate
35900 that matches the key you unlocked. If a certificate is found, it will be 
35901 used, and in this case, the password file will be read, decrypted with the 
35902 old key and encrypted with the new key. Once this is done, the new key and 
35903 certificates are saved, and the old keys are permanently deleted.
35905 Alpine does not create a backup of your password file, or your old keys
35906 that will be replaced. If you need to keep old copies, you will have to do
35907 this operation outside Alpine.
35908 <UL>   
35909 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35910 </UL><P>
35912 <UL>   
35913 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35914 </UL><P>
35915 &lt;End of help on this topic&gt;
35916 </BODY>
35917 </HTML>
35918 ====== h_certificate_information =====
35919 <HTML>
35920 <HEAD>
35921 <TITLE>S/MIME: Certificate Information Screen</TITLE>
35922 </HEAD>
35923 <BODY>
35924 <H1>S/MIME: Certificate Information Screen</H1>
35926 UNIX Alpine only.
35928 The CERTIFICATE INFORMATION screen shows you information contained in a certificate
35929 such as its owner, e-mail address, issuer, and interval of validity, 
35930 among others.
35932 In the case of public certificates, this screen shows you if there was a
35933 failure when attempting to validate such message. If the certificate is
35934 self-signed, then the <B>T</B> Trust command will be available, which
35935 you can use to trust such certificate and make Alpine not fail validating 
35936 signatures signed with such certificate.
35938 You can also mark a certificate deleted, with the <B>D</B> command, or 
35939 remove the deleted mark with the <B>U</B> undelete command.
35941 In the case of your private key, Alpine shows you the information
35942 from your public key. Additionally, Alpine allows you to see public
35943 and private information about your key, with the <B>B</B> and
35944 <B>R</B> commands respectively.
35945 <UL>   
35946 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35947 </UL><P>
35949 <UL>   
35950 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35951 </UL><P>
35952 &lt;End of help on this topic&gt;
35953 </BODY>
35954 </HTML>
35955 ====== h_config_smime_manage_public_menu =====
35956 <HTML>
35957 <HEAD>
35958 <TITLE>S/MIME: Menu of Commands to Manage Public Certificates</TITLE>
35959 </HEAD>
35960 <BODY>
35961 <H1>S/MIME: Commands that Manage Public Certificates</H1>
35963 UNIX Alpine only.
35965 This screen allows you to manage your public certificates. 
35967 The format of this screen is as follows. There are five fields: The 
35968 leftmost field is normally empty, but it could contain the letter 
35969 &quot;D&quot; to indicate that that certificate has been marked for 
35970 deletion. The next field is the e-mail address of the owner of the 
35971 certificate, shown in its entirety. The third and fourth field are the 
35972 first and last day validity for that certificate, respectively. The date
35973 is displayed in the user's locale unless the option 
35974 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>
35975 is set. In this case, the month, day and year are represented by two
35976 digits, and the format used is mm/dd/yy. Finally, the fifth 
35977 field is what can be displayed of the MD5 hash of the certificate. You can 
35978 use any of the last three fields to distinguish between two certificates 
35979 for the same owner.
35981 Available commands in this screen and a short description of what they 
35982 do follows.
35983 <UL>
35984 <LI> <B>I</B> Imports a public certificate to this collection.
35985 <LI> <B>V</B> View information about a certificate such as the name of the person the
35986 certificate was issued to, its dates of validity, and validity status.
35987 <LI> <B>D</B> Marks a certificate deleted.
35988 <LI> <B>U</B> Removes the deletion mark on a certificate.
35989 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
35990 <LI> <B>T</B> This command is only available for self-signed certificates, and allows you to
35991 trust a certificate by copying it to the collection of trusted certificates.
35992 </UL>
35994 All commands provide feedback to let you know about their success or failure.
35996 <UL>   
35997 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35998 </UL><P>
36000 <UL>   
36001 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36002 </UL><P>
36003 &lt;End of help on this topic&gt;
36004 </BODY>
36005 </HTML>
36006 ====== h_config_smime_manage_private_menu =====
36007 <HTML>
36008 <HEAD>
36009 <TITLE>S/MIME: Menu of Commands to Manage Private Keys</TITLE>
36010 </HEAD>
36011 <BODY>
36012 <H1>S/MIME: Commands that Manage Private Keys</H1>
36014 UNIX Alpine only.
36016 This screen allows you to manage your private key.
36018 The format of this screen is as follows. There are five fields: The 
36019 leftmost field is normally empty, but it could contain the letter 
36020 &quot;D&quot; to indicate that that certificate has been marked for 
36021 deletion. The next field is the e-mail address of the owner of the 
36022 certificate, shown in its entirety. The third field is the first day of 
36023 validity for that certificate; the fourth field in the last day that that 
36024 certificate is valid, and the fifth field is what can be displayed of the 
36025 MD5 hash of the public certificate corresponding to this private key. You 
36026 can use any of the last three fields to distinguish between two 
36027 certificates for the same owner.
36029 Available commands and a short description of what they do follows.
36030 <UL>
36031 <LI> <B>I</B> Imports a new public key to this collection.
36032 <LI> <B>V</B> View information about the public certificate corresponding to this
36033 key.
36034 <LI> <B>D</B> Marks a key to be deleted.
36035 <LI> <B>U</B> Removes the deletion mark on a key.
36036 <LI> <B>X</B> Removes all keys marked deleted permanently (cannot be undone).
36037 Note that expunging a private key does not remove the public key, which must
36038 be removed separately.
36039 </UL>
36041 All commands provide feedback to let you know about their success or failure.
36043 <UL>   
36044 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36045 </UL><P>
36047 <UL>   
36048 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36049 </UL><P>
36050 &lt;End of help on this topic&gt;
36051 </BODY>
36052 </HTML>
36053 ====== h_config_smime_manage_cacerts_menu =====
36054 <HTML>
36055 <HEAD>
36056 <TITLE>S/MIME: Menu of Commands to Manage Certificate Authorities</TITLE>
36057 </HEAD>
36058 <BODY>
36059 <H1>S/MIME: Commands that Manage Certificate Authorities</H1>
36061 UNIX Alpine only.
36063 This screen allows you to manage your collection of certificates that you
36064 trust. 
36066 The format of this screen is as follows. There are five fields: The 
36067 leftmost field is normally empty, but it could contain the letter 
36068 &quot;D&quot; to indicate that that certificate has been marked for 
36069 deletion. The next field is the e-mail address of the owner of the 
36070 certificate, shown in its entirety. The third field is the first day of 
36071 validity for that certificate; the fourth field in the last day that that 
36072 certificate is valid, and the fifth field is what can be displayed of the 
36073 MD5 hash of the certificate. You can use any of the last three fields to 
36074 distinguish between two certificates for the same owner.
36076 Available commands and a short description of what they do follows.
36077 <UL>
36078 <LI> <B>I</B> Imports a trusted certificate to this collection. This is
36079 done by reading the certificate and validating it. Once a certificate
36080 is found to be valid, it is saved, adding the extension &quot;.crt&quot;
36081 to the certificate, if necessary.
36082 <LI> <B>V</B> View information about this certificate, such as its issuer 
36083 and validity dates.
36084 <LI> <B>D</B> Marks a certificate to be deleted.
36085 <LI> <B>U</B> Removes the deletion mark on a certificate.
36086 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
36087 </UL>
36089 All commands provide feedback to let you know about their success or failure.
36091 <UL>
36092 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36093 </UL><P>
36095 <UL>   
36096 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36097 </UL><P>
36098 &lt;End of help on this topic&gt;
36099 </BODY>
36100 </HTML>
36101 ====== h_config_lame_list_mode =====
36102 <HTML>
36103 <HEAD>
36104 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
36105 </HEAD>
36106 <BODY>
36107 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
36109 This feature modifies the method Alpine uses to ask your IMAP
36110 server for folder names to display in the FOLDER LIST screen.
36111 It is intended to compensate for a small set of IMAP servers that
36112 are programmed to ignore a part of the request, and thus respond
36113 to Alpine's query with nonsensical results.
36116 If you find that Alpine is erroneously displaying blank folder lists,
36117 try enabling this feature.
36120 NOTE: Enabling this feature has consequences for the Goto and Save
36121 commands.  Many servers allow access to folders outside the area
36122 reserved for your personal folders via some reserved character,
36123 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
36124 allows, at the Goto and Save prompts, quick access to folders
36125 outside your personal folder collection without requiring a specific
36126 collection definition.  This behavior will generally not be available
36127 when this feature is enabled.
36130 <UL>   
36131 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36132 </UL><P>
36133 &lt;End of help on this topic&gt;
36134 </BODY>
36135 </HTML>
36136 ====== h_config_enable_mulnewsrcs =====
36137 <HTML>
36138 <HEAD>
36139 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
36140 </HEAD>
36141 <BODY>
36142 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
36144 This feature makes it so Alpine can use multiple newsrcs based on
36145 the news server being connected to, which allows for separate lists
36146 of subscribed-to newsgroups. When this feature is not set, there is only
36147 one list of newsgroups.
36149 Under this feature, the name of a newsrc is based on the news server.
36150 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
36151 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
36152 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
36153 Setting this feature for the first time will allow for the option of using
36154 your old newsrc the next time you read news.
36156 If this feature is set, then the feature
36157 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
36158 also may affect the name of the newsrc file that is used.
36160 <UL>   
36161 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36162 </UL><P>
36163 &lt;End of help on this topic&gt;
36164 </BODY>
36165 </HTML>
36166 ======= h_ab_export_vcard =======
36167 <HTML>
36168 <HEAD>
36169 <TITLE>Address Book Export Format</TITLE>
36170 </HEAD>
36171 <BODY>
36172 <H1>Address Book Export Format</H1>
36174 You are exporting address book data from Alpine to a file outside of Alpine.
36175 You are being asked to choose the format of the export.
36176 Here are the choices:
36178 <DL>
36179 <DT><EM>A</EM>ddress List</DT>
36180 <DD>
36181 The addresses from the address book entries you are saving
36182 from will be saved one address per line.
36183 Address book lists (those with more than one address) will have
36184 all of their addresses saved separately.
36185 </DD>
36187 <DT><EM>V</EM>Card</DT>
36188 <DD>
36189 The entries will be saved in
36190 <A HREF="h_whatis_vcard">vCard</A> format.
36191 </DD>
36193 <DT><EM>T</EM>ab Separated</DT>
36194 <DD>
36195 The entries will be saved in tab-separated columns.
36196 There will be just 4 columns of data that correspond to Alpine's
36197 Nickname field, Full Name field, Address field, and Comment field.
36198 It might prove useful to Select only the Simple, non-List address book
36199 entries before Saving.
36200 </DD>
36202 <DT><EM>^C</EM> Cancel</DT>
36203 <DD>
36204 Cancel out of the Save.
36205 </DD>
36207 </DL>
36211 &lt;End of help on this topic&gt;
36212 </BODY>
36213 </HTML>
36214 ====== h_config_predict_nntp_server =====
36215 <HTML>
36216 <HEAD>
36217 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
36218 </HEAD>
36219 <BODY>
36220 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
36222 This feature allows Alpine to assume that the open NNTP server at the
36223 time of composition is the NNTP server to which the message should be
36224 posted.  This is especially recommended when there are multiple News
36225 collections.  If this feature is not set, Alpine will try to post to the first server in
36226 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
36227 this feature also negates the need to add News collection servers to
36228 the <!--#echo var="VAR_nntp-server"--> variable.
36230 This feature can be especially handy when used in conjunction with
36231 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
36233 <UL>   
36234 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36235 </UL><P>
36236 &lt;End of help on this topic&gt;
36237 </BODY>
36238 </HTML>
36239 ====== h_config_nntp_search_uses_overview =====
36240 <HTML>
36241 <HEAD>
36242 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
36243 </HEAD>
36244 <BODY>
36245 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
36247 This feature should probably be turned on unless it causes trouble.
36248 The results of the NNTP overview command (XOVER) may be used to help
36249 with some searches in news groups.
36250 It should result in quicker response time.
36251 Turning this feature on apparently causes search results which are
36252 different from what you would get with the feature turned off on some
36253 servers.
36255 <UL>   
36256 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36257 </UL><P>
36258 &lt;End of help on this topic&gt;
36259 </BODY>
36260 </HTML>
36261 ====== h_config_thread_sorts_by_arrival =====
36262 <HTML>
36263 <HEAD>
36264 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
36265 </HEAD>
36266 <BODY>
36267 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
36269 This feature affects how a threading sort arranges threads.  The default way
36270 to arrange threads is by the date of the earliest message in the thread.
36271 This feature arranges threads by the last message to arrive in a thread.
36273 This feature causes old threads that get recent messages to sort to the bottom,
36274 where previously a message arrival to a thread would not rearrange the order of
36275 that thread.
36277 <UL>   
36278 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36279 </UL><P>
36280 &lt;End of help on this topic&gt;
36281 </BODY>
36282 </HTML>
36283 ====== h_config_textplain_int =====
36284 <HTML>
36285 <HEAD>
36286 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
36287 </HEAD>
36288 <BODY>
36289 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
36291 This feature modifies the method Alpine uses to display Text/Plain
36292 MIME attachments from the Attachment Index screen.  Normally, the
36293 &quot;View&quot; command searches for any externally defined (usually
36294 via the
36295 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
36296 and displays the selected text within that viewer.
36299 Enabling this feature causes Alpine to ignore any external viewer
36300 settings and always display text with Alpine's internal viewer.
36303 <UL>   
36304 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36305 </UL><P>
36306 &lt;End of help on this topic&gt;
36307 </BODY>
36308 </HTML>
36309 ====== h_config_wp_columns =====
36310 <HTML>
36311 <HEAD>
36312 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
36313 </HEAD>
36314 <BODY>
36315 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
36317 Web Alpine only.
36319 This configuration setting specifies the number of horizontal characters
36320 used to format various WebAlpine pages.  Smaller values will tend to reduce
36321 the amount of horizontal scrolling required to view pages within narrow
36322 browsers, such as those found on PDAs, and larger values will tend to 
36323 spread more information across the page.
36326 The Message List page uses the width to determine how many characters
36327 to assign each field.  Note, a smaller value may result in a disproportionate
36328 amount of blank space between fields on each line.  Similarly, a large
36329 value may result in cramped fields or horizontal scrolling.
36332 The Message View page uses this value to determine when to wrap lines
36333 in displayed message text.  Note, a smaller value may result in jagged
36334 right margins or confusing quoting.  A larger value may cause lines of text to
36335 run beyond the browser's right edge, requiring horizontal scrolling.
36338 <UL>   
36339 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36340 </UL><P>
36341 &lt;End of help on this topic&gt;
36342 </BODY>
36343 </HTML>
36344 ====== h_config_wp_state =====
36345 <HTML>
36346 <HEAD>
36347 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
36348 </HEAD>
36349 <BODY>
36350 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
36352 Web Alpine only.
36354 Various aspects of cross-session state.
36357 <UL>   
36358 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36359 </UL><P>
36360 &lt;End of help on this topic&gt;
36361 </BODY>
36362 </HTML>
36363 ====== h_config_wp_aggstate =====
36364 <HTML>
36365 <HEAD>
36366 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
36367 </HEAD>
36368 <BODY>
36369 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
36371 Web Alpine only.
36373 Aggregate operations tab state.
36376 <UL>   
36377 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36378 </UL><P>
36379 &lt;End of help on this topic&gt;
36380 </BODY>
36381 </HTML>
36382 ====== h_config_wp_indexlines =====
36383 <HTML>
36384 <HEAD>
36385 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
36386 </HEAD>
36387 <BODY>
36388 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
36390 Web Alpine only.
36392 Number of index lines in table.
36395 <UL>   
36396 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36397 </UL><P>
36398 &lt;End of help on this topic&gt;
36399 </BODY>
36400 </HTML>
36401 ====== h_config_wp_indexheight =====
36402 <HTML>
36403 <HEAD>
36404 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
36405 </HEAD>
36406 <BODY>
36407 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
36409 Web Alpine only.
36411 Index table row height.
36414 <UL>   
36415 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36416 </UL><P>
36417 &lt;End of help on this topic&gt;
36418 </BODY>
36419 </HTML>
36420 ====== h_config_rss_news =====
36421 <HTML>
36422 <HEAD>
36423 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
36424 </HEAD>
36425 <BODY>
36426 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
36428 Web Alpine only.
36430 RSS News feed.
36433 <UL>   
36434 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36435 </UL><P>
36436 &lt;End of help on this topic&gt;
36437 </BODY>
36438 </HTML>
36439 ====== h_config_rss_weather =====
36440 <HTML>
36441 <HEAD>
36442 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
36443 </HEAD>
36444 <BODY>
36445 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
36447 Web Alpine only.
36449 RSS Weather feed.
36452 <UL>   
36453 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36454 </UL><P>
36455 &lt;End of help on this topic&gt;
36456 </BODY>
36457 </HTML>
36458 ====== h_config_send_confirms_only_expanded =====
36459 <HTML>
36460 <HEAD>
36461 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
36462 </HEAD>
36463 <BODY>
36464 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
36466 This Web Alpine option specifies whether or not a Send confirmations
36467 happens when a composed message is readied for sending or not.  The
36468 default behavior is to not confirm that the nicknames were expanded to
36469 the intended addresses.
36472 <UL>   
36473 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36474 </UL><P>
36475 &lt;End of help on this topic&gt;
36476 </BODY>
36477 </HTML>
36478 ====== h_config_enable_jump_command =====
36479 <HTML>
36480 <HEAD>
36481 <TITLE>FEATURE: enable-jump-command</TITLE>
36482 </HEAD>
36483 <BODY>
36484 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
36486 This Web Alpine option specifies whether or not a Jump command is
36487 offered in the Message List and Message View pages.  The command is
36488 implemented as an input field in the left column of the List and View
36489 screens. 
36492 When enabled and a number is entered in the input field while the
36493 Message List is displayed, the Message List is reframed with the
36494 specified message.  While viewing a message, the message associated
36495 with the specified message number is displayed.
36498 <UL>   
36499 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36500 </UL><P>
36501 &lt;End of help on this topic&gt;
36502 </BODY>
36503 </HTML>
36504 ====== h_config_enable_newmail_sound =====
36505 <HTML>
36506 <HEAD>
36507 <TITLE>FEATURE: enable-newmail-sound</TITLE>
36508 </HEAD>
36509 <BODY>
36510 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
36512 This Web Alpine option specifies whether or not a sound file is sent
36513 to the web browser along with the newmail notification message.
36517 <UL>   
36518 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36519 </UL><P>
36520 &lt;End of help on this topic&gt;
36521 </BODY>
36522 </HTML>
36523 ====== h_config_render_html_internally =====
36524 <HTML>
36525 <HEAD>
36526 <TITLE>FEATURE: render-html-internally</TITLE>
36527 </HEAD>
36528 <BODY>
36529 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
36531 By default, Web Alpine will pass cleansed HTML text you receive in messages 
36532 to the browser for display (rendering).  This feature causes Web Alpine to convert 
36533 the HTML text into plain text in the same way Unix and PC-Alpine do.
36537 <UL>   
36538 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36539 </UL><P>
36540 &lt;End of help on this topic&gt;
36541 </BODY>
36542 </HTML>
36543 ====== h_config_role_undo =====
36544 Yes, remember changes and exit back to list of roles; No, discard changes
36545 made in this screen; ^C, cancel exit and stay in this config screen.
36546 ====== h_exit_editor =====
36547 S, save changes and exit from the editor; D, do not save changes but
36548 do exit from the editor; or ^C, cancel exit and stay in the editor.
36549 ====== h_config_undo =====
36550 Yes, save changes and exit; No, exit without saving any changes made since
36551 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
36552 ====== h_os_index_whereis =====
36553 Enter ^V or ^Y to go immediately to the last or first message in the index.
36554 Or, enter the match string followed by RETURN.
36555 ====== h_os_index_whereis_agg =====
36556 Enter ^V or ^Y to go immediately to the last or first message in the index,
36557 Or, enter the match string followed by RETURN (or ^X to select all matches).
36558 =========== h_oe_add_full ==================
36559 Type the full name of the person being added and press the RETURN key.
36560 Press ^C to cancel addition.
36561 =========== h_oe_add_nick ==================
36562 Type a short nickname and press RETURN.  A nickname is a short easy-to-
36563 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
36564 ========== h_oe_add_addr ================
36565 Type the e-mail address and press RETURN.
36566 Press ^C to cancel addition.
36567 ========== h_oe_crlst_full ==============
36568 Type a long name or description for the list that you are creating and
36569 press RETURN.  Press ^C to cancel creation of list.
36570 =========== h_oe_crlst_nick =============
36571 Type a nickname (short, easy-to-remember name or single word) for the list
36572 you are creating and press RETURN.  Press ^C to cancel.
36573 ========== h_oe_crlst_addr ==============
36574 Type an e-mail address, or a nickname already in the address book that you
36575 want to be part of this list and press RETURN.
36576 ========== h_oe_adlst_addr =============
36577 Type an e-mail address or a nickname already in the address book that you
36578 want to add to this list and press RETURN.
36579 ========== h_oe_editab_nick ============
36580 Change the nickname using the arrow keys and delete key.  Press RETURN
36581 when done.  Press ^C to cancel editing and leave the nickname as it was.
36582 ========== h_oe_editab_full ============
36583 Change the full name using the arrow keys and delete key.  Press RETURN
36584 when done.  Press ^C to cancel editing and leave the full name as it was.
36585 ========== h_oe_editab_addr ============
36586 Change the address using the arrow keys and delete key.  Press RETURN
36587 when done.  Press ^C to cancel editing and leave the address as it was.
36588 ========== h_oe_editab_fcc ============
36589 Change the fcc using the arrow keys and delete key.  Press RETURN when
36590 done.  Press ^C to cancel editing and leave the fcc as it was.
36591 ========== h_oe_editab_comment ============
36592 Change the comment field using the arrow keys and delete key.  Press RETURN
36593 when done.  Press ^C to cancel editing and leave the comment as it was.
36594 ====== h_ab_forward =====
36595 Yes, expand nicknames and qualify local names with your current domain name;
36596 No, leave nicknames and local names as is;  ^C, cancel.
36597 ========== h_ab_export ==========
36598 Type the name of a file to write the addresses into and
36599 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
36600 ========== h_ab_edit_a_field ==========
36601 Edit any of the fields of the currently selected entry by typing one of the
36602 letters at the bottom of the screen.  Press ^C to cancel edit.
36603 ====== h_ab_del_data_revert =====
36604 Press B to completely delete addrbook and revert to default, C to delete config
36605 and revert while leaving data, or D to only delete data (make it empty).
36606 ====== h_ab_del_data_modify =====
36607 Press B to completely delete addrbook, C to delete configuration while leaving
36608 data, or D to delete data (make it empty) but leave config. ^C to cancel.
36609 ====== h_ab_del_config_modify =====
36610 Yes, remove this address book from my configuration.
36611 No, make no changes now.
36612 ====== h_ab_del_config_revert =====
36613 Yes, remove this address book from my config and revert to default.
36614 No, make no changes now.
36615 ====== h_ab_del_default =====
36616 Yes, remove this default address book from my configuration.
36617 No, make no changes now.
36618 ====== h_ab_really_delete =====
36619 Yes, delete the actual contents of the address book, not just the 
36620 configuration.  No, don't delete the data after all, cancel and start over.
36621 ====== h_ab_del_ignore =====
36622 Press I to ignore all the default address books for this category.  Press R to
36623 remove this one address book and add the others to your personal list.
36624 ====== h_ab_del_dir_ignore =====
36625 Press I to ignore all the default directory servers for this category.
36626 Press R to remove this one server and add the others to your personal list.
36627 ====== h_ab_copy_dups =====
36628 Yes, overwrite the existing entry.
36629 No, skip duplicates but save the rest. Press ^C to cancel.
36630 ====== h_confirm_cancel =====
36631 Type C to Confirm that you want to abandon the message you are composing.
36632 Type N or ^C to cancel out of the cancel and keep composing.
36633 ====== h_ab_text_or_vcard =====
36634 Text, start composer with displayed text already included.
36635 VCard, start composer with address book entry attached as a vCard. ^C cancels.
36636 ====== h_ab_backup_or_ldap =====
36637 Backup, copy email address from entry and allow editing of it.
36638 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
36639 ====== h_ldap_text_or_vcard =====
36640 Text: export displayed text for selected entry. Address: export only the
36641 email address. VCard: export entry in vCard format. ^C cancels.
36642 ====== h_ab_save_exp =====
36643 Save, save entry or entries to an address book.
36644 Export, save to file outside of pine. ^C cancels save.
36645 ====== h_ab_add =====
36646 A, add a brand new entry to this address book.
36647 E, edit the entry that is currently highlighted. ^C to cancel.
36648 ====== h_ab_shuf =====
36649 U, swap order of highlighted address book and the one above it.
36650 D, swap order of highlighted address book and the one below it. ^C to cancel.
36651 ====== h_ab_shuf_up =====
36652 U, swap order of highlighted address book and the one above it.
36653 Press ^C to cancel.
36654 ====== h_ab_shuf_down =====
36655 D, swap order of highlighted address book and the one below it.
36656 Press ^C to cancel.
36657 ====== h_folder_prop =====
36658 Count is # of messages in the folder, Unseen means messages that have not
36659 been read, New means messages that were Recently added to the folder.
36660 ====== h_role_shuf =====
36661 U, swap order of highlighted rule and the one above it.
36662 D, swap order of highlighted rule and the one below it. ^C to cancel.
36663 ====== h_role_shuf_up =====
36664 U, swap order of highlighted rule and the one above it.
36665 Press ^C to cancel.
36666 ====== h_role_shuf_down =====
36667 D, swap order of highlighted rule and the one below it.
36668 Press ^C to cancel.
36669 ====== h_incoming_shuf =====
36670 B, swap order of highlighted directory and the one before it.
36671 F, swap order of highlighted directory and the one after it. ^C to cancel.
36672 ====== h_incoming_shuf_up =====
36673 B, swap order of highlighted directory and the one before it.
36674 Press ^C to cancel.
36675 ====== h_incoming_shuf_down =====
36676 F, swap order of highlighted directory and the one after it.
36677 Press ^C to cancel.
36678 ====== h_dir_shuf =====
36679 U, swap order of highlighted directory and the one above it.
36680 D, swap order of highlighted directory and the one below it. ^C to cancel.
36681 ====== h_dir_shuf_up =====
36682 U, swap order of highlighted directory and the one above it.
36683 Press ^C to cancel.
36684 ====== h_dir_shuf_down =====
36685 D, swap order of highlighted directory and the one below it.
36686 Press ^C to cancel.
36687 ====== h_hdrcolor_shuf =====
36688 U, swap order of highlighted Header Color and the one above it.
36689 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
36690 ====== h_hdrcolor_shuf_up =====
36691 U, swap order of highlighted Header Color and the one above it.
36692 Press ^C to cancel.
36693 ====== h_hdrcolor_shuf_down =====
36694 D, swap order of highlighted Header Color and the one below it.
36695 Press ^C to cancel.
36696 ========== h_oe_editab_al ============
36697 Change the address using the arrow keys and delete key.  Press RETURN
36698 when done.  Press ^C to cancel editing and leave the address as it was.
36699 ========== h_dir_comp_search ===============
36700 Type a string to look for just like you would in the composer. Your configured
36701 rules for the servers with the implicit flag set will be used.
36702 ========== h_oe_searchab ===============
36703 Type the word or name you want to search for and press RETURN.  If you press
36704 RETURN without entering anything the word in [] will be searched for.
36705 ========== h_oe_chooseabook ==========
36706 Choose the address book you want to save the new entry in.
36707 Use ^N or ^P to change address books.  ^C to cancel.
36708 ========== h_oe_takeaddr ==========
36709 Edit the e-mail address using the arrow and delete keys.  Press RETURN
36710 when done.  Press ^C to cancel adding this entry to the address book.
36711 ========== h_oe_take_replace ==========
36712 Press R to replace the old entry with this new data.  You will still have
36713 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
36714 ========== h_oe_take_replace_or_add ==========
36715 Press R to replace the old entry.  Press A to add the selected addresses to
36716 the old existing list.  N to enter another nickname. ^C to cancel now.
36717 ========== h_oe_takename ==========
36718 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
36719 when done.  Press ^C to cancel adding this entry to the address book.
36720 ========== h_oe_takenick ==========
36721 Type a nickname (short easy-to-remember name, initials or single word) for this
36722 entry in the address book and press RETURN.  Press ^C to cancel addition.
36723 ========== h_oe_jump ==========
36724 Type the message number you want to jump to and press RETURN.  The word "end"
36725 represents the last message. Press ^C to cancel jumping to another message.
36726 ========== h_oe_jump_thd ==========
36727 Type the thread number you want to jump to and press RETURN.  The word "end"
36728 represents the last thread. Press ^C to cancel jumping to another thread.
36729 ========== h_oe_debuglevel ==========
36730 Higher number shows more debugging details.
36731 Press ^C if you want to cancel the change.
36732 ========== h_oe_broach ==========
36733 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
36734 to go to the previous/next collections in the list.  Press ^C to cancel goto.
36735 ========== h_oe_foldsearch ==========
36736 Type the text you want to search for in foldernames and press RETURN.  If you
36737 press RETURN without entering anything, any text in [] will be searched for.
36738 ========== h_oe_foldrename ==========
36739 Change the old name of the folder to the new name using the arrow and
36740 delete keys and press RETURN.  Press ^C to cancel rename.
36741 ========== h_oe_login ==========
36742 Enter your login name for the host you are opening the mailbox on.  Just press
36743 RETURN to use your login from this host as is, or edit it with delete key.
36744 ========== h_oe_passwd ==========
36745 Type your password for the host and login shown as part of the prompt.
36746 Press ^C to cancel opening folder.
36747 ========== h_oe_choosep ==========
36748 Enter the number associated with the printer you want to select.  Press ^C to
36749 cancel the printer selection.  The current selection is highlighted.
36750 ========== h_oe_customp ==========
36751 Type the name of the Unix print command and press RETURN.  Press ^C to
36752 cancel the printer selection.
36753 ========== h_oe_searchview ==========
36754 Type the word or name you want to search for and press RETURN.  If you press
36755 RETURN without entering anything the word in [] will be searched for.
36756 ========== h_oe_keylock ==========
36757 The keyboard is in use and locked by another user.  Only that user can
36758 unlock this keyboard by typing the password.
36759 ========== h_wt_expire ==========
36760 At the beginning of each month Alpine offers to rename your current sent-mail
36761 folder to one named for the month so you have a sent-mail folder for each month
36762 ========== h_wt_delete_old ==========
36763 It is the beginning of the month, and we need to conserve disk
36764 space.  Please delete any sent-mail that you do not need.
36765 ========== h_select_sort ==========
36766 Select the order for sorting the index by typing the capitalized letter.
36767 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
36768 ========== h_no_F_arg ============
36769 Enter name of file to be opened.
36771 ========== h_sticky_personal_name ==========
36772 Type in your name as you want it to appear on outgoing email.  This entry
36773 will be saved into your Alpine configuration file.
36774 ========== h_sticky_inbox ============
36775 INBOX syntax is usually {complete.machine.name}INBOX
36776 This entry will be saved in your Alpine configuration file.
36777 ========== h_sticky_smtp ============
36778 The name of the computer on your campus that relays your outgoing email
36779 to the Internet.  This entry will be saved in your Alpine configuration file.
36780 ========== h_sticky_user_id ==========
36781 The username or login-id part of your email address.  This entry will be
36782 saved in your Alpine configuration file.
36783 ========== h_sticky_domain ==========
36784 The domain part of your email address, NOT the name of your PC.  This
36785 entry will be saved in your Alpine configuration file.
36786 ========== h_bounce =========
36787 Enter the address or nickname of the intended recipient.  Alpine will resend
36788 the message, which will retain the original author's From: address.
36789 ========== h_incoming_add_folder_nickname =========
36790 Enter an (optional) nickname that will be used in lieu of the actual
36791 host and folder names in the FOLDER LIST display.
36792 ========== h_anon_forward ==========
36793 Enter the address of your intended recipient, or ^C to cancel.
36794 Example: jsmith@somewhere.edu
36795 ========== h_news_subscribe ==========
36796 Enter the name of the newsgroup to which you wish to subscribe,
36797 or ^C to cancel.  Example: comp.mail.pine
36798 ========== h_pipe_msg ==========
36799 Enter the name of the Unix command to which you wish to send this
36800 message, or ^C to cancel.
36801 ========== h_pipe_attach ==========
36802 Enter the name of the Unix command to which you wish to send this
36803 attachment, or ^C to cancel.
36804 ========== h_select_by_num ==========
36805 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
36806 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
36807 ========== h_select_by_thrdnum ==========
36808 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
36809 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
36810 ========== h_select_txt_from ==========
36811 Messages with From: headers containing the entered string will be selected.
36812 ^C to cancel. ^G again to see original options.
36813 ========== h_select_txt_not_from ==========
36814 Messages without From: headers containing the entered string will be selected.
36815 ^C to cancel. ^G again to see original options.
36816 ========== h_select_txt_to ==========
36817 Messages with To: headers containing the entered string will be selected.
36818 ^C to cancel. ^G again to see original options.
36819 ========== h_select_txt_not_to ==========
36820 Messages without To: headers containing the entered string will be selected.
36821 ^C to cancel. ^G again to see original options.
36822 ========== h_select_txt_cc ==========
36823 Messages with Cc: headers containing the entered string will be selected.
36824 ^C to cancel. ^G again to see original options.
36825 ========== h_select_txt_not_cc ==========
36826 Messages without Cc: headers containing the entered string will be selected.
36827 ^C to cancel. ^G again to see original options.
36828 ========== h_select_txt_subj ==========
36829 Messages with Subject: headers containing the entered string will be selected.
36830 ^C to cancel.  ^X enters Subject: line of current message.
36831 ========== h_select_txt_not_subj ==========
36832 Messages without Subject headers containing the entered string will be selected.
36833 ^C to cancel.  ^X enters Subject: line of current message.
36834 ========== h_select_txt_all ==========
36835 All messages containing the entered string will be selected.  Headers and body,
36836 but not encoded attachments, will be compared.  Enter ^C to cancel.
36837 ========== h_select_txt_not_all ==========
36838 All messages that don't contain the entered string will be selected.  Headers
36839 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
36840 ========== h_select_txt_body ==========
36841 All messages containing the entered string will be selected. Body text, but
36842 not headers or encoded attachments, will be compared. ^C to cancel.
36843 ========== h_select_txt_not_body ==========
36844 All messages that don't contain the entered string will be selected. Body
36845 text, but not headers or encoded attachments, will be compared. ^C to cancel.
36846 ========== h_select_txt_recip ==========
36847 Messages with Cc: or To: headers containing the entered string will be selected.
36848 ^C to cancel. ^G again to see original options.
36849 ========== h_select_txt_not_recip ==========
36850 Messages without Cc: or To: headers containing the string will be selected.
36851 ^C to cancel. ^G again to see original options.
36852 ========== h_select_txt_partic ==========
36853 Messages with Cc, To, or From headers containing the string will be selected.
36854 ^C to cancel. ^G again to see original options.
36855 ========== h_select_txt_not_partic ==========
36856 Messages without Cc, To, or From headers containing the string will be selected.
36857 ^C to cancel. ^G again to see original options.
36858 ========== h_select_date ==========
36859 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
36860 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
36861 ========== h_attach_index_whereis ==========
36862 Enter some text that appears in the Attachment Index entry for the desired
36863 attachment.  The first attachment containing that text will be highlighted.
36864 ========== h_kb_lock ==========
36865 Keystrokes entered here (up to a RETURN) comprise a password that must
36866 be entered again later in order to unlock the keyboard.
36867 ========== h_compose_default ==========
36868 N, compose a new message. R, set a role.
36869 ^C to cancel.
36870 ========== h_untranslatable ==========
36871 Send using UTF-8 character set; Send but replace untranslatable characters
36872 with question marks; return to the composer; or cancel message altogether.
36873 ========== h_compose_intrptd ==========
36874 N, compose a new msg. I, continue interrupted msg. R, set a role.
36875 ^C to cancel.
36876 ========== h_compose_postponed ==========
36877 N, compose a new message. P, continue postponed msg. R, set a role.
36878 ^C to cancel.
36879 ========== h_compose_intrptd_postponed ==========
36880 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36881 R, set a role. ^C to cancel.
36882 ========== h_compose_form ==========
36883 N, compose a new message. F, use form letter. R, set a role.
36884 ^C to cancel.
36885 ========== h_compose_intrptd_form ==========
36886 N, compose a new msg. I, continue interrupted msg. F, use form letter.
36887 R, set a role. ^C to cancel.
36888 ========== h_compose_postponed_form ==========
36889 N, compose a new message. P, continue postponed msg. F, use form letter.
36890 R, set a role. ^C to cancel.
36891 ========== h_compose_intrptd_postponed_form ==========
36892 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
36893 F, use form letter. R, set a role. ^C to cancel.
36894 ========== h_config_context_del_except ==========
36895 If you delete the last exceptional collection you can only add it back by
36896 manually editing the exceptions config file.
36897 ========== h_config_whereis ==========
36898 To move quickly to a particular line, enter a search string or
36899 ^C to cancel.
36900 ========== h_config_edit_scorei ==========
36901 Enter interval in the form (min,max). -INF and INF may be used to represent
36902 -infinity and infinity. ^C to cancel change. RETURN to accept change.
36903 ========== h_config_add ==========
36904 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
36905 pressing RETURN sets the Empty Value (this turns off any global default).
36906 ========== h_config_add_custom_color ==========
36907 Enter a header fieldname. For example, "subject" or "from".
36909 ========== h_config_add_pat_hdr ==========
36910 Enter a header fieldname. For example, "reply-to" or "organization" or
36911 any fieldname you want that isn't included already.
36912 ========== h_config_print_opt_choice ==========
36913 You may edit either the initialization string (characters printed before
36914 printing starts) or the trailer string.  Choose one or ^C to cancel.
36915 ========== h_config_print_init ==========
36916 Enter a C-style string for this.  You may use common backslash escapes like
36917 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
36918 ========== h_config_change ==========
36919 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
36920 delete current (highlighted) character, etc.  Enter ^C to cancel change.
36921 ========== h_config_replace_add ==========
36922 Replace ignores the current default, Add places the current default in your
36923 editing buffer as if you had typed it in.
36924 ========== h_config_insert_after ==========
36925 Enter a nickname for this print command.  (InsertBefore puts the new item
36926 before the current line, InsertAfter puts it after the current line.)
36927 ========== h_config_print_cmd ==========
36928 Enter command to be executed for the printer.  Use normal editing keys
36929 to modify, ^C to cancel, carriage return to accept current value.
36930 ========== h_config_role_del ==========
36931 Answering Yes will remove this rule completely from your rules list.
36932 ========== h_config_role_addfile ==========
36933 Type the name of a file to add to your configuration. You don't need to
36934 use a file, you may add rules directly (with Add) without using a file.
36935 ========== h_config_role_delfile ==========
36936 Answering Yes will remove this rule file completely from your rules list.
36937 The rules data file itself will not be removed.
36938 ========== h_config_print_del ==========
36939 Answering Yes will remove this printer completely from your printer list.
36940 ========== h_config_print_name_cmd ==========
36941 You may edit the Nickname of this printer, the Command to be executed when
36942 printing, or change the Options associated with this printer.
36943 ========== h_send_check_fcc ==========
36944 Yes, send message without an Fcc.
36945 No, return to composer.
36946 ========== h_send_check_subj ==========
36947 Yes, send message without a Subject.
36948 No, return to composer.
36949 ========== h_send_check_to_cc ==========
36950 Yes, send message without a To address, or a Cc address, or a Newsgroup.
36951 No, return to composer.
36952 ========== h_send_fcc_only ==========
36953 Yes, copy message to Fcc only and send to NO recipients.
36954 No, return to composer.
36955 ========== h_send_prompt ==========
36956 Yes, send the message.
36957 No or ^C, return to composer.
36958 ========== h_send_prompt_flowed ==========
36959 Yes, send the message.  No or ^C, return to composer.
36960 What's Flowed? See Do Not Send Flowed Text in config screen.
36961 ========== h_send_prompt_dsn ==========
36962 Yes, send the message.  No or ^C, return to composer.
36963 What's DSNOpts? See Enable Delivery Status Notification in config screen.
36964 ========== h_send_prompt_dsn_flowed ==========
36965 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
36966 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
36967 ========== h_role_confirm ==========
36968 Yes, use displayed role. No, compose without a role.
36969 ^C, cancel the message. ^T, select a role from your other eligible roles.
36970 ========== h_norole_confirm ==========
36971 Return, compose without a role.
36972 ^C, cancel the message. ^T, select a role from your eligible roles.
36973 ========== h_custom_print ==========
36974 Enter a Unix command that accepts its data on standard input.
36975 Alpine will display any information the command sends to standard output.
36976 ========== h_convert_abooks_and_sigs ==========
36977 You will be given the opportunity to convert address books and signature files
36978 to remote configurations.
36979 ========== h_convert_abooks ==========
36980 You will be given the opportunity to convert address books to remote
36981 configurations.
36982 ========== h_flag_keyword ==========
36983 Enter the name of the keyword you want to add for this folder.
36984 No spaces, parentheses, braces, percents or asterisks are allowed.
36985 ========== h_select_keyword ==========
36986 Enter the keyword you want to match, or use ^T to select a keyword from a list
36987 of possible keywords for this folder. Use ! to look for non-matches instead.
36988 ========== h_type_keyword ==========
36989 Enter the keyword you want to add. You may add a nickname in the next step.
36990 No spaces, parentheses, braces, percents or asterisks are allowed.
36991 ========== h_type_keyword_nickname ==========
36992 Enter an optional nickname for the keyword you want to add.
36993 Type Carriage return to use the keyword name instead of a nickname.
36994 ========== h_convert_sigs ==========
36995 You will be given the opportunity to convert signature files to remote
36996 configurations.
36997 ========== h_convert_abook ==========
36998 Yes is fairly safe. You will be ADDing a remote address book that is a copy
36999 of the current address book. The current abook won't be removed automatically.
37000 ========== h_convert_sig ==========
37001 Answering Yes copies the contents of the signature file into your Alpine
37002 configuration file. After that, the contents of the file will not be used.
37003 ========== h_save_addman ==========
37004 Enter the simple name of the folder you want to add. Carriage return to
37005 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
37006 ========== h_reopen_folder ==========
37007 Yes reopens the folder, as if you were starting over. This uncovers new mail.
37008 No leaves the folder index as it was without discovering new mail.
37009 ========== h_convert_pinerc_server ==========
37010 This is the name of the host (computer) where the remote Alpine configuration
37011 will be stored. This should be an IMAP server that you have permission to use.
37012 ========== h_convert_pinerc_folder ==========
37013 Enter the correct remote folder name. This folder is special and should
37014 contain only configuration data. It shouldn't contain other mail messages.
37015 ========== h_role_compose ==========
37016 Compose a New message, Reply to current message, Forward current message, or
37017 Bounce message. Then you will be asked to choose one of your Roles to be used.
37018 ========== h_role_aggregate ==========
37019 Compose a reply, or forward, or bounce the selected messages. Then you 
37020 will be asked to choose one of your Roles to be used for this operation.
37021 ========== h_save_size_changed ==========
37022 The reported size of a message is not the same as the actual size. Answer Yes
37023 to continue and hope for the best or No to Cancel the entire Save.
37024 ========== h_select_by_larger_size ==========
37025 Enter a number or ^C to cancel. All messages greater than this many characters
37026 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37027 ========== h_select_by_smaller_size ==========
37028 Enter a number or ^C to cancel. All messages less than this many characters
37029 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37030 ========== h_preserve_field ==========
37031 Use 'p' to toggle between preserving or not preserving the original To:
37032 and Cc: fields of the message. Enter ^C to cancel message.