* When there are time changes in the clock, Alpine might go to sleep
[alpine.git] / pith / pine.hlp
blob3709c3a9a33551bbe644a7c95912674972757098
1 # $Id: pine.hlp 1266 2009-07-14 18:39:12Z hubert@u.washington.edu $
3 #        T H E   A L P I N E    M E S S A G E   S Y S T E M
5 #/* ========================================================================
6 # * Copyright 2013-2018 Eduardo Chappa
7 # * Copyright 2006-2008 University of Washington
8 # *
9 # * Licensed under the Apache License, Version 2.0 (the "License");
10 # * you may not use this file except in compliance with the License.
11 # * You may obtain a copy of the License at
12 # *
13 # *     http://www.apache.org/licenses/LICENSE-2.0
14 # *
15 # * ========================================================================
16 # */
18          Help text for the Alpine mailer
20 This file is in a format created to be turned into text strings in a C
21 program.
23 There are two shell scripts that run on this.  Cmplhelp.sh is the
24 first and turns this into a C file (helptext.c) of text strings that
25 are compiled and linked. The other program, cmplhlp2.sh, turns this
26 into a .h file (helptext.h) with extern string definitions of the
27 strings in the .c file.  The code that actually processes these files
28 while alpine is running is in help.c
30 The lines with "===== xxxx ====" divide the different help screens.  The
31 xxx is the name of the variable that strings will be put in, which are
32 also declared in helptext.h.
34 # is a comment
36 Help text screen text can be either plain text OR HTML.  The latter is
37 denoted by the first line starting with "<HTML>".  The former is simply
38 displayed as it's formatted here.
40 HTML is limited to simple formatting ala HTML 2.0.  No forms, or tables.
41 In addition a small set of tools are are available to customize the HTML
42 screen's text:
44 1a)  Default and function key bindings are separated like this:
46 <!--chtml if pinemode="function_key"-->
47         Function key bindings here
48 <!--chtml else-->
49         Default key bindings here
50 <!--chtml endif-->
53 1b)  A way to distinguish HTML text that is to be displayed when
54      pine is running vs. when the text is served up outside Alpine
55      (someday) can be done via:
57 <!--chtml if pinemode="running"-->
58    Text displayed when viewed within a running pine session
59 <!--chtml else-->
60    Text displayed when HTML viewed outside pine (using chtml aware server)
61 <!--chtml endif-->
63 1c)  A way to distinguish HTML text that is to be displayed under
64      PC-Alpine vs. not is available via:
66 <!--chtml if pinemode="os_windows"-->
67    Text displayed under PC-Alpine
68 <!--chtml else-->
69    Text displayed otherwise
70 <!--chtml endif-->
72 WARNING ABOUT CHTML "if-else-endif" CLAUSES: They don't nest.
74 2a) Several "server side include" commented elements are supported:
76 <!--#include file="textfile"--> 
78 The file "textfile" will be inserted into the HTML text directly.
79 Alpine does no formatting of the text.  At some point we might want to
80 look at the first line for <HTML> but not today.
82 2b) Various bits of Alpine's running state can be inserted into the
83 HTML text as well using the special comment:
85 <!--#echo var="variable"--> 
87 Where "variable" is one of either:
89     ALPINE_VERSION
90     ALPINE_REVISION
91     ALPINE_COMPILE_DATE
92     ALPINE_TODAYS_DATE
93     C_CLIENT_VERSION
94     _LOCAL_FULLNAME_
95     _LOCAL_ADDRESS_
96     _BUGS_FULLNAME_
97     _BUGS_ADDRESS_
98     CURRENT_DIR
99     HOME_DIR
100     PINE_CONF_PATH
101     PINE_CONF_FIXED_PATH
102     PINE_INFO_PATH
103     MAIL_SPOOL_PATH
104     MAIL_SPOOL_LOCK_PATH
105     VAR_<VARNAME> - where <VARNAME> is config variable name
106     FEAT_<FEATURENAME> - where <FEATURENAME> is config feature name
108 3) The URL scheme "X-Alpine-Gripe:" is available to insert links to
109    pine's composer such that various debugging data can be attached to the
110    message. Aside from normal email addresses, this can be set to
111    either "_LOCAL_ADDRESS_" for the configured local help address, or
112    "_BUGS_ADDRESS_" for the configured local bug reporting address.
113    Aside from the special tokens above, the default behavior only differs
114    from "mailto:" by the insertion of a special Subject: prefix that
115    consists of a randomly-generated token for tracking purposes.
116    Several optional parameters can be included to control what is
117    attached or offered for attachment to the message:
119         ?config  --  Automatically attaches the user's configuration
120                      information to the trouble report
121         ?keys    --  Automatically attaches the user's most recent
122                      keystrokes
123         ?curmsg  --  Causes the user to get an offer to attach the
124                      current message to the trouble report
125         ?local   --  Automatically attaches the result of the script 
126                      defined by VAR_BUGS_EXTRAS
128 For HTML-format sections, the help screen dividers  "===== xxxx ====" must 
129 contain one and only one space after the first and before the second set of 
130 equal signs.
132 Note to authors of this file: to mark sections that need further revision, 
133 please use the text string on the following line consistently so that it is 
134 easy to find those places again in this file:
135 *revision needed*
137 NOTE: Several sections of help text which weren't being used were removed
138 at RCS version number 4.122.  In particular, there were some placeholders
139 with help text for the config screen and the composer that didn't have any
140 reasonable place to be called from.
141 Dummy change to get revision in pine.hlp
142 ============= h_revision =================
143 Alpine Commit 315 2018-12-16 13:42:34
144 ============= h_news =================
145 <HTML>
146 <HEAD>
147 <TITLE>RELEASE NOTES for Alpine</TITLE>
148 </HEAD>
149 <BODY>                 
150 <H1>Alpine Release Notes</H1>
151 <DIV ALIGN=CENTER>
152 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
153 <BR>
154 <!--chtml if pinemode="running"-->
155 (built <!--#echo var=ALPINE_COMPILE_DATE-->)
156 <!--chtml endif-->
158 <BR>
159 <BR>Copyright 2013-2018 Eduardo Chappa
160 <BR>Copyright 2006-2008 University of Washington
161 </DIV>
164 Alpine is an &quot;Alternatively Licensed Program for Internet
165 News and Email&quot; produced until 2009 by the University of Washington.
166 It is intended to be an easy-to-use program for
167 sending, receiving, and filing Internet electronic mail messages and
168 bulletin board (Netnews) messages.  Alpine is designed to run on a wide
169 variety of Unix&reg; operating systems.  A version for Microsoft Windows&reg;
170 is available as is a world wide web based version designed to run under the
171 Apache web server.
174 <H2>New in Alpine <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)</H2>
176 Version <!--#echo var="ALPINE_VERSION"--> (<!--#echo var="ALPINE_REVISION"-->)
177 addresses bugs found in previous releases and has a few additions as well.
180 Additions include:
182 <UL>
183 <LI> PC-Alpine builds with LibreSSL and supports S/MIME.
185 <LI> NTLM authentication support with the ntlm library, in Unix systems.
186 Based on code provided by Maciej W. Rozycki.
188 <LI> Add /tls1_3 flag for servers that support it. Read more information
189 in the secure protocols <A HREF="h_network_encryption_security">help</A>.
191 <LI> Add -dict option to PC-Pico, which allows users to choose a dictionary
192 when spelling. Sample usage: -dict "en_US, de_DE, fr_FR".
194 <LI> Improvements to the configure stage of compilation. Some of
195 these contributed by Helmut Grohne. See
196 <A href="https://bugs.debian.org/876164">Bug 876164</A> in Debian.
198 <LI> Add &quot;remove password&quot; command to the management screen for the 
199 password file encryption key. This allows users to use their password file
200 without entering a master password.
202 <LI> Add the &quot;g&quot; option to the select command that works in IMAP 
203 servers that implement the X-GM-EXT-1 capability (such as the one offered 
204 by Gmail.) This allows users to do selection in Alpine as if they were 
205 doing a search in the web interface for Gmail.
207 <LI> New variable close-connection-timeout, which tells Alpine to close
208 a connection that is having problems being kept alive after the number
209 of seconds configured in this variable, if the connection has not
210 recovered. The default is 0, which means to keep the connection alive
211 and wait for the connection to recover.
213 <LI> When a message is of type multipart/mixed, and its first part is
214 multipart/signed, Alpine will include the text of the original message
215 in a reply message, instead of including a multipart attachment.
216 Suggested by Barry Landy.
218 <LI> S/MIME: Some clients do not transform messages to canonical form when 
219 signing first and encrypting second, which makes Alpine fail to parse the 
220 signed data after encryption. Reported by Holger Trapp.
221 </UL>
224 Bugs that have been addressed include:
225 <UL>
226    <LI> Width of characters is not always determined correctly when wcwidth
227         is used. Revert to using code for the Windows operating system. 
228         Reported by Andrew Ho.
230    <LI> The call realpath(..., NULL) gives an error in Solaris, which means that
231         we need to allocate memory for storing the resolved path. Reported by
232         Fabian Schmidt.
234    <LI> Crash when attempting to bounce a message due to lack of space in
235         allocated space for key menu array. Reported by David Sewell.
237    <LI> Crash when a CA certificate failed to load, and user attempted to
238         view certificate information of other certificate authorities.
240    <LI> Crash in the S/MIME configuration screen when a user turned off S/MIME, and
241         then reenabled it. Also crash when attempting to enter the S/MIME 
242         configuration screen if S/MIME was turned off.
244    <LI> Deactivate some color code from Pico (as standalone editor in the
245         windows version) until I find a way to activate it again. This is 
246         not critical and it is not something that PC-Pico must have (some 
247         of it already exists in other ways, like color support, what does 
248         not exist is the more complex code that Unix-Pico has with color 
249         codes for specific colors.)
251    <LI> When a message is multipart, and the first part is flowed text, 
252         then forwarding the message will set the first part to be flowed, 
253         and sent that way even when the option Do Not Send Flowed Text is 
254         enabled. Reported by Holger Trapp.
256    <LI> When a message/rfc822 part of a message is encoded with
257         Content-Transfer-Encoding: QUOTED-PRINTABLE, Alpine will stop 
258         processing that message. Later this causes Alpine to crash because 
259         when it displays messages, it assumes that both header and body 
260         parts are processed. Reported by Mark Crispin in 2010, in the 
261         Alpine-info list (message with subject "crash bug in 
262         alpine/mailpart.c:format_msg_att()") with no example, and reported 
263         now by Holger Trapp, with an example.
265    <LI> In addition to the previous report, Alpine encodes message/rfc822
266         messages as QUOTED-PRINTABLE, in contradiction with RFC 2045, 
267         when it receives a report that its encoding is 8bit. We preserve 
268         the encoding reported by the IMAP server, and do not encode in 
269         QUOTED-PRINTABLE.
271    <LI> Update build.bat file to add /DWINVER=0x0501 so that Alpine can 
272         build when using Visual Studio 2017. Fix contributed by 
273         Ulf-Dietrich Braunmann.
275    <LI> When the locale is not set up to UTF-8, alpine might determine the 
276         width of a character incorrectly. Reported by Alexandre Fedotov.
278    <LI> When colors are edited from the main setup configuration screen, some
279         color settings are not updated until Alpine is restarted. Reported by
280         Andrew Hill.
282    <LI> If the first part of a message is multipart/alternative, and the 
283         first part of this is also a multipart type, then Alpine might 
284         fail to select the first text part when replying to a message. 
285         Reported by Lucio Chiappetti.
287    <LI> TLS 1.2 works does not work if Alpine is compiled with openssl &gt;= 1.1.0.
288         Reported and patched by Kyle George.
290    <LI> If the directory where Alpine saves the certificates if empty,
291         alpine would not create a self-signed certificate to encrypt the 
292         password file.
294    <LI> S/MIME: The list of public certificates is freed before it is 
295         reused when a signature fails to verify. This causes Alpine to 
296         crash. Patch submitted by Linus Torvalds.
298    <LI> S/MIME: A message could fail to verify its signature even if the
299         certificate was saved when the message was open. Based on a report 
300         by David Woodhouse to the RedHat bugzilla system.
302    <LI> When there are time changes in the clock, Alpine might go to sleep
303         for big amounts of time while displaying messages in the screen.
304         Reset sleep time to 5 seconds in case it finds it needs to sleep
305         more than 5 seconds or a negative amount of time.
306 </UL>
309 Version 2.21 addresses bugs found in previous releases and has several 
310 additions as well.
313 Additions include:
314 <UL>
315   <LI> PC-Alpine: New configuration option "Aspell Dictionaries" allows a
316        user to choose the dictionary used to spell check, in case the user 
317        communicates in more than one language. Examples of values for the 
318        variable are "en_US" or "de_DE", etc. Only the first 10 
319        dictionaries are offered.
321   <LI> Unix-Alpine: Connect securely to a LDAP server on a secure port. 
322        Based on a contribution by Wang Kang.
324   <LI> Colors configured in Alpine are inherited in the composer.
326   <LI> When Alpine is compiled with password file and SMIME support 
327        the password file is encrypted using a private key/public 
328        certificate pair. If one such pair cannot be found, one will be 
329        created. <A HREF="h_password_file_support">Learn more</A>.
331   <LI> Alpine builds with any version of OpenSSL greater than or equal
332        to 1.0.0c. This includes version 1.1.0. Alpine also builds with
333        LibreSSL.
335   <LI> New SHORTSUBJECT, SHORTSUBJKEY and SHORTSUBJKEYINIT token for index 
336        format, which removes text in the SUBJECT between &quot;[&quot; and 
337        &quot;]&quot;.
339   <LI> New SMARTTIME24 token for index screen. It is close to SMARTDATETIME
340        but it differns in that it gives the time in which the message was
341        sent for messages that are less than a week old. it uses a 24 hour
342        format.
344   <LI> Alpine will include attachments when forwarding some 
345        multipart/alternative messages for which it did not use to include 
346        attachments.
348   <LI> New configuration option 
349        <a href="h_config_alt_reply_menu"><!--#echo var="FEAT_alternate-reply-menu"--></a>
350        which adds more ways to control features and variables when you
351        start to reply to a message.
353   <LI> Added support for RFC 2971 - IMAP ID extension.
355   <LI> Add configuration <A href="h_config_ignore_size"><!--#echo var="FEAT_ignore-size-changes"--></A>
356        that allows users to ignore errors in the computation of the size
357        of a message from defective servers.
359   <LI> SMIME: Upgrade the default signature digest from sha1 to sha-256, since 
360        clients such as Thunderbird do not validate signatures that use sha1 digest.
362   <LI> Add the configuration variable "default-directories", which is called
363        <A href="h_config_history"><!--#echo var="VAR_default-directories"--></A>
364        variable saves a list of directories that are readily accessible 
365        for save or export of attachments. This makes it easier to save 
366        attachments in directories that are hard to navigate to, or that 
367        are accessed frequently.
369   <LI> When a filename is attached and its name is encoded, the save 
370        attachment command will offer to save the file in the encoded form. 
371        This might work for some users, but the save command will have a 
372        subcommand ^N to decode the file name and save the file with the 
373        decoded name.
375   <LI> The TAB key allows autocomplete in the Fcc field in the composer headers,
376        as well as autocompletes automatically when only one possibility exists 
377        for the ^J attach command.
379   <LI> Add support for the &quot;TYPE&quot; and &quot;VALUE&quot; attributes of
380        the html OL tag.
382   <LI> Ignore message from smtp server after a successful authentication
383        challenge.
385   <LI> When a message is saved in the Form Letter folder, add the ability
386        to save the role being used to compose such message so that settings
387        such as the SMTP server set in the role can be used when sending
388        such form message. Suggested and patched by Frank Doepper.
390   <LI> If SSLDIR is defined somehow, do not disable S/MIME if the
391        SSLCERTSDIR is not found.
393   <LI> When Alpine sends an attachment, it will set the boundary attribute
394        in lower case, as some SMTP servers, such as those of libero.it 
395        reject messages if the boundary attribute is in uppercase.
397   <LI> Add the ability to change the private key and certificates used
398        to encrypt a password file in the SMIME setup configuration screen.
399        <A HREF="h_config_smime_password_file_certificates">Learn more</A>
401   <LI> SMIME: The ctrl-E command that gives information on the certificate
402        is only available for messages that have a signed or encrypted 
403        part.
405   <LI> SMIME: If a message contains a RFC822 attachment that is
406        signed/decrypted add the ability to view its SMIME information.
408   <LI> SMIME: Certificate information in the S/MIME screen is available 
409        for certificates stored in a container.
411   <LI> SMIME: Offer the common name of the person, instead of the name of
412        file containing the certificate, as the name to be displayed in the 
413        certificate management screen for certificate authorities. 
414        Suggested by Matthias Rieber.
416   <LI> SMIME: Management of several alternate name (SAN) certificates is 
417        improved. When importing a SAN certificate, also import a certificate
418        for the filename, besides for the e-mail addresses in the
419        certificate. Suggested by Matthias Rieber.
421   <LI> SMIME: add full year when displaying information about a certificate
422        in the certificate management screen. Suggested by Matthias Rieber.
424   <LI> SMIME: sort certificates by some type of alphabetical order in the
425        displayed name.
427   <LI> SMIME: Alpine will ask users if they wish to save S/MIME 
428        certificates included in signatures, when the option "Validate 
429        Using Certificate Store Only" is enabled. If the user does not wish 
430        to save it, validation will fail.
432   <LI> HTML: Add support for decoding entities in hexadecimal notation.
433        Suggested by Tulip&aacute;nt Gergely.
435   <LI> The &quot;#&quot; command, when used as part of an aggregate
436        operation will allow users to select the role used in either 
437        replying, forwarding or replying to the group of selected messages, 
438        Suggested by Hisashi T Fujinaka.
440   <LI> If the charset of a message can not be determined, use the value set
441        in the <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A> for its value.
443   <LI> Resizing setup screen will redraw screen.
445   <LI> Unix Alpine only. Experimental: If Alpine/Pico finds a UCS4 code
446        in the width ambiguous zone, it will use other means to determine
447        the width, such as call wcwidth.
449   <LI> Pico: Code reorganization in the search command to make it easier to
450        add subcommands of the search command.
452   <LI> Pico: Search command can do a case sensitive match. Use the Ctrl-^
453        subcommand of the search command to bring this choice into view.
455   <LI> Pico: Add the ability to search for strings in the beginning or end
456        of a line. Use the Ctrl-^ subcommand of the search command to bring 
457        this choice into view.
459   <LI> For a multipart/alternative message, the Take Address command will 
460        work on the part that is being read.
462   <LI> When sending a message, allow for 512 characters of consecutive 
463        non-white space before folding the subject line.
465   <LI> Make sure titlebar (the line at the top of the screen) always 
466        contains the name of the folder/newsgroup that is open, if this 
467        fits in the title.
469   <LI> The feature <a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
470        will also scramble the name, version and operating system in the 
471        message-id header. Based on a contribution by Dennis Davis, which 
472        is itself based on a contribution by Mark Hills.
474   <LI> Change in logic in imap_set_password function to make Alpine ask if
475        a user wants to save a password before reading the password file.
477   <LI> When exporting all parts of a message, if two attachments have the same
478        name, do not overwrite a file more than once, but instead add a counter
479        number to the filename to make a new file that does not exist in the file
480        system.
482   <LI> Add the Control-R subcommand to the save command for attachments. 
483        This subcommand toggles if the saving will be done in binary mode 
484        for text attachments. When a user saves an attachment using binary
485        mode it will be saved as it was sent, otherwise the attachment will
486        be transformed to UTF-8 for further transformation through internal
487        and user defined filters for saving.
489   <LI> Add command line argument -smimedir, which allows to specify
490        the default path for a directory that contains the public, private, 
491        and ca directories. This is useful in case a user has a backup of 
492        old certificates that cannot be installed in the ~/.alpine-smime 
493        dir.
495   <LI> Reimplementation of the code that allows the .pinerc file to be a
496        symbolic link by Kyle George from tcpsoft.com to use realpath.
498   <LI> When saving an attachment, the "^T" command leads to a screen where the
499        "A" command can be used to add a file. A directory can be added by
500        pressing "^X" after the "A" command. Added after a suggestion by
501        Stefan Goessling.
503   <LI> When saving an attachment, the ^Y and ^V commands allow a user to 
504        scroll through the history of directories used to save attachments, 
505        while preserving the given name of the file. Suggested by Peter 
506        Koellner.
508   <LI> SMIME: Turn off automatic signing and encrypting of a message when
509        bouncing. Suggested after a discussion with Matthias Rieber.
511   <LI> When messages are selected, warn the user if a message that is not
512        selected will be bounced, or if not all selected messages will be 
513        bounced. Suggested by Ulf-Dietrich Braumann.
515   <LI> The bounce command adds a subcommand to choose a role.
517   <LI> When selecting messages by number, the &quot;.&quot; character can 
518        be used to specify the message on which the cursor is on.
520   <LI> When Alpine opens an attachment, it sometimes changes the extension 
521        of the file that is being opened and replaces it by another for the 
522        same mime type. If Alpine finds that the extension of the file 
523        corresponds with the mime type, according to the mime-types file, 
524        then it will keep it, and no substitution will be made.
526   <LI> Set no restrictions on the length of encoded subjects, but encode
527        words in length of no more than 75 characters.
528 </UL>
532 Bugs that have been addressed include:
533 <UL>
534   <LI> SMIME: Crash when a certificate has an invalid date of validity. Also
535        Alpine will use the function ASN1_TIME_print to determine the date 
536        of validity. Reported by Ben Stienstra.
538   <LI> SMIME: Crash when attempting to unlock the password file and an
539        incorrect password is entered.
541   <LI> SMIME: Crash when checking the signature of a message that contains
542        a RFC822 attached message. Reported by Holger Trapp and Bj&ouml;rn 
543        Krellner.
545   <LI> SMIME: Cancelling entering password to unlock key will not reprompt.
547   <LI> SMIME: fix a bug that did not allow users to transfer certificates to
548        remote containers. Reported by Matthias Rieber.
550   <LI> SMIME: certificates included in messages were not being transferred
551        to a remote container.
553   <LI> SMIME: Crash if public certificates are located in an inaccessible
554        remote server and the private key is not available.
556   <LI> SMIME: Alpine does not remove temporary files created when adding a 
557        CA certificate to a container. Reported by Holger Trapp.
559   <LI> SMIME: When reading a local certificate, Alpine converts the name 
560        of the certificate to lowercase, which may make Alpine not be able 
561        to read such certificate. Reported by Dennis Davis.
563   <LI> SMIME: If the option "Remember S/MIME Passphrase" is disabled, then
564        entering a password to read an encrypted message will make Alpine 
565        forget the key and not ask the password to unlock it again in case 
566        it is necessary to unlock it again. Reported by Ulf-Dietrich 
567        Braumann.
569   <LI> Alpine would use freed memory while trying to compute the color
570        of the titlebar. This happened when trying to continue a postponed 
571        message.
573   <LI> Alpine failed to read an encrypted password file if too many
574        passwords were saved in the password file.
576   <LI> When selecting messages while in Threaded Index Screen, some 
577        messages other than top of threads could appear in the index, making
578        Alpine display messages &quot;out of the screen.&quot;
580   <LI> The index format would be chopped at the position of an unrecognized 
581        token, instead of skipping the token as intended.
583   <LI> Work in progress: Avoid calling non-safe functions when Alpine
584        receives a signal. See bug report 
585        <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825772">here.</A>
587   <LI> Crash when attempting to read a message after a bounce command. 
588        In order to produce a crash one needed to use the ^T subcommand and 
589        do a search in a LDAP directory. The crash is produced by changes 
590        to the text in the title bar. Reported by Heinrich Mislik in the 
591        Alpine-info list.
593   <LI> HTML messages that contain UTF-8 may wrap at the wrong position,
594        making Alpine not display the correct character at the position 
595        that wrapping is done. Reported by Wang Kang.
597   <LI> Pico: Searching for a string that is too long causes Pico to crash
598        in the next search.
600   <LI> Fix vulnerability in regex library. This only affects those who use
601        this library, such as the windows version of Alpine. See 
602        <A HREF="http://www.kb.cert.org/vuls/id/695940">http://www.kb.cert.org/vuls/id/695940</A>
603        for more details.
605   <LI> Alpine would not set include and lib paths for OpenSSL if this was
606        installed in /usr/local/ssl.
608   <LI> If the .pinerc file is a symbolic link, Alpine might not write its
609        contents when saving its configuration.
611   <LI> The _INIT_ token does not skip over non-alphanumeric characters in
612        the name. Reported by Andreas Fehr.
614   <LI> When opening an INBOX folder in a context different from the 
615        incoming folders collection, from the command line, Alpine would 
616        open the INBOX folder from the incoming folders collection.
618   <LI> Mismatch in size of UCS and CELL caused a corruption in the
619        content of a pointer, which made the speller in PC-Alpine get the 
620        content of a word incorrectly.
622   <LI> Skip testing openssl compatibility version when cross-compilation
623        is detected. Fix contributed by Antti Sepp&auml;l&auml;
625   <LI> Alpine fails to remove temporary files used during a display or sending
626        filter. Fix contributed by Phil Brooke.
628   <LI> When the index is in zoomed state, adding new messages to the 
629        selection would not show those messages if those messages are on 
630        top of the current message in the top of the screen. Reported by
631        Ulf-Dietrich Braumann. In addition, when the user scrolls through
632        the index, this scroll smoothly, without jumping pages. Reported
633        by Holger Trapp.
635   <LI> Crash when reviewing history of saving attachments.
637   <LI> Crash when canceling a goto command on a local collection that has
638        not been expanded and attempting to expand such collection.
640   <LI> Crash in Pico when forwarding messages that contain a direction mark
641        at the end of a line. Reported by James Mingo.
643   <LI> Solve compilation errors when Alpine is built with Visual Studio 2015.
644 </UL>
648 Version 2.20 addresses bugs found in previous releases and has several 
649 additions as well.
652 Additions include:
655 <UL>
656   <LI> Upgrade UW-IMAP to Panda IMAP from 
657        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
658   <LI> S/MIME: Add screen to manage certificates.
659   <LI> S/MIME: Signatures are validated using the user's certificates instead
660        of the ones included in the message. Behavior can be disabled by
661        disabling the option <A href="h_config_smime_use_cert_store">
662         <!--#echo var="FEAT_smime-use-storey-only"--></A>, which is enabled
663        by default.
664   <LI> S/MIME: sign messages using intermediate certificates when needed 
665        and possible.
666   <LI> S/MIME: validation of certificates for servers that modify signed 
667        content.
668   <LI> S/MIME: signed and encrypted messages will be signed first and 
669        encrypted second, so that they can be decoded by other clients.
670   <LI> S/MIME: add the sender certificate to the list of certificates in
671        encrypted messages to make it possible for the sender to decrypt
672        the message they sent.
673   <LI> S/MIME: When transferring certificates to a local container, create 
674        container with default names PublicContainer, PrivateContainer and 
675        CAContainer, as appropriate for these files, unless the user has 
676        provided some other names.
677   <LI> S/MIME: Forwarding a message will include the signed part as part
678        of the text and not as a multipart message, just as the reply
679        command does.
680   <LI> HTML: Style tag in body of html message causes Alpine to not write
681        its content until a new &lt;/style&gt;
682   <LI> HTML: &lt;BR&gt;, &lt;BR /&gt;, and &lt;BR/&gt; are considered
683        the same inline tag; the same is valid for the &lt;HR&gt; tag.
684   <LI> Add support to selective expunge through a subcommand of the 
685        select-apply commands. Read more in the <A 
686        HREF="h_index_cmd_expunge">help</A> for the expunge command.
687   <LI> Pico: New subcommand of the search command, allows to reverse the
688        direction of search.
689   <LI> Unix Alpine: If a password file is defined, and S/MIME is enabled, 
690        the key and certificate used to encrypt the password file are saved 
691        in the ~/.alpine-smime/.pwd directory, or in the directory specified
692        by the -pwdcertdir command line option. 
693        <A HREF="h_password_file_support">Learn more</A>.
694   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
695        server to use different ways to connect using ssl, for 
696        example {server.com/tls1} will attempt to connect to 
697        server.com at the ssl imap port (port 993) and establish a 
698        connection using TLSv1. These flags can be used in 
699        conjunction with the /ssl flag, the ssl flag is redundant. 
700        Conversely, however, the /ssl flag does not imply any of 
701        these flags; the /ssl flag means SSLv3 or, if not available, 
702        SSLv2 in the SSL port.
703   <LI> Alpine does not attempt to automatically reopen a collection 
704        that was not opened due to cancellation by the user. 
705        Instead, the user must try to open it explicitly.
706   <LI> Alpine searches for a certificate that matches an email address in
707        all addresses in a certificate (instead of just the first 
708        one) but when it tries to unlock the certificate, it asks 
709        for the password for the first email address in that 
710        certificate.
711   <LI> Style tag in body of html message causes Alpine to not write its content
712        until a new &lt;/style&gt;
713   <LI> Experimental: Write the content-type of a message in 
714        lowercase, as some non-compliant servers do not understand 
715        uppercase content-type, such as those of GMX.de.
716   <LI> Experimental: Do not send the RSET command before attempting
717        to send a message, as this causes a delay in some evily managed
718        servers.
719   <LI> Opening a folder updates recent count in maildrops (this 
720        already works for other types of folders)
721   <LI> Automatically redraw screen after opening an attachment 
722        instead of simply clearing it.
723   <LI> Pico: Justification works without need of a predefined quote 
724        string. This allows justification of blocks of text that are 
725        indented with spaces.
726   <LI> Decode the name of attachment names, so they can be written as part   
727        of the description of the part. 
728   <LI> Check bounds and tie strings off to improve security. Contributed 
729        by James Jerkins.
730   <LI> Replace tabs by spaces in From and Subject fields to control for
731        size in screen of these fields. Change only in index screen display.
732   <LI> Aggregate operations allows bouncing a list of messages using a role.
733        Suggested by Ulf-Dietrich Braumann.
734   <LI> Disable saving new passwords to the password file. Implemented
735        by Louis Raphael from dpslabs.com. <A HREF="h_config_disable_password_file_saving">Learn more.</A>
736   <LI> Makefile: Add $(LIBINTL) to the flags to link rpdump, rpload, 
737      alpined and alpineldap because MAC OSX 10.8 x86_64 needs it. Reported by
738      Charles M. Register.
739 </UL>
743 Bugs that have been addressed include:
744 <UL>
745   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
746        in personal names. Reported by Lev Gorenstein.
747   <LI> When writing the .pinerc file, lines were truncated if they were longer
748        than 10,000 characters. This could cause data corruption, so now lines
749        are allowed to be of any length.
750   <LI> In Unix Alpine (but not in MAC OSX) fix a problem that made Alpine 
751        remove attachments before they were open by a mailcap viewer. It 
752        requires that the user has an equivalent to a command such as "ps 
753        auxww" to list the list of processes, and check if there is any 
754        program using the attachment. The default is "/bin/ps auxww", but 
755        it can be changed at compile time with the option --with-ps-cmd. 
756        See the help of the variable 
757        <a href="h_config_psleep"><!--#echo var="VAR_mailcap-check-interval"--></a> 
758        for more information.
759   <LI> S/MIME: signed messages that contained an attachment would not validate.
760   <LI> S/MIME: signed and encrypted messages from Thunderbird would not 
761        validate. Thanks to Andreas Schamanek for testing, debugging and 
762        advising during the process of fixing this problem.
763   <LI> S/MIME: Forwarding messages with multipart content-type failed to be signed
764        with &quot;Error writing pipe&quot; message. Reported by Andreas Schamanek
765        and Stefan Mueller.
766   <LI> S/MIME: Certificates are lost when using a pinerc file outside of the 
767        home directory.
768   <LI> S/MIME: Accessing the S/MIME configuration screen would deinitialize
769        SMIME making it not possible to sign or encrypt messages.
770   <LI> S/MIME: Forwarding a signed message might make the body contain mime 
771        information that is not part of the body, and hence making the body
772        of the message seem wrong.
773   <LI> S/MIME Alpine would compute incorrectly the signature of a message 
774        that contains 8bit if the option "Enable 8bit ESMTP Negotiation" is 
775        enabled, the message contains 8bit characters and the smtp server 
776        supports 8bit sending.
777   <LI> When replying to several messages, subject will be decoded first,
778        and then stripped from re/fwd before they are compared to determine
779        the subject of the replied message.
780   <LI> Crash when tcp connection to NNTP server was lost after connection
781        had been established, but lost immediately afterwards.
782   <LI> Crash with message &quot;lock when already locked&quot;, when painting
783        an index was based on scores that needed information from a remote
784        addressbook in the same server as the folder opened. Reported by
785        Peter Koellner.
786   <LI> Crash in message/rfc822 attachments encoded in base64.
787   <LI> Postponed messages whose content-type is text/html, text/enriched and
788        text/richtext are sent with that content-type, even though, after
789        resuming composition, Alpine had changed its type to text/plain.
790   <LI> Alpine cannot handle correctly some characters in the Windows-1256 
791        character set, which might lead to a crash or a corruption in the 
792        screen. Work was done to contain the bug. A more complete fix will 
793        be done in a future release. Reported by Professor Robert Funnell.
794   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
795   <LI> WebAlpine: fail to build with debug disabled. Fix from Sam Hathaway.
796   <LI> Save command did not warn of existence of a message with a deleted 
797        attachment in an aggregate save, unless cursor was positioned on a message 
798        with a deleted attachment. Reported by Florian Herzig.
799   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
800        in an IMAP server.
801   <LI> DATE tokens were not internally transformed to UTF-8, which made their
802        values not appear complete in the screen. Reported by Werner Scheinast.
803   <LI> Fixes to configure script so that it will not require PAM for every system.
804   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
805        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
806        during the build. Fix by Ulf-Dietrich Braumann.
807   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
808        needs to use tcl_getstringresult() instead. Reported by 
809        Ulf-Dietrich Braumann.
810   <LI> Quoted string in URL Viewers configuration variable were not 
811        unquoted before passing to viewer.
812   <LI> Fix in configure script to detect location of tcl library; add
813        /usr/local in FreeBSD and fix a bug in configure script that used 
814        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
815        by Werner Scheinast.
816   <LI> Move SSL configurations from UW-IMAP to configure script, and
817        update OpenSSL configuration for Mac OS X.
818   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
819   <LI> When the download of an attachment is interrumpted, Alpine stills
820      caches what was downloaded, making the download incomplete for 
821      subsequent calls of Alpine attempting to open the attachment. In the 
822      future, Alpine will not cache any downloaded part of the attachment 
823      when it is interrupted.
824 </UL>
829 Version 2.11 addresses bugs found in previous releases and has a few 
830 additions as well.
833 Additions include:
836 <UL>
837    <LI> Alpine requires version 1.0.0c of Openssl to build.
838    <LI> Increase encryption of S/MIME encrypted messages.
839    <LI> Pico: Improvements in justification of paragraphs: lines that begin
840 with a quote string, followed by a space were considered individual paragraphs,
841 now they are considered part of a paragraph. Based on earlier joint work
842 with Jeff Franklin.
843    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
844    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
845 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
846    <LI> Added recognition of ws and wss URIs.
847    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
848  <A HREF="h_config_directory_color">directory names</A>,
849  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
850    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
851 used in the display of the INDEX SCREEN.
852    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
853 that adds the ability to preserve To: and Cc: fields when replying to a 
854 message, as specified by original sender.
855    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
856  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
857    <LI> Quota command includes subcommands for printing, forwarding, etc.
858 </UL>
861 Bugs that have been addressed include:
863 <UL>
864   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
865   <LI> Crash when resizing the screen in a configuration screen.
866   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
867   <LI> Do not use a shell to open a browser.
868   <LI> Configure script did not test for crypto or pam libraries.
869   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
870   <LI> Change Cygwin directory separator to &quot;/&quot;.
871   <LI> Alpine could set List- headers, contrary to RFC 2369.
872 </UL>
875 Version 2.10 addresses bugs found in previous releases and has a few 
876 additions as well.
879 Additions include:
882 <UL>
883    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
884    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
885    <LI> Foreign characters are decoded correctly in IMAP folder names.
886    <LI> Question about breaking connection to slow servers includes their name.
887    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
888    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
889    <LI> Cygwin: Alpine builds without need of patch.
890    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
891    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
892    <LI> Add support for strong encryption of password file when S/MIME is built in.
893 </UL>
896 Bugs that have been addressed include:
899 <UL>
900    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
901    <LI> Double allocation of memory in Pico.
902    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
903    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
904    <LI> Not recognition of environment variables in some options.
905    <LI> Not display of login prompt during initial keystrokes.
906    <LI> justification of long urls breaks them.
907    <LI> Incorrect New Mail message when envelope is not available.
908    <LI> Incorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
909    <LI> Crash when resizing the screen after display of LDAP search.
910    <LI> Crash when redrawing screen while opening a remote folder collection.
911    <LI> Infinite loop in scrolltool function during notification of new mail.
912    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
913    <LI> No display of signed and encrypted S/MIME messages.
914    <LI> Alpine will not build with OpenSSL.
915    <LI> Crash for double locking in calls to c-client.
916    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
917    <LI> Ignore the references header when threading messages
918    <LI> No update of colors in index screen after update to addressbook.
919 </UL>
922 Version 2.01 addresses bugs found in previous releases and has a few 
923 additions as well.
926 Additions include:
929 <UL>
930    <LI> Fixed non-ASCII web alpine handling
931    <LI> Added web alpine help.
932    <LI> Allow web alpine inbox on second IMAP server.
933    <LI> Allow web alpine config reset after bad inbox-path gets set.
934    <LI> Added web alpine ability to create group contact from contact list members.
935    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
936    <LI> Tidied up web alpine script layout.
937    <LI> Fixed web alpine status message ordering
938    <LI> Added web alpine Fcc setting via Contacts in Compose
939    <LI> Fixed web alpine autodraft attachment issues
940    <LI> Fixed web alpine problems with recent count maintenance
941    <LI> Fixed web alpine newmail arrival display in message list
942    <LI> Added web alpine confirmation to folder create for Move/Copy
943    <LI> Added web alpine user-domain support
944    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
945 </UL>
948 Bugs that have been addressed include:
951 <UL>
952    <LI> In web alpine fixed delete all selected within a search result to reorient
953         correctly to whole-mailbox message list.
954    <LI> Fixed web alpine delete in view page to be sensitive to sort
955    <LI> Fixed web alpine open of folder within directory from folder manager page.
956    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
957    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
958    <LI> Fixed web alpine adding contacts from message list and view
959    <LI> Fixed web alpine create of non-existent fcc
960    <LI> Remove mistakenly left debugger statement in web alpine javascript.
961    <LI> Some UNIX alpine build problems fixed
962    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
963         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
964         by locale charmap call on some Solaris 8 systems.
965    <LI> MacOS Keychain logins were not working correctly with generic host names, like
966         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
967         new password requests when not needed
968    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
969         last folder in the list
970    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
971         looked for along with the email address
972    <LI> Changes to configure to get spellcheck options with work with arguments.
973    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
974         returned by gethostname (iPhone can do this)
975    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
976         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
977    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
978         Jake Scott of marganstanley.com.
979    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
980         is not used in alpine.
981    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
982         Apparently this causes RIM Blackberry BIS service problems. This is not
983         used in alpine.
984    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
985    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
986         Fix from Ludwig Nussel of SUSE and from Crispin.
987    <LI> Include whole filename in export filename history
988    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
989 </UL>
992 Version 2.00
993 addressed bugs found in previous releases and had a few additions as well.
995 Additions included:
998 <UL>
999    <LI> Redesigned Web Alpine interface
1000    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
1001         in UNIX versions of Alpine
1002    <LI> Attempt to include the attachment filename as part of the name of the
1003         temporary file used when viewing an attachment with an external program.
1004         Add some randomness to that filename to make it hard to predict the filename.
1005         Add a filename extension, usually derived from the type/subtype, to the
1006         temporary filename. This was previously done only on Windows and MacOS X.
1007    <LI> Enhance address completion in the composer (TAB command) so that it looks
1008         through nicknames, fullnames, and addresses from the address book; addresses
1009         from the message being viewed, if any; and the results from
1010         <A HREF="h_direct_config">LDAP Directory Server</A>
1011         lookups for all of the defined directory servers that have the
1012         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
1013         feature set.
1014    <LI> Make the default character set setting more liberal in what it will accept
1015         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
1016    <LI> Remove the Alpine revision number from the titlebar in released versions
1017         while leaving it there in snapshot versions
1018    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
1019         display of asterisks when you type a password for Alpine
1020    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
1021    <LI> When the
1022         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
1023         feature is turned on convert not only the dates in the index screen but also
1024         the dates in the MESSAGE VIEW
1025 </UL>
1028 Bugs addressed in the 2.00 release included:
1031 <UL>
1032    <LI> Crash when using tab-completion for selecting a Save filename
1033    <LI> Make Web Alpine help text images relative for more portability
1034    <LI> Fixed attach save of html parts in Web Alpine
1035    <LI> Viewing, printing, exporting, replying, and bouncing of message
1036         digests was broken. Replying and bouncing should not have been
1037         allowed at all for digests. It would be nice to have a more standard
1038         index-like view of a message digest but that has not been addressed
1039         with this minor bug fix.
1040    <LI> Adjust wrapping of HTML messages so that the margins specified by
1041         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
1042         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
1043         are observed correctly
1044    <LI> Interrupt of WhereIs command in index was broken
1045    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
1046         option did not work correctly interpreting unknown characters in message headers
1047    <LI> Long address lines could cause blank continuation lines
1048    <LI> Save to a local default INBOX failed if the primary collection was also local,
1049         which it is by default. The save went to  ~/mail/inbox instead.
1050    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
1051         inbox, not the inbox in the primary collection
1052    <LI> Address book entries with lots of addresses would be truncated when
1053         entered in the composer with a screen size wider than 270 or so charcters
1054    <LI> Some fields in the index screen were truncated when the screen width was
1055         wider than 256 characters
1056    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
1057         folder, and there is a more than 10 minute pause between typing the TAB
1058         and typing the Yes
1059 </UL>
1062 Version 1.10(962)
1063 addressed bugs found in previous releases and had a few additions as well.
1065 Additions included:
1068 <UL>
1069    <LI> Add the possibility of setting a default role
1070         (see <A HREF="h_role_select">Roles Screen</A>)
1071         which may be convenient if your work flow involves acting in one
1072         role for a while then switching to another role and staying in the
1073         new role for another period of time
1074    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
1075         is encountered, ask the user if he or she wants to continue with the
1076         risky Save anyway instead of aborting. This may be helpful if your
1077         IMAP server is broken in this way but be aware that it is possible there
1078         was a real error instead of just a broken server implementation.
1079    <LI> Some configure adjustments for Kerberos detection and
1080         for SCO OpenServer 5 support
1081    <LI> Hide INBOX in a collection if it also appears as an
1082         <A HREF="h_config_enable_incoming">Incoming Folder</A>
1083    <LI> Show asterisks for feedback when the user is typing a password
1084    <LI> Performance improvement for threading of large folders
1085    <LI> Previously, the search used to find
1086         Pattern matches containing To patterns searched for both To
1087         and Resent-To headers. The relatively complicated search this
1088         produces causes problems when using some deficient IMAP servers.
1089         Now the default is to look only for To headers and ignore the
1090         presence of Resent-To. The previous behavior may be restored
1091         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
1092    <LI> Add an
1093         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
1094         to help with reading malformed unlabeled messages
1095    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
1096    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
1097    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
1098 </UL>
1101 Bugs addressed in the 1.10(962) release included:
1104 <UL>
1105    <LI> Crash when encountering certain errors from an SMTP server
1106    <LI> Crash in composer caused by overflow in replace_pat()
1107    <LI> Hang when authenticating to an SMTP server that fails with a
1108         &quot;connection disconnected&quot; error
1109    <LI> Bug in handling of trailing tab character in flowed text
1110    <LI> Security enhancement for mailcap parameter substitution
1111    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
1112         did not work if the message being replied to was not flowed text
1113         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
1114         was not turned on
1115    <LI> Don't allow printer to be changed through hidden config screen
1116         if system administrator didn't want it to be allowed
1117    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
1118         should know that it won't work, causing error messages to appear
1119    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
1120         of double-quote double-quote didn't work right
1121    <LI> Quoting wasn't being done to protect special characters from the
1122         MacOS X shell when
1123         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
1124         was not defined
1125    <LI> On MacOS X message attachments should be shown internally instead of
1126         being shown using the Mail application
1127    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
1128         sometimes set the outgoing charset to X-UNKNOWN, making the result
1129         unreadable
1130    <LI> When the sending of a message failed lines with leading spaces had one
1131         additional space inserted in each of those lines when the user
1132         was returned to the composer
1133    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
1134         that contained non-ascii characters because it was truncating the
1135         line being searched so that it was shorter than what was visible on
1136         the screen
1137    <LI> When composing, an attachment with a long name that causes wrapping in
1138         just the wrong place would generate an error and cause the send
1139         of the attachment to fail
1140    <LI> After calling the file browser to attach a file in the composer, a resize
1141         of the window when back in the composer would redraw the last screen that
1142         had been shown in the browser instead of the current composer screen
1143    <LI> Possible crash in index screen when encountering unparseable addresses
1144         or when using one of the PRIORITY tokens or the HEADER token in the
1145         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
1146    <LI> Problems with Header Color editing if the configuration option
1147         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
1148         was inadvertently changed to the Empty Value in the hidden config screen
1149    <LI> When resuming the final postponed message from an Exchange server the user
1150         could get a certificate validation failure because alpine was trying
1151         to validate the canonical name of the folder instead of the name the
1152         user used
1153    <LI> Windows line endings in a mimetypes file on a Unix system cause a
1154         failure to find a match
1155    <LI> Make matching of extension names case independent in mimetypes files
1156    <LI> Windows dialog boxes for entering text were not working correctly
1157    <LI> Replying to or Forwarding multipart/alternative messages which had a
1158         single text/html part did not work well
1159    <LI> Printing the print confirmation page caused a crash
1160    <LI> A To line with a long, quoted personal name could display incorrectly
1161         if it was close to the same width as the screen
1162    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
1163         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
1164         are turned on hide (0/0) when the folder is empty
1165    <LI> Folder completion while Saving didn't work if the collection being
1166         saved to was the local home directory
1167 </UL>
1170 Version 1.00
1171 was an evolutionary release based on
1172 <A HREF="http://www.washington.edu/pine/">Pine</A>, which was also
1173 developed at the University of Washington.
1174 It is upwards-compatible for existing Pine users.
1177 Changes included:
1179 <UL>
1180    <LI> Ground-up reorganization of source code around addition
1181         of "pith/" core routine library.
1182    <LI> Fundamental improvement in Alpine's internal text handling, which
1183         is now based exclusively on Unicode. This allows displaying incoming
1184         messages and producing outgoing messages in many different languages.
1185    <LI> Ground-up reorganization of build and install procedures
1186         based on GNU Build System's autotools. NOTE, the included IMAP library
1187         build is not based on autotools, so some features will not work. However,
1188         it should get built automatically during the Alpine build process.
1189    <LI> Web-based version included built on TCL designed to run under
1190         a suitable CGI-supporting web server such as Apache.
1191 </UL>
1195 Details on changes in previous (prerelease) versions of Alpine
1196 may be found at the following URL:
1198 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1201 <HR WIDTH="75%"><P>
1203 <H2>Getting Help</H2>
1204 <DL>
1205 <DT>Online Help</DT>
1206 <DD>
1207 Every Alpine screen and command has associated help text
1208 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
1209 </DD>
1211 <DT>Web Help</DT>
1212 <DD>
1213 The most current source of information about Alpine,
1214 including new version availability, is the web page at
1216 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1217 </DD>
1218 </DL>
1220 Frequently Asked Questions (and answers) may be found at the following
1221 URL:
1223 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/faq/">http://www.washington.edu/alpine/faq/</A></SAMP></CENTER>
1226 <HR WIDTH="75%"><P>
1228 <H2>Additional Information</H2>
1230 General Alpine configuration information can be found
1231 <A HREF="h_news_config">here</A>.
1233 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
1234 Alpine mailbox and <A HREF="https://github.com/jonabbey/panda-imap/">IMAP</A> server
1235 access is provided by the IMAP Toolkit Environment (c-client library)
1236 version <!--#echo var="C_CLIENT_VERSION"-->.
1237 <P> 
1238 Alpine was developed until 2009 by the Office of Computing 
1239 &amp; Communications at the University of Washington in Seattle.  
1240 Since then, the effort of developing Alpine has been continued by
1241 a community of volunteers who make good software even better!
1244 Alpine Copyright 2013-2018 Eduardo Chappa, 
1245 <BR> Copyright 2006-2008 University of Washington.
1248 Additional legal notices can be found <A HREF="h_news_legal">here</A>,
1249 or instead you can find the Apache License, version 2.0 at the web URL:
1252 <CENTER><A HREF="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</A></CENTER>
1255 &lt;End of Release Notes&gt;
1256 </BODY>
1257 </HTML>
1258 ====== h_password_file_support ======
1259 <HTML>
1260 <HEAD>
1261 <TITLE>Encryption for Password File Support Explained</TITLE>
1262 </HEAD>
1263 <BODY>
1264 <H1>Encryption for Password File Support Explained</H1>
1266 Index<BR>
1267 <OL>
1268 <LI><A HREF="#content">Explanation</A>
1269 <LI><A HREF="#example_existing_key">Example of Use of Existing Key and Certificate</A>
1270 <LI><A HREF="#example_self_signed">Example of Creating Master Password</A>
1271 </OL>
1273 <P><A NAME="content">Unix Alpine Only.</A>
1275 <P> If your version of Alpine has been built with password file support
1276 then you can use a special file to save your passwords, and avoid typing
1277 them every time you open a connection to a remote server.
1279 <P> If, in addition, your version of Alpine was built with SMIME support, then your 
1280 password file will be encrypted with a strong key. There are two ways in 
1281 which this can happen: Alpine will either use a matching private key and 
1282 public certificate pair that you already own, or it will create one for 
1283 you, just for purposes of encrypting this file. We describe both processes 
1284 below.
1286 <P> Initially, Alpine will scan your public and private directories for a 
1287 certificate/private key pair that works. Alpine will pick the first pair 
1288 that it finds that matches. 
1290 <P> Once a pair has been chosen, it will be copied to the directory 
1291 ~/.alpine-smime/.pwd, and from then on, Alpine will use the pair found in 
1292 that directory. The first time this process is done, this directory will 
1293 be created, a key/certificate pair will be copied to it, from then on 
1294 this pair will be used to encrypt and decrypt your password file. 
1296 <P> If you want to use a specific key and certificate pair to encrypt
1297 your password file, you can create the directory ~/.alpine-smime/.pwd 
1298 manually, and then create your preferred key/certificate pair there.
1299 Alpine will use this key regardless of if it has expired, or if it is
1300 self-signed. These issues do not affect the encryption or decryption
1301 of the password file.
1303 <P> If you prefer not to use the directory ~/.alpine-smime/.pwd to save 
1304 your key/certificate pair, you can specify a different one with the 
1305 -pwdcertdir command line option in Alpine. If the directory specified by 
1306 this option is not found Alpine will fail to encrypt and decrypt your 
1307 password file. However if it exists, Alpine will search for a 
1308 key/certificate pair in that
1309 directory, and if it does not find one, it will create one and save it
1310 in that directory.
1312 <P> Alpine does not care about the names of the key and certificates in 
1313 this directory, but the private key must have &quot;.key&quot; extension 
1314 and your public certificate must have the &quot;.crt&quot; extension. The
1315 name of the private key will be used in the prompt when you are asked
1316 to unlock your key to decrypt your password.
1318 <P> If Alpine cannot find a suitable private key and public certificate 
1319 pair to encrypt your password, it will create one. You will be asked to 
1320 create a &quot;Master Password&quot; to protect such key. At this moment 
1321 there are no restrictions on passwords, other than they have to be at 
1322 least 8 characters long, but future versions of Alpine will include 
1323 functionality to restrict master passwords, as set up by the administrator 
1324 of the system in the pine.conf.fixed file.
1326 <P><A NAME="example_existing_key"><B>Example of Use of Existing Key and Certificate</B></A>
1328 <P>Assume you have a private key called peter@address.com.key in your, 
1329 ~/.alpine-smime/private directory, and a public certificate called 
1330 peter@address.com.crt in your ~/.alpine-smime/public directory, and these 
1331 are your only key/certificate pair.
1333 <P> When Alpine starts for the first time, without command line options, 
1334 it will check if the directory ~/.alpine-smime/.pwd exists, and if not, 
1335 it will create it. Then it will go through your keys and certificates and 
1336 find a pair that it can use, and copy the files peter@address.com.key,
1337 and peter@address.com.crt to the ~/.alpine-smime/.pwd directory. Alternatively
1338 you can do the same by copying these files by yourself. This can be done
1339 with the sequence of commands
1341 <PRE>
1342 mkdir ~/.alpine-smime/.pwd
1343 cp ~/.alpine-smime/private/peter@address.com.key ~/.alpine-smime/.pwd
1344 cp ~/.alpine-smime/public/peter@address.com.crt ~/.alpine-smime/.pwd
1345 </PRE>
1347 <P> When Alpine starts, you will be asked the password to unlock your
1348 private key with the prompt.
1350 <PRE>
1351 Enter password of key &lt;peter@address.com&gt; to unlock password file:
1352 </PRE>
1354 <P> If you prefer to use different names for your private and public keys 
1355 in the ~/.alpine-smime/.pwd directory, you can do so, but you must 
1356 preserve the extension of the files. For example, you can use the names 
1357 private_key.key and public_cert.crt instead. In this case, the prompt you 
1358 will see when you are asked to unlock your private key will read
1360 <PRE>
1361 Enter password of key &lt;private_key&gt; to unlock password file:
1362 </PRE>
1364 <P>Observe that you do not need to use an existing key/certificate pair, 
1365 and that you can create a new private key/public certificate pair to 
1366 encrypt and decrypt your password file. Alpine provides a mechanism to
1367 change the encryption key for this file in the S/MIME configuration
1368 screen.
1370 <P><A NAME="example_self_signed"><B>Example of Creating Master Password</B></A>
1372 <P> If Alpine cannot find a suitable private key and public certificate pair
1373 to encrypt your password file, it will create one. When doing so, it will
1374 start the process with the following warning:
1376 <PRE>
1377 Creating a Master Password for your Password file.
1378 </PRE>
1380 <P> Then Alpine will ask you to enter your Master Password:
1382 <PRE>
1383 Create master password (attempt 1 of 3):
1384 </PRE>
1386 <P> Once you enter this password, and it validates according to system policy,
1387 you will be asked to confirm this password. 
1389 <PRE>
1390 Confirm master password (attempt 1 of 3):
1391 </PRE>
1393 <P> If you input the same password, then Alpine will set that as your 
1394 Master Password, and you will use this password to unlock your key in the 
1395 future.
1397 <P> If you would like to switch your Master Password in the future, you can 
1398 do so by creating a new public key and public certificate pair. You can do 
1399 so in the S/MIME configuration screen, in the &quot;Manage Key and 
1400 Certificate for Password File&quot; section, simply enter your current 
1401 password to unlock your current key and then press &quot;C&quot; to create 
1402 a new key.
1405 &lt;End of help&gt;
1406 </BODY>
1407 </HTML>
1408 ====== h_network_encryption_security ======
1409 <HTML>
1410 <HEAD>
1411 <TITLE>Network Encryption Security Explained</TITLE>
1412 </HEAD>
1413 <BODY>
1414 <H1>Network Encryption Security Explained</H1>
1416 You can specify which encryption protocol you would like to try when
1417 creating a secure connection to a server. Alpine will attempt to use
1418 that encryption protocol, but in practice the protocol being used will
1419 default to the most secure protocol that both Alpine and the server
1420 support.
1422 <P> If you use the latest version of OpenSSL, the /ssl modifier to the 
1423 server definition will use the most secure version of the TLS encryption 
1424 protocol. The same will be true if you try /tls1_1 or /tls1_2, but in an 
1425 old version of OpenSSL (pre 1.1.0 series) /tls1_1 might mean to use 
1426 version 1.1 of the TLS protocol.
1428 <P> You will never go wrong by using the /ssl modifier. At the time of
1429 this writing OpenSSL had released version 1.1.1, with support for
1430 TLS version 1.3. If your version of OpenSSL does not support this version
1431 of the TLS protocol, then the /tls1_3 modifier will only mean to use
1432 the most secure version of the TLS protocol that OpenSSL and the
1433 server can negotiate. In future versions of OpenSSL, /tls1_3 might mean
1434 to try to negotiate a higher version of the TLS protocol.
1436 <P> In order to avoid confusion, the /ssl flag is the best way to guarantee
1437 the highest encryption protocol available, and it is the recommended
1438 modifier to the server definition to create a secure encrypted connection.
1441 &lt;End of help&gt;
1442 </BODY>
1443 </HTML>
1444 ====== h_tls_failure_details ======
1445 <HTML>
1446 <HEAD>
1447 <TITLE>Certificate Validation Details</TITLE>
1448 </HEAD>
1449 <BODY>
1450 <H1>Certificate Validation Details</H1>
1452 This screen gives details as to why the certificate validation failed: the
1453 name of the desired server system; the reason for failure; and the name on
1454 the certificate.  This is primarily of interest to experts.
1457 &lt;End of help&gt;
1458 </BODY>
1459 </HTML>
1460 ====== h_tls_failure ======
1461 <HTML>
1462 <HEAD>
1463 <TITLE>TLS or SSL Failure</TITLE>
1464 </HEAD>
1465 <BODY>
1466 <H1>TLS or SSL Failure</H1>
1468 An attempt was made to establish a secure, encrypted connection to the
1469 server system using either Transport Layer Security (TLS) or the older
1470 Secure Sockets Layer (SSL).  This attempt failed.
1473 You should contact your server system management for more assistance.
1474 The problem is probably at the server system and not in Alpine or your local
1475 system.  The text in this screen may be helpful for the server system
1476 management in debugging the problem,
1479 &lt;End of help&gt;
1480 </BODY>
1481 </HTML>
1482 ====== h_tls_validation_failure ======
1483 <HTML>
1484 <HEAD>
1485 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
1486 </HEAD>
1487 <BODY>
1488 <H1>TLS and SSL Certificate Validation Failures</H1>
1490 An attempt was made to establish a secure, encrypted connection to the
1491 server system using either Transport Layer Security (TLS) or the older
1492 Secure Sockets Layer (SSL).
1495 An important part of this procedure is server certificate validation.  A
1496 server certificate is an &quot;electronic identification card&quot; for the server
1497 system that is signed by a well-known certificate authority (CA).  Alpine
1498 compares the server system identity in the server certificate with the
1499 name of the server system to which it is trying to connect.  Alpine also
1500 verifies that the CA signature is authentic.
1503 Some common failure conditions are:
1506 <UL>
1507   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
1508 signed its own certificate.  This does not necessarily indicate anything
1509 bad; the server operators may simply have elected to not purchase a
1510 signed certificate from a certificate authority.
1512   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
1513 the signature on the server system is from an unknown certificate authority.
1514 It can also mean that no certificate authority certificates have been
1515 installed on the local UNIX system.
1517   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
1518 the same as either of the above two conditions in UNIX Alpine.  Note that
1519 Windows systems typically have a full set of certificate authority
1520 certificates installed, so it is more likely to be a self-signed
1521 certificate than an unknown certificate authority.
1523   <LI> Server name does not match certificate.  This means that the server
1524 presented a proper signed certificate for a name other than the desired
1525 name.
1526 </UL>
1529 Any of these conditions can indicate that you are being attacked and have
1530 been directed to an imposter server that will record your password and
1531 your private mail messages.  It can also mean something innocuous.
1534 If you are certain that the problem is innocuous, you can append the
1535 option
1538 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
1541 to the server system name where it appears in your configuration (e.g. the
1542 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
1543 a folder-collection, or a news or SMTP server).  This will
1544 disable certificate validation.  On the other hand, if you are attacked,
1545 you will get no warning if you do this.
1548 &lt;End of Cert Validation Failures help&gt;
1549 </BODY>
1550 </HTML>
1551 ====== h_release_tlscerts ======
1552 <HTML>
1553 <HEAD>
1554 <TITLE>TLS and SSL usage note</TITLE>
1555 </HEAD>
1556 <BODY>
1557 <H1>TLS and SSL usage note</H1>
1560 When using Alpine from Unix or Windows 2000,
1561 server certificates must be signed by a trusted certificate authority.
1562 You may relax this requirement (at the cost of some security) by using
1564 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
1565 modifier in the mailbox name.
1568 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
1571 The fully-qualified host name of the server should be used
1572 so that it matches the host name in the server certificate.
1574 Here is an example of a host specification that directs Alpine to use
1575 the SSL port (993) and an encrypted data stream.
1577 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
1579 &lt;End of TLS usage help&gt;
1580 </BODY>
1581 </HTML>
1582 ====== h_news_config ======
1583 <HTML>
1584 <HEAD>
1585 <TITLE>Alpine Configuration</TITLE>
1586 </HEAD>
1587 <BODY>
1588 <H1>Alpine Configuration</H1>
1590 <H2>Using Environment Variables</H2>
1592 The values of Alpine configuration options may include environment variables
1593 that are replaced by the value of the variable at the time Alpine is run
1594 (and also at the time the config option is changed).
1595 The syntax to use environment variables is a subset of the common Unix
1596 shell dollar-syntax.
1597 For example, if
1599 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
1601 appears in the value of an Alpine configuration option it is looked up in the
1602 environent (using getenv(&quot;VAR&quot;)) and its
1603 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
1604 To include a literal dollar sign you may precede the dollar sign with another
1605 dollar sign.
1606 In other words, if the text
1608 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
1610 is the value of a configuration option, it will be expanded to
1612 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
1614 and no environment lookup will be done.
1615 For Unix Alpine it will also work to use a backslash character to
1616 escape the special meaning of the dollar sign, but $$ is preferable since
1617 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
1618 to be in a shared configuration file.
1621 This all sounds more complicated than it actually is.
1622 An example may make it clearer.
1623 Unfortunately, the way in which environment variables are set is OS-dependent 
1624 and command shell-dependent.
1625 In some Unix command shells you may use
1627 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
1628    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
1630 Now, if you use Alpine's Setup/Config screen to set
1632 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
1634 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
1635 so that this would be equivalent to
1637 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
1639 Note, environment variable substitution happens after configuration
1640 options that are lists are split into the separate elements of the list,
1641 so a single environment variable can't contain a list of values.
1644 The environment variable doesn't have to be the only thing
1645 after the equal sign.
1646 However, if the name of the variable is not at the end of the line or
1647 followed by a space (so that you can tell where the variable name ends),
1648 it must be enclosed in curly braces like
1650 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
1652 It is always ok to use the braces even if you don't need to.
1654 It is also possible to set a default value for an environment variable.
1655 This default value will be used if the environment variable is not
1656 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
1657 The syntax used to set a default value is
1659 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
1661 If the config file contains
1663 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
1665 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
1666 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
1667 the value that <SAMP>VAR</SAMP> was set to, otherwise,
1668 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
1669 the default value.
1670 (Note that the variable is called &quot;personal-name&quot; in the config
1671 file but is displayed in the config screen as
1672 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
1673 In general, the value that goes into a config file is never exactly the
1674 same as the value you see on the screen.)
1677 An example where an environment variable might be useful is the
1678 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
1679 Suppose most users used the server
1681 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
1683 but that there were some exceptions who used
1685 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
1687 In this case, the system manager might include the following line in
1688 the systemwide default Alpine configuration file
1690 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
1692 For the exceptional users adding
1694 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
1696 to their environment should work.
1698 Another example might be the case where a user has to use a different
1699 SMTP server from work and from home.
1700 The setup might be something as simple as
1702 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
1704 or perhaps a default value could be given.
1705 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
1706 a list of SMTP servers.
1709 <H2>Configuration precedence</H2>
1711 There are several levels of Alpine configuration.  Configuration values at
1712 a given level override corresponding values at lower levels.  In order of
1713 increasing precedence:
1715 <UL>
1716  <LI> built-in defaults
1717  <LI> system-wide
1718 <!--chtml if pinemode="os_windows"-->
1719       config file from command line or provided
1720       by "PINECONF" environment variable
1721 <!--chtml else-->
1722       pine.conf file
1723 <!--chtml endif-->
1724  <LI> personal configuration file
1725  <LI> personal exceptions configuration file
1726  <LI> command-line options
1727  <!--chtml if pinemode="os_windows"--><!--chtml else-->
1728  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
1729 </UL>
1731 The values in both the personal configuration file and the
1732 <A HREF="h_config_exceptions">exceptions</A>
1733 configuration file may be set using the Setup command.
1734 Setup/Config is the command to change most of the personal configuration
1735 options.
1736 The other Setup subcommands are also used to change the configuration,
1737 for example, Setup/AddressBook, Setup/Rules, and so on.
1738 Changing the personal exceptions configuration is very similar.
1739 To change a value in the Config screen you would use the command
1740 Setup/eXceptions/Config.
1741 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
1743 There are a couple exceptions to the rule that configuration values are replaced
1744 by the value of the same option in a higher-precedence file.
1745 The Feature-List variable has values that are additive, but can be
1746 negated by prepending &quot;no-&quot; in front of an individual feature name.
1747 So for features, each individual feature's value is replaced by the value
1748 of the same feature in a higher-precedence file.
1749 Note that this is done automatically for you when you change these values via
1750 the Setup/Config command.
1751 The other exception to the <EM>replace</EM> semantics happens when you
1752 use <A HREF="h_config_inheritance">configuration inheritance</A>
1753 for option lists.
1756 <H2>File name defaults</H2>
1758 Notes:<P>
1760 <BR> &lt;exe dir&gt; = directory where pine.exe found.
1761 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
1762 <BR> # = default file name is overridable in pinerc.
1763 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
1764 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
1765 <BR> + between the mailcap paths implies that the two files are combined.
1766 <BR> ; between other default paths implies that the first one found is used.
1767 </P>
1768 Alpine looks for most support files in the same directory it finds its
1769 personal configuration file (pinerc).  The -p command-line flag may be
1770 used to specify a particular path name for the pinerc file.  If a
1771 pinerc file does not exist, it will be created (if directory permissions
1772 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
1773 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
1774 file does not exist in either one, it will create one in the first of those
1775 two directories that is writable.  In detail:
1776 <PRE>
1778 PC-Alpine:
1780  executable     &lt;DOS search path&gt;&#92;pine.exe
1781  help index     &lt;exe dir&gt;&#92;pine.ndx
1782  help text      &lt;exe dir&gt;&#92;pine.hlp
1784  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
1785  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
1786  global cfg     $PINECONF
1788  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
1789  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
1790  signature#     &lt;pinerc dir&gt;&#92;pine.sig
1791  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
1792  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
1793  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
1794  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
1795  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
1796  postponed#     $HOME&#92;mail&#92;postpond.mtx
1797  interrupted    $HOME&#92;mail&#92;intruptd
1799 Unix Alpine:
1801  executable     &lt;Unix search path&gt;/pine
1802  persnl cfg     ~/.pinerc
1803  except cfg     ~/.pinercex
1804  global cfg     <!--#echo var="PINE_CONF_PATH"-->
1805  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
1806  local help     <!--#echo var="PINE_INFO_PATH"-->
1808  interrupted    ~/.pine-interrupted-mail
1809  debug          ~/.pine-debugN
1810  crash          ~/.pine-crash
1811  newsrc#        ~/.newsrc
1812  signature#     &lt;pinerc dir&gt;/.signature
1813  addressbook#   &lt;pinerc dir&gt;/.addressbook
1814  postponed#     ~/mail/postponed-msgs
1815  sentmail#      ~/mail/sent-mail
1816  mailcap#       ~/.mailcap + /etc/mailcap
1817                            + /usr/etc/mailcap + /usr/local/etc/mailcap
1818  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
1820  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
1821  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
1822  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
1823  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
1824  password       /etc/passwd
1826 Unix Alpine and PC-Alpine:
1828  .ab*           remote addressbook support files
1829  a[1-9]*        temporary (while Alpine is running) addressbook files
1831 </PRE>
1834 <H2>Mailcap files</H2>
1836 Alpine honors the mailcap configuration system for specifying external
1837 programs for handling attachments.  The mailcap file maps MIME attachment
1838 types to the external programs loaded on your system that can display
1839 and/or print the file.  A sample mailcap file comes bundled with the Alpine
1840 distribution.  It includes comments that explain the syntax you need to
1841 use for mailcap.  With the mailcap file, any program (mail readers,
1842 newsreaders, WWW clients) can use the same configuration for handling
1843 MIME-encoded data.
1846 <H2>MIME-Types files</H2>
1848 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
1849 what Content-Type to use for labeling an attached file, based on
1850 the file extension.  That is, this file provides a mapping between
1851 filename extensions and MIME content-types.
1854 <H2>Environment variables</H2>
1856 PC-Alpine uses the following environment variables:
1857 <DL>
1858 <DT>PINERC</DT>
1859 <DD>Optional path to pinerc file.</DD>
1860 <DT>PINERCEX</DT>
1861 <DD>Optional path to personal exceptions configuration file.</DD>
1862 <DT>PINECONF</DT>
1863 <DD>Optional path to global pine config file.</DD>
1864 <DT>HOME</DT>
1865 <DT>TMPDIR, TMP, or TEMP</DT>
1866 <DT>COMSPEC</DT>
1867 <DT>MAILCAPS</DT>
1868 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
1869 <DT>USER_DICTIONARY</DT>
1870 <DD>Used to specify the file to contain the user's spell check
1871 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
1872 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
1873 </DL>
1875 Unix Alpine uses the following environment variables:
1876 <DL>
1877 <DT>TERM</DT>
1878 <DD>Tells Alpine what kind of terminal is being used.</DD>
1879 <DT>DISPLAY</DT>
1880 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
1881 <DT>SHELL</DT>
1882 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
1883 <DT>TMPDIR, TMP, or TEMP</DT>
1884 <DT>MAILCAPS</DT>
1885 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
1886 </DL>
1887 <!--chtml if pinemode="os_windows"-->
1889 <H2>Common PC-Alpine Configuration Problems</H2>
1891 <H3>Configuration settings aren't being saved</H3>
1893 <P>This problem can happen if you run pine from one directory and
1894 then decide to move your pine directory to another location.  PC-Alpine
1895 stores certain variables, including the configuration location, in the
1896 Windows Registry (which you shouldn't ever need to manually edit).  There
1897 are a couple of ways to go about removing or resetting the values in the
1898 registry.
1901 1) Run PC-Alpine's registry value deletion command.  This can be done by
1902 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
1903 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
1904 value to the above command.
1907 2) Tell PC-Alpine where to look for the configuration file.  Configuration
1908 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
1909 option, you can tell PC-Alpine the location of your pinerc.  An example of
1910 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;.
1911 Again, you can use the DOS prompt or the shortcut method explained in (1).
1914 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
1915 set registry values to the current setting, and is therefore useful with
1916 the &quot;-p&nbsp;PINERC&quot; option.
1918 <!--chtml endif-->
1920 &lt;End of Configuration Notes&gt;
1921 </BODY>
1922 </HTML>
1923 ====== h_news_legal ======
1924 <html>
1925 <head>
1926 <TITLE>Alpine Legal Notices</TITLE>
1927 </head>
1928 <body>
1930 <H1>Alpine Legal Notices</H1>
1932 Alpine and its constituent programs are covered by the Apache License Version 2.0.
1936 &lt;End of Alpine Legal Notices&gt;
1937 </BODY>
1938 </HTML>
1939 ===== h_info_on_mbox =====
1940 <HTML>
1941 <HEAD>
1942 <TITLE>Information on mbox driver</TITLE>
1943 </HEAD>
1944 <BODY>
1945 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
1947 Beginning with Pine 4.00 (Pine came before Alpine)
1948 a new INBOX access method is
1949 available as part of the standard configuration.  It is called the
1950 &quot;mbox&quot; driver and it works like this:<P>
1953 <BLOCKQUOTE>
1954 If the file &quot;mbox&quot; exists in the user's home directory, and
1955 is in Unix mailbox format, then when INBOX is opened this file will be
1956 selected as INBOX instead of the mail spool file.  Messages will be
1957 automatically transferred from the mail spool file into the mbox
1958 file.
1959 </BLOCKQUOTE>
1962 The advantage of this method is that, after new mail has been copied
1963 from the system mail spool, all subsequent access is confined to the
1964 user's home directory, which is desirable on some systems.  However, a
1965 possible disadvantage is that mail tools other than those from the
1966 University of Washington will not know to look for mail in the user's
1967 mbox file.  For example, POP or IMAP servers other than those from the
1968 University of Washington, and many &quot;new mail notification&quot;
1969 programs may not work as expected with this driver enabled.<P>
1971 To disable this behavior, either remove/rename the &quot;mbox&quot;
1972 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
1973 option in Setup/Config
1974 and add &quot;mbox&quot; to it:
1976 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
1978 &lt;End of help on this topic&gt;
1979 </BODY>
1980 </HTML>
1981 ===== h_info_on_locking =====
1982 <HTML>
1983 <HEAD>
1984 <TITLE>FAQs on Alpine Locking</TITLE>
1985 </HEAD>
1986 <BODY>
1987 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
1989 There is an extensive section on locking in the Alpine technical notes;
1990 this information is intended to provide answers to some common questions:<P>
1991 <OL>
1992 <LI> Why did locking change in Pine 4.00?<BR>
1993 The actual locking mechanisms did not change in 4.00.
1994 What changed is that when one particular locking mechanism used by Alpine 
1995 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
1996 failure would occur, but no warning was issued.<P>
1998 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
1999 Yes.  It means that Alpine was unable to create a lockfile in the
2000 spool directory, generally because of overly restrictive protections on the
2001 spool directory.  The correct permissions on the spool directory for
2002 running Alpine are 1777, i.e. read-write-execute permission for everyone,
2003 with the sticky-bit set, so only owners of a file can delete them.<P>
2005 <LI> Why does Alpine require that the mail spool directory have 1777
2006    protections?<BR>
2007 Alpine was designed to run without special privileges.  This means that in
2008 order to create a lockfile in the spool directory, it is necessary to have
2009 the spool directory permissions be world-writable.<P>
2011 <LI> Can't you create the lockfile somewhere else?<BR>
2012 No.  The lockfile in question must be in the mail spool directory, because
2013 that's where the mail delivery program expects to find it, and the purpose
2014 of the file is to coordinate access between the mail client (Alpine) and the
2015 mail delivery program.<P>
2017 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
2018 No.  Remember that the individual mail files in the spool directory are
2019 NOT world-writable, only the containing directory.  Setting the &quot;sticky
2020 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
2021 -- means that only the owner of the file (or root) can delete files in the 
2022 directory.  So the only bad behavior that is invited by the 1777 mode is that 
2023 anyone could
2024 create a random file in the spool directory.  If the spool directory is
2025 under quota control along with home directories, there is little incentive
2026 for anyone to do this, and even without quotas a periodic scan for
2027 non-mail files usually takes care of the problem.  <P>
2029 <LI> Why not run Alpine as setgid mail?<BR>
2030 Alpine was never designed to run with privileges, and to do so introduces a
2031 significant security vulnerability.  For example, if a user suspends Alpine,
2032 the resulting shell will have group privileges.  This is one example of
2033 why we strongly recommend against running Alpine as a privileged program.
2034 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
2035 users
2036 could not test Alpine versions or other mailers that had not been installed
2037 by the system administrators.<P>
2040 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
2041 There are, but they all have different sets of tradeoffs, and not all will
2042 work on all systems.  Some examples:<UL>
2043  <LI> Use lock system calls.  Works fine on a few systems, provided mail
2044    spool is local.   Doesn't work reliably if NFS is used.
2045    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
2046    use the same calls.
2047  <LI> Deliver mail to user's home directory.  An excellent solution, highly
2048    recommended -- but one which is incompatible with some &quot;legacy&quot; 
2049 mail tools that always look in the spool directory for the mail.
2050 </UL><P>
2052 <LI> Are these spool directory lock files the only kinds of locks used by
2053    Alpine?<BR>
2054 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
2055 mailbox format folders, these are used to coordinate access between
2056 multiple Alpine sessions.  <P>
2058 <LI> What about the 
2059 <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>
2060 This is for people who are content to live dangerously, or who have
2061 specific knowledge that the spool directory lockfiles are superfluous on
2062 their system (because both Alpine and the mail delivery program are using 
2063 system call file locking in a context that works reliably, e.g. not NFS.)<P>
2065 <LI> Where can I find more details on how Alpine locking works?<BR>
2066 See the Alpine Technical Notes.<P>
2068 </OL>
2070 &lt;End of help on this topic&gt;
2071 </BODY>
2072 </HTML>
2073 ===== h_finding_help ====
2074 <HTML>
2075 <HEAD>
2076 <TITLE>Finding more information and requesting help</TITLE>
2077 </HEAD>
2078 <BODY>
2079 <H1>Places to Look for More Answers</H1>
2080 If you have questions about or problems with Alpine that you cannot resolve 
2081 after consulting the program's internal, context-sensitive help screens, here 
2082 are additional information resources that you may find helpful:
2084 <UL>
2085   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
2087   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
2089   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
2090 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
2091   since the last version, which may be useful for you to be aware of, 
2092 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
2093 a change in the way an aspect of Alpine works.  There, you will also find notes 
2094 on Alpine configuration.<P>
2095 <!--
2096   <LI> The main site for Alpine contains information on configuring and solving problems
2097        with Alpine, it can be found at
2099 <CENTER><A HREF="http://alpine.x10host.com/alpine/">http://alpine.x10host.com/alpine/</A></CENTER>  
2101   <LI> The Alpine Information Center (maintained by the University of
2102            Washington) World Wide Web site contains, among other things
2103            <UL>
2104            <LI>a collection of Frequently Asked Questions (and answers!) about Alpine
2105            <LI>an overview of the basics for beginning Alpine users
2106            <LI>Technical Notes for systems administrators
2107            <LI>archives (including a searchable index) of the alpine-info 
2108 mailing list, on which matters of interest to systems/email administrators,
2109 developers, trainers, user support personnel, and others involved with Alpine 
2110 messaging on a &quot;technical&quot; level are discussed.
2111 </UL>
2112         The Alpine Information Center can be accessed with a WWW browser at:<P>
2113             <CENTER><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></CENTER>  
2114 </UL>
2115 <P><HR WIDTH="75%">
2116 <H1>Requesting help</H1>
2117 If the internal help, the Release Notes, the Alpine Information Center, and your 
2118 local online and print resources do not help you resolve a problem, please
2119 start by contacting your local computer support staff and asking for help.
2121 This is especially true if:
2122 <ul>
2123   <li>You suddenly have trouble sending or receiving mail.
2124   <li>You receive a "disk quota exceeded" message.
2125   <li>You have forgotten your password.
2126   <li>You think your account may have been compromised.
2127   <li>You need help viewing an attachment.
2128   <li>You need to know how to configure your:
2129       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
2130       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
2131       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
2132       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
2133   <li>You want to know what alternative editors or spellcheckers you may be able to use.
2134   <li>You want to block email from a particular person.
2135   <li>You're going on vacation and need to autorespond to incoming mail.
2136   <li>You want to automatically file or filter incoming messages.
2137 </ul>
2139 In all of these cases,
2140 you should contact <B>your</B> support staff, because <B>only they</B> 
2141 will be able to assist you effectively. Your support staff may be, depending on who 
2142 provides you with the email account you use Alpine with, for example:<UL>
2143 <LI> the computing help desk of (a department of) your university, school, 
2144 employer, ... ; or
2145 <LI> the customer service center of your Internet Service Provider; or
2146 <LI> the friendly volunteer helpers of your Freenet; or
2147 <LI> the person who setup your computer and internet connection.
2148 </UL>
2150 Due to the large number of Alpine installations worldwide, and because we
2151 receive no funding for it, the University of Washington <B>cannot provide 
2152 individual support services outside the University of Washington</B>.
2154 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
2155 newsgroup can be a valuable source of information and assistance for Alpine 
2156 user issues.
2158 For systems/email administrators, developers, trainers, user support
2159 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
2160 level, the mailing list alpine-info is available; for information on
2161 subscribing and posting to it, see
2163 <CENTER><A HREF="http://www.washington.edu/alpine/alpine-info/subscribing.html">http://www.washington.edu/alpine/alpine-info/subscribing.html</A></CENTER>
2166 Regardless of whom you are asking for help with Alpine, remember 
2167 to provide as much detail as you can about the
2168 nature of any problem you are encountering, such as
2169 <UL>
2170 <LI>when it first occurred;
2171 <LI>what, if anything, happened that might have brought it about;
2172 <LI>whether it still persists;
2173 <LI>whether it is reproducible, and if so, how;
2174 <LI>what, if anything, you already tried to solve it.
2175 </UL> 
2176 It may also be helpful if you specify what version of Alpine you are using 
2177 <!--chtml if pinemode="running"-->
2178 -- this is <!--#echo var="ALPINE_VERSION"--> --
2179 <!--chtml endif-->
2180 and on what system, and when the copy of Alpine you are using was created
2181 <!--chtml if pinemode="running"-->
2182 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
2183 <!--chtml endif-->
2185 <!--chtml if pinemode="running"-->
2186 <P>   
2187 When the Alpine program you are currently using was installed, a support
2188 contact email address may have been set up; in that case, you can simply select
2189 this link now to send a message to it:<BR>
2190 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
2191 <!--chtml endif-->
2192 <!--chtml if [ -r PINE_INFO_PATH ]-->
2193 <HR WIDTH="75%">Local Support Contacts:<P>
2194 <!--#include file="PINE_INFO_PATH"-->
2195 <HR WIDTH="75%">
2196 <!--chtml endif-->
2197 <P> 
2198 &lt;End of help on this topic&gt;
2199 </BODY>
2200 </HTML>
2201 ===== new_user_greeting ======
2202 <HTML>
2203 <HEAD>
2204 <TITLE>NEW USER GREETING</TITLE>
2205 </HEAD>
2206 <BODY>
2207 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2208 <BR>
2209 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2210 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
2211 select Setup/Config to see many of the options available to you. Also note
2212 that all screens have context-sensitive help text available.<P>
2213 <!--chtml if pinemode="phone_home"-->
2214 SPECIAL REQUEST:
2215 This software was originally created and maintained as a public
2216 service by the University of Washington until 2009; updates are made 
2217 available as a public service of the Alpine community. It is always 
2218 helpful to have an idea of how many users are using Alpine. Are you 
2219 willing to be counted as an Alpine user? Pressing 
2220 <A HREF="X-Alpine-Phone-Home:">Return</A>
2221 will send an anonymous (meaning, your real email address will not be revealed) 
2222 message to the Alpine developers for purposes of tallying.
2224 <!--To Exit this screen and continue your Alpine session press "E".-->
2225 <!--chtml else-->
2226 To Exit this screen and continue your Alpine session press "Return".
2227 <!--chtml endif-->
2228 </BODY>
2229 </HTML>
2230 ===== new_alpine_user_greeting ======
2231 <HTML>
2232 <HEAD>
2233 <TITLE>NEW ALPINE USER GREETING</TITLE>
2234 </HEAD>
2235 <BODY>
2236 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2237 <BR>
2238 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2239 Your Alpine configuration file indicates that you may have used Pine before
2240 but not Alpine.
2241 If you are familiar with the way Pine works, you should be comfortable
2242 using Alpine.
2243 Your Pine configuration file is automatically used for Alpine.
2244 The Release Notes may be viewed by pressing 
2245 &quot;R&quot; now or while in the MAIN MENU.
2247 <!--chtml if pinemode="phone_home"-->
2248 SPECIAL REQUEST:
2249 This software was originally created and maintained as a public
2250 service by the University of Washington until 2009; updates are made 
2251 available as a public service of the Alpine community. It is always 
2252 helpful to have an idea of how many users are using Alpine. Are you 
2253 willing to be counted as an Alpine user? Pressing 
2254 <A HREF="X-Alpine-Phone-Home:">Return</A>
2255 will send an anonymous (meaning, your real email address will not be revealed) 
2256 message to the Alpine developers for purposes of tallying.
2258 <!--To Exit this screen and continue your Alpine session press "E".-->
2259 <!--chtml else-->
2260 To Exit this screen and continue your Alpine session press "Return".
2261 <!--chtml endif-->
2262 </BODY>
2263 </HTML>
2264 ===== new_version_greeting ======
2265 <HTML>
2266 <HEAD>
2267 <TITLE>NEW VERSION GREETING</TITLE>
2268 </HEAD>
2269 <BODY>
2270 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2271 <BR>
2272 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
2273 Your Alpine configuration file indicates that you may not have used 
2274 this version of Alpine before.  This version's significant changes are
2275 documented in the Release Notes, which may be viewed by pressing 
2276 &quot;R&quot; now or while in the MAIN MENU.
2278 <!--chtml if pinemode="phone_home"-->
2279 SPECIAL REQUEST:
2280 This software was originally created and maintained as a public
2281 service by the University of Washington until 2009; updates are made 
2282 available as a public service of the Alpine community. It is always 
2283 helpful to have an idea of how many users are using Alpine. Are you 
2284 willing to be counted as an Alpine user? Pressing 
2285 <A HREF="X-Alpine-Phone-Home:">Return</A>
2286 will send an anonymous (meaning, your real email address will not be revealed) 
2287 message to the Alpine developers for purposes of tallying.
2289 <!--To Exit this screen and continue your Alpine session press "E".-->
2290 <!--chtml else-->
2291 To Exit this screen and continue your Alpine session press "Return".
2292 <!--chtml endif-->
2293 </BODY>
2294 </HTML>
2296 ===== main_menu_tx ======
2297 <HTML>
2298 <HEAD>
2299 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
2300 </HEAD>
2301 <BODY>
2302 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
2303 <DIV ALIGN=CENTER>
2304 Version <!--#echo var="ALPINE_VERSION"-->
2305 <!--chtml if pinemode="running"-->
2306 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
2307 <!--chtml endif-->
2308 </DIV>
2309 <CENTER>Copyright 2013-2018 Eduardo Chappa,
2310 <BR>Copyright 2006-2008 University of Washington.
2311 </CENTER>
2314 When you are viewing a help screen, there may be links to
2315 other topics highlighted (in Reverse video) in the text.
2316 Here is an example.
2317 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
2318 highlighted.
2319 If you type carriage return (or V for View Link, see the commands at the
2320 bottom of the screen) you will be taken to a new help screen to view the
2321 Introduction.
2322 The commands at the bottom of the screen should then include
2323 &quot;P Prev Help&quot;.
2324 If you type &quot;P&quot; you will end up back here.
2325 If you type &quot;E&quot; for Exit, you will be back out of help and returned
2326 to the place you were in Alpine when you entered Help.
2327 In this case, you would go back to the MAIN MENU.
2328 There are also other links that are highlighted in bold (or the color used
2329 by your terminal to display bold).
2330 The items after the Introduction in the TABLE OF CONTENTS are all examples
2331 of such links.
2332 In order to view those links, you first have to make the link you want
2333 to view the current link.
2334 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
2335 (see bottom of screen) can do that for you.
2338 <H2>TABLE OF CONTENTS</H2>
2339 <OL>
2340   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
2341   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
2342 <!--chtml if [ -r PINE_INFO_PATH ]-->
2343   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
2344 <!--chtml endif-->
2345   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
2346   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
2347   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
2348   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
2349   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
2350   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
2351   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
2352   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
2353   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
2354   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
2355   <LI> <A HREF="h_mainhelp_folders">Folders</A>
2356   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
2357   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
2358   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
2359   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
2360   <LI> <A HREF="h_mainhelp_roles">Roles</A>
2361   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
2362   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
2363   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
2364   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
2365   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
2366   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
2367   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
2368   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
2369   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
2370 </OL>
2373 &lt;End of help on this topic&gt;
2374 </BODY>
2375 </HTML>
2376 ===== h_mainhelp_intro ======
2377 <HTML>
2378 <HEAD>
2379 <TITLE>Introduction</TITLE>
2380 </HEAD>
2381 <BODY>
2382 <H1>Introduction</H1>
2384 Alpine is an &quot;Alternatively Licensed Program for Internet
2385 News and Email&quot; produced until 2009 by the University of Washington.
2386 It is intended to be an easy-to-use program for
2387 sending, receiving, and filing Internet electronic mail messages and
2388 bulletin board (Netnews/Usenet) messages. Alpine supports the following
2389 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
2390 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
2391 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
2392 Directory Access Protocol).<p>
2394 Although originally designed for inexperienced email users, Alpine has
2395 evolved to support many advanced features.  There are an ever-growing
2396 number of configuration and personal-preference options, though which of
2397 them are available to you is determined by your local system managers. 
2399 <H2>WHAT ALPINE DOES...</H2>
2401 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
2402 allows you to
2403 compose and read messages using Internet mail standards.  (Whether you
2404 can correspond with others on the Internet depends on whether or not your
2405 computer is connected to the Internet.)  Alpine also allows reading and
2406 posting messages on the Internet &quot;net news&quot; system, provided
2407 that your site operates a suitable news server.
2409 <H2>WHAT ALPINE DOES NOT DO...</H2>
2411 A &quot;mail user agent&quot; such as Alpine is just one part of a
2412 messaging system. Here are some things that are <B>not</B> done by Alpine,
2413 but require other programs:<P>
2414 <UL>
2415  <LI> Actual relaying of email... which is done by &quot;message transfer 
2416 agents&quot;.
2417  <LI> Vacation messages... automatically responding to incoming messages
2418  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
2419 email.
2420  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
2421  <LI> List processing... resending one message to a list of recipients.
2422 </UL>
2425 &lt;End of help on this topic&gt;
2426 </BODY>
2427 </HTML>
2429 ===== h_mainhelp_pinehelp ======
2430 <HTML>
2431 <HEAD>
2432 <TITLE>Alpine Help</TITLE>
2433 </HEAD>
2434 <BODY>
2435 <H1>Alpine Help</H1>
2437 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
2438 use will have its own help text, explaining the choices available for that
2439 screen. This general help section, on the other hand, attempts to give an 
2440 overall picture of what Alpine is capable of doing, as well as pointers to 
2441 additional help sections about specific topics.<p>
2443 Much of the help text contains links to further help topics, similar to
2444 how the World Wide Web works.
2445 You may choose a link to view using the &quot;NextLink&quot; and
2446 &quot;PrevLink&quot; commands to change the link that is highlighted.
2447 The &quot;View Link&quot; command will then show you the highlighted link.
2448 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
2449 will return you to where you were before viewing the link, and &quot;Exit Help&quot
2450 will return you to the location in Alpine before you asked for help.
2451 For example, if you are reading this text in Alpine you may return to the
2452 help table of contents with the &quot;Prev Help&quot; command or you may view the
2453 Release notes link in the next paragraph and then return here with
2454 &quot;Prev Help&quot;.
2457 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
2458 on the current Alpine version are also available from the MAIN MENU: Press
2459 <!--chtml if pinemode="function_key"-->
2460 &quot;F9&quot;
2461 <!--chtml else-->
2462 &quot;R&quot;
2463 <!--chtml endif-->
2464 to browse the release notes.  These include changes since the last release,
2465 configuration information, the history of the Alpine
2466 project, credits, and legal notices.
2468 Alpine releases are available via the world wide web at
2470 <CENTER><SAMP><A 
2471 HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP
2472 ></CENTER>
2475 If you would like to print <EM>all</EM> of Alpine's internal help text
2476 (not recommended) for a little light bedtime reading, then press
2477 <!--chtml if pinemode="function_key"-->
2478 &quot;F12&quot;
2479 <!--chtml else-->
2480 &quot;Z&quot;
2481 <!--chtml endif-->
2482 now.  (This assumes that the
2483 copy of Alpine you are using has been properly configured for printing
2484 at your site.)
2486 &lt;End of help on this topic&gt;
2487 </BODY>
2488 </HTML>
2489 ===== h_mainhelp_localsupport ======
2490 <HTML>
2491 <HEAD>
2492 <TITLE>Local Support Contacts</TITLE>
2493 </HEAD>
2494 <BODY>
2495 <H1>Local Support Contacts</H1>
2497 <!--chtml if [ -r PINE_INFO_PATH ]-->
2498 <!--#include file="PINE_INFO_PATH"-->
2499 <!--chtml else-->
2500 No Local Support Contacts configured.
2501 <!--chtml endif-->
2504 &lt;End of help on this topic&gt;
2505 </BODY>
2506 </HTML>
2508 ===== h_mainhelp_cmds ======
2509 <HTML>
2510 <HEAD>
2511 <TITLE>Giving Commands in Alpine</TITLE>
2512 </HEAD>
2513 <BODY>
2514 <H1>Giving Commands in Alpine</H1>
2516 Unless configured otherwise
2517 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
2518 the bottom two lines of the screen are always used to list the
2519 commands you can give.  You press the keys that are highlighted to give
2520 the command.  The commands for getting help and going back to the main
2521 menu are always present (except when viewing help as you are now).
2522 <!--chtml if pinemode="function_key"-->
2523 <!--chtml else-->
2525 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
2526 you see at the bottom of any screen. In some cases there are 3 or
2527 even 4 different
2528 sets of keys that can be seen by using the O key. <EM>All commands are 
2529 active</EM>, even if they are not currently showing at the bottom of your 
2530 screen. In other words, you <EM>never</EM> need to press the O key, except to 
2531 remind yourself of the proper key to press to perform an operation.
2533 <H2>Control Key Commands</H2>
2534 When composing mail, and in a few other places, in Alpine you
2535 have to use Control keys. This means pressing the Control key (usually labeled 
2536 &quot;Ctrl&quot;) and the
2537 letter indicated at the same time.  Usually, this is shown with a
2538 &quot;^&quot; in front of the letter.  On some systems, certain control
2539 characters are intercepted before they get to Alpine.  As a work-around,
2540 you can press the ESCAPE key twice followed by the desired key.  For
2541 example, if Ctrl-O (^O) does not work on your system, try typing
2542 &quot;ESC ESC O&quot;.
2543 <!--chtml endif-->
2544 <H2>Paging Up and Down</H2>
2545 The &quot;+&quot; and &quot;-&quot; keys are used for
2546 moving to the next or previous page.  The space bar is a synonym for
2547 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
2548 up as you do in the message composer.  On screens with a WhereIs (search)
2549 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
2550 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
2551 of the message or list.
2553 <H2>Return Key</H2>
2554 The return key is usually a synonym for a frequently used
2555 command.  When viewing a message, there is currently not a default
2556 command, so RETURN does nothing; when in the index, it is synonymous with
2557 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
2558 enclosed in square brackets [] is the same as the return key.
2560 <H2>Control Keys Not Used By Alpine</H2>
2561 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
2562 value, but in places where Alpine is expecting text input, e.g. in the composer or 
2563 at prompts for file/folder names, control keys must be used for editing and 
2564 navigation functions.
2567 Alpine has used nearly all the control keys available.  There are, however,
2568 certain control keys that are reserved by other programs or for technical
2569 reasons.  Alpine does not use any of these keys:
2570 <DL>
2571  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
2572  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
2573  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
2574 </DL>
2576 Note: Ctrl-S and Ctrl-Q can be subject to 
2577 <A HREF="h_special_xon_xoff">special handling</A>.
2579 In addition, while the ESC key alone is not used for command input,
2580 Alpine will recognize two consecutive ESC key presses followed by a letter 
2581 key as a substitute for control key input.  For example, the control key
2582 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
2583 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
2584 This is useful if the communication program you are using
2585 (e.g. Telnet) has its own, conflicting, idea of what certain control
2586 characters mean.
2589 <H2>Repainting the Screen</H2>
2590 Sometimes what is displayed on the screen will be
2591 incorrect due to noise on the phone line or other causes and you will want
2592 to repaint the whole screen to make it correct.  You can use the Ctrl-L
2593 command to do this.  It never hurts to do it when in doubt.
2596 &lt;End of help on this topic&gt;
2597 </BODY>
2598 </HTML>
2599 ===== h_mainhelp_status ======
2600 <HTML>
2601 <HEAD>
2602 <TITLE>Titlebar Line</TITLE>
2603 </HEAD>
2604 <BODY>
2605 <H1>Titlebar Line</H1>
2607 The top line of the screen is Alpine's titlebar line.  It will always display
2608 the current version of Alpine and will also convey information about the
2609 status of the program.  This is where you look to find out what
2610 collection, folder and message number is active and where you are in Alpine.
2613 If the titlebar line says &quot;READONLY&quot; it means that the open folder
2614 (typically your INBOX) is &quot;locked&quot; by another mail session --
2615 most likely a more recent session of Alpine has taken the INBOX lock.
2618 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
2619 access a
2620 folder on a remote mail server, and for some reason, communication with
2621 the mail server has either been lost, or never successfully established.
2622 This can be a result of trying to open a non-existent folder, or one
2623 stored on an invalid or non-operational server, or it can mean that Alpine
2624 has been suspended for more that 30 minutes while accessing a remote mail
2625 server.
2628 &lt;End of help on this topic&gt;
2629 </BODY>
2630 </HTML>
2631 ===== h_mainhelp_mainmenu ======
2632 <HTML>
2633 <HEAD>
2634 <TITLE>Main Menu</TITLE>
2635 </HEAD>
2636 <BODY>
2637 <H1>Main Menu</H1>
2639 The Main Menu lists Alpine's main options.
2640 The key or keys you must type to enter your
2641 choice are to the left of each option or command name.
2642 You can type either uppercase or lowercase letters,
2643 and you should not press &lt;Return&gt; after typing the
2644 letter (unless you are specifically asking for the default,
2645 highlighted command).
2648 From the Main Menu you can choose to read online help, write (compose) and 
2649 send a message, look at an index of your mail messages, open or maintain
2650 your mail folders, update your address book, configure Alpine, and quit Alpine.
2651 There are additional options listed at
2652 the bottom of the screen as well.
2655 The Help command usually returns context-sensitive help information.
2656 However, in the Main Menu you get the most general help, which includes
2657 a Table of Contents.
2658 The last entry in the Table of Contents is an Index of help topics,
2659 so this is a good place to go if you are having trouble finding how
2660 to do something.
2662 <H2>Main Menu Commands</H2>
2663 The Alpine main menu lists the most common Alpine functions. A <a
2664 href="h_main_menu_commands">full list of these
2665 commands</a> and what they do is available.
2667 &lt;End of help on this topic&gt;
2668 </BODY>
2669 </HTML>
2670 ===== h_mainhelp_abooks ======
2671 <HTML>
2672 <HEAD>
2673 <TITLE>Address Books</TITLE>
2674 </HEAD>
2675 <BODY>
2676 <H1>Address Books</H1>
2679 As you use email, you can build a list of your regular email correspondents 
2680 in your Alpine
2681 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
2682 screen. Your
2683 personal address book will be highlighted. Press &lt;Return&gt; to view it.
2684 You can use the address book to store email addresses for individuals or
2685 groups, to create easily
2686 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
2687 address when you are composing a message.
2689 There are two ways to add addresses to your address book: you can add them 
2690 manually or take them from messages (by pressing T to access the Take command). 
2691 With either method, you specify nicknames for your correspondents. A single 
2692 address book entry (or nickname) can point to just one email address, or, it can
2693 point to more than one. When it points to more than one, it is called a 
2694 distribution list. Each distribution list has a nickname, a full name, and a 
2695 list of addresses. These
2696 addresses may be actual addresses, other nicknames in your address book, or 
2697 other
2698 distribution lists.
2701 Additional information is available in Alpine's online help:
2702 <ul>
2703   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
2704 </ul>
2706 &lt;End of help on this topic&gt;
2707 </BODY>
2708 </HTML>
2709 ===== h_mainhelp_ldap ======
2710 <HTML>
2711 <HEAD>
2712 <TITLE>LDAP</TITLE>
2713 </HEAD>
2714 <BODY>
2715 <H1>LDAP</H1>
2717 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
2718 an organization's shared
2719 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
2720 large address
2721 books, rather like the White Pages provided by the phone company. As an Alpine 
2722 user, it is not
2723 necessary to know much about how this works, only how to use it and how to 
2724 configure
2727 More information on configuring LDAP is available in Alpine's online help:
2728 <ul>
2729   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
2730 </ul>
2732 Additional help on using LDAP in Alpine is also available:
2733 <ul>
2734   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
2735 </ul>
2737 &lt;End of help on this topic&gt;
2738 </BODY>
2739 </HTML>
2740 ===== h_mainhelp_index ======
2741 <HTML>
2742 <HEAD>
2743 <TITLE>Index of Messages</TITLE>
2744 </HEAD>
2745 <BODY>
2746 <H1>Index of Messages</H1>
2748 In Alpine's message index, the selected message is highlighted. The first 
2749 column on the left is blank, shows a &quot;+&quot; if the message was
2750 sent directly to you (i.e., it is not a
2751 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
2753 The second column may be blank, or it may contain:
2754 <ul>
2755   <li>"N" if the message is new (unread), </li>
2756   <li>"A" if you have answered the message (using the Reply command), </li>
2757   <li>"D" if you have marked the message for deletion.</li>
2758 </ul>
2761 Note: If you answer a message as well as mark it deleted (in either order), 
2762 you will only see the &quot;D&quot;.
2765 The rest of the columns in the message line show you the message
2766 number, date sent, sender, size, and subject. For details, press ? (Help).  
2767 The behavior and appearance of the Index screen is highly configurable.
2768 In the Setup/Config screen search (with the WhereIs command) for options
2769 that contain the words &quot;index&quot; or &quot;thread&quot; to see
2770 many of the configuration possibilities.
2771 In particular, the
2772 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
2773 option may be used to configure the look of the standard MESSAGE INDEX lines
2774 in many different ways.
2775 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
2776 read the help text there for more information.
2778 Most of the commands you need to handle your messages are visible at the
2779 bottom of the screen, and you can press O (OTHER CMDS) to see additional
2780 commands that are available.
2781 You do not need to see these &quot;other commands&quot;
2782 on the screen to use them. That is, you never need to press O as a prefix
2783 for any other command.
2786 Additional information is available in Alpine's online help:
2787 <ul>
2788   <li><a href="h_mail_index">Message Index Commands</a></li>
2789 </ul>
2791 &lt;End of help on this topic&gt;
2792 </BODY>
2793 </HTML>
2794 ===== h_mainhelp_reading ======
2795 <HTML>
2796 <HEAD>
2797 <TITLE>Reading Messages</TITLE>
2798 </HEAD>
2799 <BODY>
2800 <H1>Reading Messages</H1>
2802 The message text screen shows you the text of the message along with
2803 its header. If a message has attachments, those will be listed (but not
2804 displayed) also.  The titlebar line displays information about the currently
2805 open message, folder and collection.  You see the name of the collection
2806 (if there is one) in angle brackets, then the name of the folder, then the
2807 message number and finally the position within the current message (in
2808 percent). If the message is marked for deletion
2809 &quot;DEL&quot; will appear in the
2810 upper right as well.
2813 As with every Alpine screen, the bottom two lines show you the commands 
2814 available.
2816 <P>Additional information is available in Alpine's online help:
2817 <ul>
2818   <li><a href="h_mail_view">Message Text Screen</a></li>
2819   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
2820   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
2821 </ul>
2823 &lt;End of help on this topic&gt;
2824 </BODY>
2825 </HTML>
2826 ===== h_mainhelp_composing ======
2827 <HTML>
2828 <HEAD>
2829 <TITLE>Composing Messages</TITLE>
2830 </HEAD>
2831 <BODY>
2832 <H1>Composing Messages</H1>
2834 To write a message, press C (Compose). You see the Compose Message
2835 screen, which is divided into two parts: the header area and the message
2836 text area. The header area is where information on the recipient (the To:
2837 field) and the subject line go, while the message text area contains the
2838 actual text of the email message. Different commands are available to you
2839 when your cursor is in different areas on this screen. To see additional
2840 help on commands in either the message text or header area, type
2841 <Control>G (Get help).
2844 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
2845 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
2847 <P>The following information from Alpine's online help may prove useful:
2848 <ul>
2849   <li><a href="h_composer_to">Message Header Commands</a></li>
2850   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
2851   <li><a href="h_composer">Composer Commands</a></li>
2852   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
2853   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
2854   <li><a href="h_compose_send">Send Command</a></li>
2855   <li><a href="h_compose_spell">Spell Check Command</a></li>
2856 </ul>
2858 &lt;End of help on this topic&gt;
2859 </BODY>
2860 </HTML>
2861 ===== h_mainhelp_collections ======
2862 <HTML>
2863 <HEAD>
2864 <TITLE>Collection Lists</TITLE>
2865 </HEAD>
2866 <BODY>
2867 <H1>Collection Lists</H1>
2869 Collection lists are Alpine's way of organizing groups of folders. Each
2870 "collection" can reside on a different server, for example, and contain a
2871 different group of mail folders.
2874 For more information on this, see:
2875 <ul>
2876   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
2877 </ul>
2879 Additional information relating to collection lists is also available in 
2880 Alpine's online
2881 help:
2882 <ul>
2883   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
2884   <li><a href="h_collection_screen">Collection List Screen</a></li>
2885 </ul>
2887 &lt;End of help on this topic&gt;
2888 </BODY>
2889 </HTML>
2890 ===== h_mainhelp_folders ======
2891 <HTML>
2892 <HEAD>
2893 <TITLE>Folders</TITLE>
2894 </HEAD>
2895 <BODY>
2896 <H1>Folders</H1>
2898 Messages can quickly accumulate in your INBOX folder. If you use email
2899 often, you soon could have hundreds. You need to delete messages you do
2900 not want, and you can use folders to organize messages you wish to save. A
2901 folder is a collection of one or more messages that are stored (just like
2902 the messages in your INBOX) so you can access and manage them.
2905 You can organize your email messages into different folders by topic,
2906 correspondent, date, or any other category that is meaningful to you. You
2907 can create your own folders, and Alpine automatically provides three:
2908 <ul>
2909   <li>The INBOX folder: messages sent to you are listed in this folder.
2910       When you first start Alpine and go to the Message Index screen, you are
2911 looking at the list of messages in your INBOX folder. Every incoming
2912 message remains in your INBOX until you delete it or save it in another
2913 folder. </li>
2914   <li>The sent-mail folder: copies of messages you send are stored in this 
2915 folder. This is
2916 convenient if you cannot remember whether you actually sent a message and want 
2917 to check, or
2918 if you want to send a message again.</li>
2919   <li>The saved-messages folder: copies of messages you save are stored in this 
2920 folder
2921 unless you choose to save them to other folders you create yourself.</li>
2922 </ul>
2925 More information about folders is available in Alpine's online help:
2926 <ul>
2927   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
2928   <li><a href="h_folder_maint">Help for Folder List</a></li>
2929   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
2930   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
2931 Explained</a></li>
2932   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
2933 </ul>
2935 &lt;End of help on this topic&gt;
2936 </BODY>
2937 </HTML>
2938 ===== h_mainhelp_color ======
2939 <HTML>
2940 <HEAD>
2941 <TITLE>Color</TITLE>
2942 </HEAD>
2943 <BODY>
2944 <H1>Color</H1>
2946 If the terminal emulator you are using is capable of displaying color or if
2947 you are using PC-Alpine, then it is possible to set up Alpine so that various
2948 parts of the display will be shown in colors you configure. This is done
2949 using the Setup Color screen, available from the MAIN MENU by selecting
2950 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
2951 stands for Config in this context).
2954 For example, you may color things like the titlebar, the current item,
2955 the keymenu, and the status messages.
2956 You may also color lines in the index, and headers and quoted text in the
2957 MESSAGE TEXT screen.
2958 You use the Color Setup screen for configuring most of this, but you must
2959 use the IndexColor setup for coloring whole index lines.
2960 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
2963 The following entries in Alpine's online help provide additional information 
2964 about how to use color:
2965 <UL>
2966   <LI> <A HREF="h_color_setup">Color Setup screen</A>
2967   <LI> <A HREF="h_rules_incols">Index Line Color</A>
2968   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
2969   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
2970 </UL>
2972 &lt;End of help on this topic&gt;
2973 </BODY>
2974 </HTML>
2975 ===== h_mainhelp_mouse ======
2976 <HTML>
2977 <HEAD>
2978 <TITLE>Using a Mouse</TITLE>
2979 </HEAD>
2980 <BODY>
2981 <H1>Using a Mouse</H1>
2983 If you are using PC-Alpine mouse support is turned on automatically.
2984 If you are using UNIX Alpine within an X terminal window or within
2985 a terminal emulator that supports an xterm-style mouse, then you may
2986 turn on support for the mouse with the feature
2987 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
2988 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
2990 PC-Alpine offers considerable mouse support.  You can view what is
2991 &quot;clickable&quot; by dragging your mouse over any screen; when the
2992 arrow cursor changes into a hand, you found something. Mouse-click
2993 possibilities include navigating between screens and folders and
2994 double-clicking on hyperlinks to open your Web browser.
2995 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
2996 screen.  Examples of right-click options include &quot;copy&quot; after
2997 selecting text to copy and &quot;View in New Window&quot; when you click
2998 on a particular message in the Message Index. The menu choices available
2999 to you will vary based upon what screen is open, where on the screen your
3000 cursor is located, and even what action you have already taken.
3001 Within a folder, you may set the &quot;Important&quot; flag on any
3002 message.
3004 X terminal mouse support is more limited but still quite powerful.
3005 As with PC-Alpine, clicking on any of the commands in the keymenu at
3006 the bottom of the screen will execute that command as if you typed it.
3007 Double-clicking on a link, for example the link to the
3008 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
3009 will take you to that link.
3010 Double-clicking on an index line will view the message, and so on.
3012 &lt;End of help on this topic&gt;
3013 </BODY>
3014 </HTML>
3015 ===== h_mainhelp_keywords ======
3016 <HTML>
3017 <HEAD>
3018 <TITLE>Keywords</TITLE>
3019 </HEAD>
3020 <BODY>
3021 <H1>Keywords</H1>
3023 Within a folder, you may set the &quot;Important&quot; flag on any
3024 message.
3025 This doesn't have any system-defined meaning and is only called
3026 the Important flag because many users use it to signify that a message
3027 is important to them in some way.
3029 You may also define your own set of keywords.
3030 You might know these as user defined flags or as labels.
3031 These are similar to the Important flag but you choose the names for yourself.
3033 Alpine will only display keywords that
3034 have been added by you in the Flag Details screen or
3035 that have been configured by you using the Setup/Config option
3036 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
3037 Keywords set by other means (for example, by another email client) will not
3038 show up in Alpine unless you configure Alpine to know about them.
3039 They will show up in the Flag Details screen, but will not show up, for example,
3040 in the index line.
3043 The following entries in Alpine's online help provide additional information 
3044 about how to use keywords:
3045 <ul>
3046   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
3047   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
3048 </ul>
3050 &lt;End of help on this topic&gt;
3051 </BODY>
3052 </HTML>
3053 ===== h_mainhelp_roles ======
3054 <HTML>
3055 <HEAD>
3056 <TITLE>Roles</TITLE>
3057 </HEAD>
3058 <BODY>
3059 <H1>Roles</H1>
3061 You may play different roles depending on who you are replying to. For
3062 example, if you are replying to a message addressed to help-desk you may
3063 be acting as a Help Desk Worker. That role may require that you use a
3064 different return address and/or a different signature.
3067 To configure roles, go to the MAIN MENU and use the Setup command
3068 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
3069 The following entries in Alpine's online help provide additional information 
3070 about how to
3071 use roles:
3072 <ul>
3073   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
3074   <li><a href="h_role_select">Roles Screen</a></li>
3075 </ul>
3077 &lt;End of help on this topic&gt;
3078 </BODY>
3079 </HTML>
3080 ===== h_mainhelp_filtering ======
3081 <HTML>
3082 <HEAD>
3083 <TITLE>Filtering</TITLE>
3084 </HEAD>
3085 <BODY>
3086 <H1>Filtering</H1>
3088 The software that actually delivers mail (the stuff that happens
3089 before Alpine is involved) for you is in a better position to do mail filtering
3090 than Alpine itself.
3091 If possible, you may want to look into using that sort of mail filtering to
3092 deliver mail to different folders, delete it, or forward it.
3093 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
3096 Filtering is a way to automatically move certain messages from one folder
3097 to another or to automatically delete messages.
3098 You may also automatically set the state (Important, New, Deleted, Answered) of messages
3099 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
3100 Alpine doesn't have the ability to forward mail to another address or
3101 to deliver vacation messages.
3104 To configure filtering, go to the MAIN MENU and use the Setup command
3105 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
3106 The following entries in Alpine's online help provide additional information 
3107 about how to use filtering:
3108 <UL>
3109   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
3110 </UL>
3112 &lt;End of help on this topic&gt;
3113 </BODY>
3114 </HTML>
3115 ===== h_mainhelp_patterns ======
3116 <HTML>
3117 <HEAD>
3118 <TITLE>Patterns</TITLE>
3119 </HEAD>
3120 <BODY>
3121 <H1>Patterns</H1>
3123 Patterns are used with Roles, Filtering, Index Coloring,
3124 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
3125 The following entries in Alpine's online help provide information 
3126 about using Patterns:
3127 <UL>
3128   <LI> <A HREF="h_rule_patterns">Patterns</A>
3129 </UL>
3131 &lt;End of help on this topic&gt;
3132 </BODY>
3133 </HTML>
3134 ===== h_mainhelp_cmdlineopts ======
3135 <HTML>
3136 <HEAD>
3137 <TITLE>Command Line Options</TITLE>
3138 </HEAD>
3139 <BODY>
3140 <H1>Command Line Options</H1>
3142 Alpine accepts a number of command line arguments, allowing you, for
3143 example, to start Alpine and immediately access a particular folder.
3144 Many of these arguments overlap with options in the Alpine configuration file.
3145 If there is a difference, then an option set on the command line takes
3146 precedence.
3147 Alpine expects command line arguments (other than addresses) to be
3148 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
3149 A <a href="h_command_line_options">full list</a> of command line
3150 possibilities is available.
3152 &lt;End of help on this topic&gt;
3153 </BODY>
3154 </HTML>
3155 ===== h_mainhelp_config ======
3156 <HTML>
3157 <HEAD>
3158 <TITLE>Alpine Configuration</TITLE>
3159 </HEAD>
3160 <BODY>
3161 <H1>Alpine Configuration</H1>
3163 Unless it has been administratively disabled, the Setup command on the
3164 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
3165 The possible subcommands are for general Configuration settings,
3166 Printer settings, Changing your Password, Signature setup,
3167 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
3168 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
3169 and Color configuration.
3170 In particular, the &quot;Config&quot; subcommand has many features you may
3171 set or unset and many other configuration variables that may be set to change
3172 the way Alpine works.
3173 Every one of the hundreds of options available in that configuration settings
3174 screen has help text associated with it.
3175 You may read that text by moving the cursor to highlight the option and then
3176 typing the Help command.
3178 These settings are stored in your personal
3179 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
3180 <A HREF="h_config_remote_config">remotely</A>),
3181 but on shared systems these settings
3182 may be over-ridden by a system-wide control file (due to local site
3183 security or support policies).  A global pine configuration file can also
3184 be used to set default values for all Alpine users on a particular system.
3185 Power users may be interested in splitting their personal configuration
3186 data into two pieces, a generic piece and
3187 <A HREF="h_config_exceptions">exceptions</A> which apply to
3188 a particular platform.
3189 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
3190 General Alpine configuration information can be found
3191 <A HREF="h_news_config">here</A>.
3193 &lt;End of help on this topic&gt;
3194 </BODY>
3195 </HTML>
3196 ===== h_mainhelp_aggops ======
3197 <HTML>
3198 <HEAD>
3199 <TITLE>Aggregate Operations</TITLE>
3200 </HEAD>
3201 <BODY>
3202 <H1>Aggregate Operations</H1>
3204 When you are in the MESSAGE INDEX, the available commands
3205 (for example, Delete, Undelete, Save, Reply, and so on)
3206 normally act on a single message.
3207 So, for example, if you press the Delete command, the currently highlighted
3208 message is marked Deleted.
3209 These commands that normally act on a single message may be applied to
3210 several messages at once instead.
3212 By default this feature is turned on, but it could be administratively turned
3213 off to reduce complexity.
3214 The feature
3215 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
3216 in the Setup/Config screen is used to turn it off or on.
3217 When this feature is turned on, the four commands &quot;Select&quot;,
3218 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
3219 are available.
3220 The two selection commands allow you to mark a set of
3221 messages as being &quot;selected&quot;.
3222 The &quot;ZoomMode&quot; command will toggle between
3223 displaying only the selected messages and displaying all the messages.
3224 The &quot;Apply&quot; command allows you to
3225 apply one of the regular MESSAGE INDEX commands to all of the selected
3226 messages instead of to only the highlighted message.
3228 An example aggregate operation would be to catch up when reading
3229 a news group.
3230 That is, get rid of all the messages in the news group so that you can
3231 start fresh.
3232 The easiest way to do this in Alpine is to use aggregate operations.
3233 You want to Delete all of the messages in the group.
3234 You could start at the top and type &quot;D&quot; once for every message.
3235 A much faster method is to first Select all of the messages in the group,
3236 and then Delete all of them.
3237 This would take four keystrokes:
3239 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
3240 <BR>
3241 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
3243 Another use of Select is to use it for searching for a particular message
3244 or set of messages in a large folder.
3245 You may know that the message was From a certain user.
3246 You could select all messages from that user to start, and use Zoom to
3247 look at only those messages.
3248 If there were still too many messages to look at you could Narrow the
3249 set of messages further by selecting from all of those messages only
3250 the ones that were after a certain date, or contained a particular phrase
3251 in the Subject, or were too a particular address, and so on.
3252 That may be the end of what you are doing, or you may want to use Apply to
3253 Save or Forward or Print all of the selected messages.
3255 Some related help topics are
3256 <UL>
3257 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
3258 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
3259 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
3260 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
3261 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
3262 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
3263 </UL>
3265 &lt;End of help on this topic&gt;
3266 </BODY>
3267 </HTML>
3268 ===== h_mainhelp_readingnews ======
3269 <HTML>
3270 <HEAD>
3271 <TITLE>Reading News</TITLE>
3272 </HEAD>
3273 <BODY>
3274 <H1>Reading News</H1>
3276 <H2>Background</H2>
3277 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
3278 commands as for mail. Similar to mailing lists but existing on a larger scale, 
3279 Usenet newsgroups allow groups of people with common interests to discuss 
3280 particular topics. You might find newsgroups related to your career, or you 
3281 might wish to check out the online discussion among the fans of your favorite 
3282 television show. 
3284 <H2>Configuring Alpine for Reading News</H2>
3285 Alpine often arrives
3286 pre-configured by your system administrator to automatically access the
3287 newsgroups offered by your organization, Internet Service Provider, or
3288 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
3289 need additional details on <a href="h_configuring_news">how to
3290 configure Alpine to read news</a>.
3292 <H2>Accessing Newsgroups</H2>
3293 The first step in reading news is to access the newsgroups collections
3294 screen from Alpine. If everything is configured properly, you should be able
3295 to do this by first typing L (folder List), then selecting the folder
3296 collection listed as "News." The actual name of this collection may differ
3297 from system to system.
3299 <H2>Subscribing to Newsgroups</H2>
3301 Once you have accessed the news collection, you need to subscribe to a
3302 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
3303 will keep a record of the newsgroups in which you are interested and which
3304 articles in those newsgroups have been read.
3306 <H2>Using Newsgroups</H2> 
3307 Alpine uses the similar commands to read news as to read mail. For example,
3308 the D command marks messages as Deleted (or "Dismissed," if you prefer),
3309 and the R command Replies to a news posting. Basically, Alpine allows you to
3310 read news as if it were mail, so you don't need to change the way you
3311 interact with Alpine.
3313 There is also additional Alpine help available on 
3314 <A HREF="h_reading_news">how to use Alpine to read news</A>.
3316 &lt;End of help on this topic&gt;
3317 </BODY>
3318 </HTML>
3319 ===== h_mainhelp_securing ======
3320 <HTML>
3321 <HEAD>
3322 <TITLE>Securing your Alpine Session</TITLE>
3323 </HEAD>
3324 <BODY>
3325 <H1>Securing your Alpine Session</H1>
3327 By default, Alpine will attempt to connect to an IMAP server on the normal
3328 IMAP service port (143).
3329 If the Alpine you are using has been built to
3330 support &quot;Transport Layer Security&quot; (TLS)
3331 and &quot;Secure Sockets Layer&quot; (SSL) 
3332 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
3333 and the server offers the STARTTLS capability, then a secure (encrypted)
3334 session will be established.
3336 When you are connected to a remote folder the titlebar will contain a plus sign
3337 in the far right column if the connection is encrypted using TLS or SSL.
3338 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
3339 if the connection is encrypted.
3341 <H2>More Information on Alpine with SSL and TLS</H2>
3342 <UL>
3343 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
3344 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
3345 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
3346 <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>
3347 </UL>
3348 <H2>Here are some other security-related features and options</H2>
3350 <UL>
3351 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
3352 <LI> <A HREF="h_config_disable_password_file_saving"><!--#echo var="FEAT_disable-password-file-saving"--></A> Disable password file saving</LI>
3353 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
3354 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
3355 </UL>
3357 &lt;End of help on this topic&gt;
3358 </BODY>
3359 </HTML>
3360 ===== h_mainhelp_problems ======
3361 <HTML>
3362 <HEAD>
3363 <TITLE>Reporting Problems</TITLE>
3364 </HEAD>
3365 <BODY>
3366 <H1>Reporting Problems</H1>
3368 We ask that you first read the relevant help screens and then seek
3369 assistance from your own local support staff.  Once you are sure that your
3370 difficulty is not a local configuration problem, you might look at the
3371 help section explaining where to look for
3372 <A HREF="h_finding_help">more information</A> and where to 
3373 get assistance.
3376 <ADDRESS>
3377    Eduardo Chappa &lt;chappa@gmx.com&gt;
3378 </ADDRESS>
3381 &lt;End of help on this topic&gt;
3382 </BODY>
3383 </HTML>
3384 ===== h_main_menu_commands ======
3385 <HTML>
3386 <HEAD>
3387 <TITLE>MAIN MENU COMMANDS</TITLE>
3388 </HEAD>
3389 <BODY>
3390 <H1>MAIN MENU COMMANDS</H1>
3392 <!--chtml if pinemode="function_key"-->
3393 &nbsp;Available&nbsp;Commands&nbsp;--
3394 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
3395 &nbsp;------------------------------
3396 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
3397 ----------<BR>
3398 &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>
3399 &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>
3400 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
3401 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
3402 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
3403 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
3404 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
3405 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
3406 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3407 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3408 &nbsp;F7&nbsp;&nbsp;<A 
3409 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
3410 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3411 &nbsp;F8&nbsp;&nbsp;<A 
3412 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3413 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
3414 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 
3415 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
3416 &nbsp;F10&nbsp;<A 
3417 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 
3418 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
3419 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3420 &nbsp;F11&nbsp;<A 
3421 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3422 <!--chtml else-->
3423 &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>
3424 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
3425 &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>
3426 &nbsp;C&nbsp;&nbsp;<A 
3427 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>
3428 &nbsp;I&nbsp;&nbsp;<A 
3429 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>
3430 &nbsp;L&nbsp;&nbsp;<A 
3431 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>
3432 &nbsp;A&nbsp;&nbsp;<A 
3433 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
3434 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
3435 &nbsp;S&nbsp;&nbsp;<A 
3436 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 
3437 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3438 &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>
3439 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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 
3440 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3441 <!--chtml endif-->
3444 NOTE:
3445 <OL>
3446  <LI>For help on a particular command, highlight the bold text associated
3447 with it above and hit Return.
3448  <LI> The availability of certain commands (e.g. some of the options under
3449 SETUP) is determined by Alpine configuration files and system capabilities.
3450 At some sites, certain commands may not be available due to security or
3451 support concerns.
3452 </OL>
3454 &lt;End of help on this topic&gt;
3455 </BODY>
3456 </HTML>
3458 ===== h_command_line_options ======
3459 <HTML>
3460 <HEAD>
3461 <TITLE>COMMAND LINE OPTIONS</TITLE>
3462 </HEAD>
3463 <BODY>
3464 <H1>COMMAND LINE OPTIONS</H1>
3465 Possible starting arguments for Alpine:
3467 <DL COMPACT>
3469 <DT> <EM>[addresses]</EM>
3471 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
3472 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
3473 <EM>Alpine</EM> will startup in
3474 the composer with a message started to the addresses specified.
3475 Once the message is sent, the <EM>Alpine</EM> session closes.
3476 Standard input redirection is allowed.
3477 Separate multiple addresses with a space between them.
3478 Addresses are placed in the &quot;To&quot; field only.
3481 <DT> &lt; <EM>file</EM>
3483 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
3484 into the body of the message.
3485 Once the message is sent, the <EM>Alpine</EM> session closes. 
3488 <DT> -attach <EM>file</EM>
3490 <DD> Go directly into composer with given file attached.
3493 <DT> -attachlist <EM>file-list</EM>
3495 <DD> Go directly into composer with given files attached.
3496 This must be the last option on the command line.
3499 <DT> -attach_and_delete <EM>file</EM>
3501 <DD> Go directly into composer with given file attached, delete when finished.
3504 <DT> -aux <EM>local_directory</EM>
3506 <DD> <EM>PC-Alpine</EM> only.
3507 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
3508 files, like debug files, address books, and signature files.  The pinerc may 
3509 be local or remote.
3512 <DT> -bail
3514 <DD> If the personal configuration file doesn't already exist, exit.
3515 This might be useful if the configuration file is accessed using some
3516 remote filesystem protocol. If the remote mount is missing this will cause
3517 <EM>Alpine</EM> to quit instead of creating a new pinerc.
3520 <DT> -c <EM>n</EM>
3522 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
3523 This is used when there are multiple folder collections (contexts) and you 
3524 want to open a folder not in the primary collection.
3527 <DT> -conf
3529 <DD> Configuration: Prints a sample system configuration file to the
3530 screen or standard output. To generate an initial system configuration 
3531 file, execute
3533 <PRE><CODE>
3534                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
3535 </CODE></PRE>
3538 To generate a system configuration file using settings from an old
3539 system configuration file, execute
3541 <PRE><CODE>
3542                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
3543 </CODE></PRE>
3545 A system configuration file is not required.
3548 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
3550 <DD> Copy an address book file to a remote address book folder.
3551 If the remote folder doesn't exist, it will be created.
3552 If it exists but the first message in the folder isn't a remote address
3553 book header message, the copy will be aborted.
3554 This flag will not usually be used by a user.
3555 Instead, the user will create a remote address book from within <EM>Alpine</EM>
3556 and copy entries from the local address book by using aggregate Save in
3557 the address book screen.
3560 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
3562 <DD> Copy a pinerc configuration file to a remote pinerc folder.
3563 If the remote folder doesn't exist, it will be created.
3564 If it exists but the first message in the folder isn't a remote pinerc
3565 header message, the copy will be aborted.
3566 This flag may be useful to users who already have a local pinerc file and
3567 would like to convert it to a remote pinerc folder and use that instead.
3568 This gives a way to bootstrap that conversion without having to manually
3569 reset all of the variables in the remote pinerc folder.
3572 <DT> -d <EM>debug-level</EM>
3574 <DD> Debug Level:  Sets the level of debugging information written by
3575 <EM>Alpine</EM>.
3576 <EM>debug-level</EM> can be set to any integer 0-9.
3577 A debug level of 0 turns off debugging for the session.
3578 (Actually there are some levels higher than 9, but you probably don't
3579 want to see them.)
3582 <DT> -d <EM>keywords</EM>
3584 <DD> You may use a more detailed version of the debugging flag to set
3585 the debug level in separate parts of <EM>Alpine</EM>.
3586 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
3587 verbose=0..9.
3588 <EM>Flush</EM> causes debugging information to be flushed immediately to
3589 the debug file as it is written.
3590 <EM>Verbose</EM> is the general debugging verbosity level.
3591 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
3592 is useful when you are trying to figure out what is responsible for delays.
3593 <EM>Numfiles</EM> sets the number of debug files saved.
3594 <EM>Imap</EM> sets the debug level for the debugging statements related
3595 to the conversation with the IMAP server, and more generally, for the
3596 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
3597 <EM>Tcp</EM> turns on some TCP/IP debugging.
3600 <DT> -f <EM>folder</EM>
3602 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
3603 of the standard INBOX.
3606 <DT> -F <EM>file</EM>
3608 <DD> Open named text file for viewing and forwarding.
3611 <DT> -h
3613 <DD> Help:  Prints the list of available command-line arguments to the
3614 screen.
3617 <DT> -i
3619 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
3620 screen instead of the MAIN MENU.
3623 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
3626 <DT> -I <EM>a,b,c,...</EM>
3628 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
3629 sequence of commands upon startup.
3630 This allows users to get <EM>Alpine</EM> to start in any
3631 of its menus/screens.
3632 You cannot include any input to the composer in the initial keystrokes.
3633 The key &lt;Return&gt; is represented by a ``CR'' in
3634 the keystroke list; the spacebar is designated by the letters ``SPACE''.
3635 Control keys are two character sequences beginning with ``^'', such as
3636 ``^I''.
3637 A tab character is ``TAB''.
3638 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
3639 ``DOWN'', ``LEFT'', and ``RIGHT''.
3640 A restriction is that you can't mix function keys and character keys in this
3641 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
3642 A user can always use only <EM>character</EM> keys in the startup list even
3643 if he or she is using <EM>function</EM> keys normally, or vice versa.
3644 If an element in this list is a string of characters surrounded by double
3645 quotes (&quot;) then it will be expanded into the individual characters in
3646 the string, excluding the double quotes.
3649 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
3652 <DT> -install
3654 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
3655 some basic information to help with getting properly set up.
3658 <DT> -k
3660 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
3661 the input of commands to be function-keys.
3662 Otherwise, commands are linked to the regular character keys.
3665 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
3666 <EM>Feature-List</EM>.
3669 <DT> -n <EM>n</EM>
3671 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
3672 FOLDER INDEX screen with the current message being the specified
3673 message number.
3676 <DT> -nosplash
3678 <DD> <EM>PC-Alpine</EM> only.
3679 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
3680 This may be helpful for certain troubleshooting or terminal server scenarios.
3683 <DT> -o <EM>folder</EM>
3685 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
3688 <DT> -p <EM>pinerc</EM>
3690 <DD> Uses the named file as the personal configuration file instead of
3691 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
3692 Alpinerc may be either a local file or a remote configuration folder.
3695 <DT> -P <EM>pinerc</EM>
3697 <DD> Uses the named file as the system wide configuration file instead of
3698 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
3699 Alpinerc may be either a local file or a remote configuration folder.
3702 <DT> -passfile <EM>passfile</EM>
3704 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
3705 This should be a fully-qualified filename.
3708 <DT> -pinerc <EM>file</EM>
3710 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
3711 settings of variables that the user has made.
3712 Use <EM>file</EM> set to ``-'' to make output go to standard out.
3715 <DT> -r
3717 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
3718 <EM>Alpine</EM> in restricted mode can only send email to itself.
3719 Save and export are limited.
3722 <DT> -registry <EM>cmd</EM>
3724 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
3725 <EM>Alpine</EM>'s registry entries.
3726 Possible values for <EM>cmd</EM> are set, clear, and dump.
3727 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
3728 entries according to its current settings.
3729 <EM>Clear</EM> will clear the registry values.
3730 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
3731 <EM>Dump</EM> will display the values of current registry settings.
3732 Note that the dump command is currently disabled.
3733 Without the -registry option, <EM>PC-Alpine</EM> will write values into
3734 the registry only if there currently aren't any values set.
3737 <DT> -sort <EM>key</EM>
3739 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
3740 FOLDER INDEX screen.
3741 <EM>Key</EM> can have the following values: 
3742 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
3743 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
3744 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
3745 The default value is &quot;arrival&quot;.
3746 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
3749 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
3752 <DT> -uninstall
3754 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
3755 in Windows settings.  The registry settings are removed and
3756 the password cache is cleared.
3759 <DT> -url <EM>url</EM>
3761 <DD> Open the given URL.
3764 <DT> -v
3766 <DD> Version:  Print version information to the screen.
3769 <DT> -x <EM>exceptions_config</EM>
3771 <DD> Configuration settings in the exceptions configuration override your normal
3772 default settings.
3773 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
3776 <DT> -z
3778 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
3779 will suspend the <EM>Alpine</EM> session.
3782 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
3783 <EM>Feature-List</EM>.
3786 <DT> -<EM>option</EM>=<EM>value</EM>
3788 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
3789 For example, <EM>-signature-file=sig1</EM> or
3790 <EM>-Feature-List=signature-at-bottom</EM>.
3791 Note:  Feature-List values are
3792 additive and features may be preceded with no- to turn them off.
3793 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
3794 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
3795 <EM>-Feature-List=signature-at-bottom</EM>.
3798 </DL>
3800 &lt;End of help on this topic&gt;
3801 </BODY>
3802 </HTML>
3803 ===== h_configuring_news ======
3804 <HTML>
3805 <HEAD>
3806 <TITLE>CONFIGURING NEWS</TITLE>
3807 </HEAD>
3808 <BODY>
3809 <H1>CONFIGURING NEWS</H1>
3810 Alpine can access news folders in any one of three different ways:
3811 <DL>
3812 <DT>REMOTE NNTP</DT>
3813 <DD>Using the Network News Transport Protocol (NNTP) to
3814 access news on a remote news server.  In this case the newsrc file is
3815 stored on the machine where Alpine is running.
3818 To specify a remote news-collection accessed via NNTP use the
3819 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3820 Server: value to the NNTP server's hostname appended with the
3821 communication method &quot;/service=NNTP&quot;, and set the Path:
3822 value to the &quot;#news.&quot; namespace (without the quotes).  See
3823 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
3824 help text for a more complete explanation of access method, and the
3825 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3826 text for a more complete explanation of &quot;namespace&quot;.
3828 Instead of specifying a news-collection, you may simply set the
3829 <A HREF="h_config_nntp_server">NNTP Server</A>
3830 option, which will cause Alpine to create a default news-collection for you.
3831 Another NNTP option that may be of interest is
3832 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
3834 <DT>REMOTE IMAP</DT>
3835 <DD>Using the Internet Message Access Protocol (IMAP) to
3836 access news on a remote news server.  In this case, your newsrc file is
3837 stored on the news server, in your home directory, so you must have an
3838 account on the news server, but you would be running Alpine on a different
3839 machine.  The news server must be running an IMAPd server process. 
3842 To specify a remote news-collection accessed via IMAP use the
3843 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3844 Server: value to the IMAP server's hostname, and set the Path: value
3845 to the &quot;#news.&quot; namespace (without the quotes).  See the
3846 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
3847 text for a more complete explanation of &quot;namespace&quot;.
3849 </DD>
3851 <DT>LOCAL</DT>
3852 <DD>Using local file access to the news database.  In this
3853 case, your newsrc file is stored on the news server, in your home
3854 directory, so you must have an account on the news server, and you would
3855 be running Alpine on the same machine.
3858 To specify a local news-collection use the SETUP/collectionList
3859 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
3860 set the Path: value to the &quot;#news.&quot; namespace (without the
3861 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
3862 field's help text for a more complete explanation of &quot;namespace&quot;.
3864 </DD>
3865 </DL>
3869 NOTE: Should no news-collection be defined as above, Alpine will
3870 automatically create one using the Setup/Config screen's
3871 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
3872 will be created as a &quot;Remote NNTP&quot; as described above.
3876 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
3877 possible.  If you don't have an account on the news server, or if the news
3878 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
3879 sure, ask your service provider, university, or company for help.)  In
3880 this case, your Unix .newsrc file can be transferred to your PC.  A good
3881 place to put it would be in the same directory as your PINERC file, under
3882 the name NEWSRC, but you can 
3883 <A HREF="h_config_newsrc_path">specify a different location</A>
3884 via Alpine's Setup/Config screen.
3887 Other configuration features related to news are
3888 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
3889 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
3890 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
3891 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
3892 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
3893 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
3894 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
3895 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
3898 &lt;End of help on this topic&gt;
3899 </BODY>
3900 </HTML>
3901 ===== h_reading_news ======
3902 <HTML>
3903 <HEAD>
3904 <TITLE>READING NEWS</TITLE>
3905 </HEAD>
3906 <BODY>
3907 <H1>READING NEWS</H1>
3909 Alpine uses almost the same commands for manipulating news folders as for
3910 mail folders.  This means, for example, that when you are done with a
3911 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
3912 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
3913 most newsreaders, wherein a message is implicitly dismissed after you have
3914 looked at it once. We strongly believe that Alpine should offer as much
3915 consistency as possible between mail and news, so the mail paradigm --
3916 wherein a message does not magically disappear without explicit action by
3917 the user -- is used for news as well. <P>
3919 If you answer a message in a news folder, the index view will show the
3920 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
3921 keep track of what news as been read has no way of storing this flag, so
3922 it will not be preserved across sessions.  The Deleted flag is the only
3923 one that is preserved when you leave and then return to a newsgroup.  As an
3924 additional note on replies, when you Reply to a newsgroup message and say
3925 you want to reply to all recipients, Alpine will ask if you want to post the
3926 message to all the newsgroups listed in the original message. <P>
3928 If you would like Alpine to mark more-or-less recent news messages as
3929 &quot;New&quot;, then set the
3930 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
3931 feature (which is set by default).  This will cause messages after the last one you have marked as
3932 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
3933 &quot;N&quot; status often makes it easier to distinguish later news
3934 articles from those you've previously seen, but not yet disposed of via
3935 the &quot;D&quot; key.  Note that this is an approximation, not an exact
3936 record of which messages you have not seen.
3939 A frequent operation in news-reading is &quot;catching up&quot; -- that
3940 is, getting rid of all the messages in the newsgroup so that you can
3941 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
3942 Select command.  You would enter the following four keystrokes:
3943 <tt>;aad</tt> to select all messaged, and then apply the delete (or
3944 dismiss) command to all of them.
3947 There are also additional details on 
3948 <A HREF="h_configuring_news">configuring news</a>.
3951 &lt;End of help on this topic&gt;
3952 </BODY>
3953 </HTML>
3954 ====== h_help_index ======
3955 <HTML>
3956 <HEAD>
3957 <TITLE>Help Index</TITLE>
3958 </HEAD>
3959 <BODY>
3960 <H1>Help Index</H1>
3961 <ul>
3962 <li><a href="h_mainhelp_abooks">Address Books</a></li>
3963 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
3964 <li><a href="h_main_addrbook">Address Book Command</a>
3965 <li><a href="h_abook_view">Address Book View Explained</a>
3966 <li><a href="h_compose_addrcomplete">Address Completion</a>
3967 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
3968 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
3969 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
3970 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
3971 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
3972 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
3973 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
3974 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
3975 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
3976 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
3977 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
3978 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
3979 <li><a href="h_mainhelp_config">Alpine Configuration</a>
3980 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
3981 <li><a href="h_news_legal">Alpine Legal Notices</a>
3982 <li><a href="h_compose_alted">Alt Editor Command</a>
3983 <li><a href="h_index_cmd_apply">Apply Command</a>
3984 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
3985 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
3986 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
3987 <li><a href="h_composer_browse">BROWSER</a>
3988 <li><a href="h_common_bounce">Bounce Command</a>
3989 <li><a href="h_compose_cancel">Cancel Command</a>
3990 <li><a href="h_config_change_your_from">Changing your From Address</a>
3991 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
3992 <li><a href="h_mainhelp_color">Color</a>
3993 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
3994 <li><a href="h_composer">COMPOSER COMMANDS</a>
3995 <li><a href="h_mainhelp_composing">Composing Messages</a>
3996 <li><a href="h_mainhelp_collections">Collection Lists</a>
3997 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
3998 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
3999 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
4000 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
4001 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
4002 <li><a href="h_common_compose">Compose Command</a>
4003 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
4004 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
4005 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
4006 <li><a href="h_mainhelp_config">Configuration</a>
4007 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
4008 <li><a href="h_config_dflt_color">Default Color</a>
4009 <li><a href="h_common_delete">Delete and Undelete Commands</a>
4010 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
4011 <li><a href="h_special_list_commands">Email List Commands Explained</a>
4012 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
4013 <li><a href="h_folder_open">Explanation of Folder Selection</a>
4014 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
4015 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
4016 <li><a href="h_ge_export">Export File Selection</a>
4017 <li><a href="h_ge_allparts">Export Message File Selection</a>
4018 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
4019 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
4020 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
4021 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
4022 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
4023 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
4024 <li><a href="h_config_alt_reply_menu">FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></a>
4025 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
4026 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
4027 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
4028 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
4029 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
4030 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
4031 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
4032 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
4033 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
4034 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
4035 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
4036 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
4037 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
4038 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
4039 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
4040 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
4041 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
4042 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
4043 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
4044 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
4045 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
4046 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
4047 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
4048 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
4049 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
4050 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
4051 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
4052 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
4053 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
4054 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
4055 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
4056 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
4057 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
4058 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
4059 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
4060 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
4061 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
4062 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
4063 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
4064 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
4065 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
4066 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
4067 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
4068 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
4069 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
4070 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
4071 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
4072 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
4073 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
4074 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
4075 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
4076 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
4077 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
4078 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
4079 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
4080 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
4081 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
4082 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
4083 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
4084 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
4085 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
4086 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
4087 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
4088 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
4089 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
4090 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
4091 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
4092 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
4093 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
4094 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
4095 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
4096 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
4097 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
4098 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
4099 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
4100 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
4101 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
4102 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
4103 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
4104 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
4105 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
4106 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
4107 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
4108 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
4109 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
4110 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
4111 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
4112 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
4113 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
4114 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
4115 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
4116 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
4117 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
4118 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
4119 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
4120 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
4121 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
4122 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
4123 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
4124 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
4125 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
4126 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
4127 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
4128 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
4129 <li><a href="h_config_ignore_size">FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></a>
4130 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
4131 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
4132 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
4133 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
4134 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
4135 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
4136 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
4137 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
4138 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
4139 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
4140 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
4141 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
4142 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
4143 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
4144 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
4145 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
4146 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
4147 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
4148 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
4149 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
4150 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
4151 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
4152 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
4153 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
4154 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
4155 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
4156 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
4157 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
4158 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
4159 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
4160 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
4161 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
4162 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
4163 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
4164 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
4165 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
4166 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
4167 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
4168 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
4169 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
4170 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
4171 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
4172 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
4173 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
4174 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
4175 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
4176 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
4177 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
4178 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
4179 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
4180 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
4181 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
4182 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
4183 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
4184 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
4185 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
4186 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
4187 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
4188 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
4189 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
4190 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
4191 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
4192 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
4193 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
4194 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
4195 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
4196 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
4197 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
4198 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
4199 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
4200 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
4201 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
4202 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
4203 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
4204 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
4205 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
4206 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
4207 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
4208 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
4209 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
4210 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
4211 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
4212 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
4213 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
4214 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
4215 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
4216 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
4217 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
4218 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
4219 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
4220 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
4221 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
4222 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
4223 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
4224 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
4225 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
4226 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
4227 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
4228 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
4229 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
4230 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
4231 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
4232 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
4233 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
4234 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
4235 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
4236 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
4237 <li><a href="h_mainhelp_filtering">Filtering</a>
4238 <li><a href="h_finding_help">Finding more information and requesting help</a>
4239 <li><a href="h_common_flag">Flag Command</a>
4240 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
4241 <li><a href="h_mainhelp_folders">Folders</a>
4242 <li><a href="h_what_are_collections">Folder Collections Explained</a>
4243 <li><a href="h_common_folders">Folder List Command</a>
4244 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
4245 <li><a href="h_folder_save">Folder Select for Save Explained</a>
4246 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
4247 <li><a href="h_config_change_your_from">From Address, Changing</a>
4248 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
4249 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
4250 <li><a href="h_common_goto">Goto Command</a>
4251 <li><a href="h_common_hdrmode">HdrMode Command</a>
4252 <li><a href="h_mainhelp_pinehelp">Help</a>
4253 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
4254 <li><a href="h_folder_maint">Help for Folder List</a>
4255 <li><a href="h_valid_folder_names">IMAP</a>
4256 <li><a href="h_ge_import">Import File Selection</a>
4257 <li><a href="h_mainhelp_index">Index of Messages</a>
4258 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
4259 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
4260 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
4261 <li><a href="h_info_on_mbox">Information on mbox driver</a>
4262 <li><a href="h_mainhelp_intro">Introduction</a>
4263 <li><a href="h_main_journal">Journal Command</a>
4264 <li><a href="h_common_jump">Jump Command</a>
4265 <li><a href="h_compose_justify">Justify Command</a>
4266 <li><a href="h_main_kblock">Keyboard Lock Command</a>
4267 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
4268 <li><a href="h_mainhelp_ldap">LDAP</a>
4269 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
4270 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
4271 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
4272 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
4273 <li><a href="h_config_ldap_opts_ldaps">LDAP FEATURE: Require-LDAPS-On-Connection</a>
4274 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
4275 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
4276 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
4277 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
4278 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
4279 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
4280 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
4281 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
4282 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
4283 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
4284 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
4285 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
4286 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
4287 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
4288 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
4289 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
4290 <li><a href="h_ldap_view">LDAP Response View Explained</a>
4291 <li><a href="h_maildrop">Mail Drop: What is it?</a>
4292 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
4293 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
4294 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
4295 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
4296 <li><a href="h_common_index">Message Index Command</a>
4297 <li><a href="h_mainhelp_mouse">Mouse</a>
4298 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
4299 <li><a href="new_user_greeting">NEW USER GREETING</a>
4300 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
4301 <li><a href="h_mainhelp_readingnews">News Reading</a>
4302 <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
4303 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
4304 <li><a href="h_common_nextnew">NextNew Command</a>
4305 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
4306 <li><a href="h_mainhelp_readingnews">NNTP</a>
4307 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
4308 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
4309 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
4310 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
4311 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
4312 <li><a href="h_config_color_style">OPTION: Color Style</a>
4313 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
4314 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
4315 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
4316 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
4317 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
4318 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
4319 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
4320 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
4321 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
4322 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
4323 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
4324 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
4325 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
4326 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
4327 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
4328 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
4329 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
4330 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
4331 <li><a href="h_config_file_dir">OPTION: File Directory</a>
4332 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
4333 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
4334 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
4335 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
4336 <li><a href="h_config_font_name">OPTION: Font Name</a>
4337 <li><a href="h_config_font_size">OPTION: Font Size</a>
4338 <li><a href="h_config_font_style">OPTION: Font Style</a>
4339 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
4340 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
4341 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
4342 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
4343 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
4344 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
4345 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
4346 <li><a href="h_config_psleep">OPTION: <!--#echo var="VAR_mailcap-check-interval"--></a>
4347 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
4348 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
4349 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
4350 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
4351 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
4352 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
4353 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
4354 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
4355 <li><a href="h_config_index_color">OPTION: Index Colors</a>
4356 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
4357 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
4358 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
4359 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
4360 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
4361 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
4362 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
4363 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
4364 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
4365 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
4366 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
4367 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
4368 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
4369 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
4370 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
4371 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
4372 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
4373 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
4374 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
4375 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
4376 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
4377 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
4378 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
4379 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
4380 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
4381 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
4382 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
4383 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
4384 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
4385 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
4386 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
4387 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
4388 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
4389 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
4390 <li><a href="h_config_pat_old">OPTION: Patterns</a>
4391 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
4392 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
4393 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
4394 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
4395 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
4396 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
4397 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
4398 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
4399 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
4400 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
4401 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
4402 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
4403 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
4404 <li><a href="h_config_printer">OPTION: Printer</a>
4405 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
4406 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
4407 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
4408 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
4409 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
4410 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
4411 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
4412 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
4413 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
4414 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
4415 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
4416 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
4417 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
4418 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
4419 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
4420 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
4421 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
4422 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
4423 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
4424 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
4425 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
4426 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
4427 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
4428 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
4429 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
4430 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
4431 <li><a href="h_config_aspell_dictionary">OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></a>
4432 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
4433 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
4434 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
4435 <li><a href="h_config_status_color">OPTION: Status Color</a>
4436 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
4437 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
4438 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
4439 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
4440 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
4441 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
4442 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
4443 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
4444 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
4445 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
4446 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
4447 <li><a href="h_config_title_color">OPTION: Title Color</a>
4448 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
4449 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
4450 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
4451 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
4452 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
4453 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
4454 <li><a href="h_config_history">OPTION: <!--#echo var="VAR_default-directories"--></a>
4455 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
4456 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
4457 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
4458 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
4459 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
4460 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
4461 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
4462 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
4463 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
4464 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
4465 <li><a href="h_config_window_position">OPTION: Window-Position</a>
4466 <li><a href="h_mainhelp_patterns">Patterns</a>
4467 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
4468 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
4469 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
4470 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
4471 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
4472 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
4473 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
4474 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
4475 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
4476 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
4477 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
4478 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
4479 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
4480 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
4481 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
4482 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
4483 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
4484 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
4485 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
4486 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
4487 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
4488 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
4489 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
4490 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
4491 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
4492 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
4493 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
4494 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
4495 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
4496 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
4497 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
4498 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
4499 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
4500 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
4501 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
4502 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
4503 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
4504 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
4505 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
4506 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
4507 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
4508 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
4509 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
4510 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
4511 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
4512 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
4513 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
4514 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
4515 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
4516 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
4517 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
4518 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
4519 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
4520 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
4521 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
4522 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
4523 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
4524 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
4525 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
4526 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
4527 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
4528 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
4529 <li><a href="h_common_pipe">Pipe Command</a>
4530 <li><a href="h_valid_folder_names">POP</a>
4531 <li><a href="h_common_postpone">Postpone Command</a>
4532 <li><a href="h_common_print">Print Command</a>
4533 <li><a href="h_mainhelp_readingnews">Reading News</a>
4534 <li><a href="h_news">RELEASE NOTES for Alpine</a>
4535 <li><a href="h_mainhelp_roles">Roles</a>
4536 <li><a href="h_role_select">ROLES SCREEN</a>
4537 <li><a href="h_compose_readfile">Read File Command</a>
4538 <li><a href="h_mainhelp_reading">Reading Messages</a>
4539 <li><a href="h_main_release_notes">Release Notes Command</a>
4540 <li><a href="h_common_reply">Reply and Forward Commands</a>
4541 <li><a href="h_compose_richhdr">Rich Header Command</a>
4542 <li><a href="h_common_role">Role Command</a>
4543 <li><a href="h_mainhelp_smime">S/MIME</a>
4544 <li><a href="h_index_cmd_select">Searching for Messages</a>
4545 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
4546 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
4547 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
4548 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
4549 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
4550 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
4551 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
4552 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
4553 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
4554 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
4555 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
4556 <li><a href="h_common_save">Save and Export Commands</a>
4557 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
4558 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
4559 <li><a href="h_compose_send">Send Command</a>
4560 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
4561 <li><a href="h_main_setup">Setup Command</a>
4562 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
4563 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
4564 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
4565 <li><a href="h_mainhelp_smime">S/MIME</a>
4566 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
4567 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
4568 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
4569 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
4570 <li><a href="h_config_smime_use_cert_store">S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></a>
4571 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
4572 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
4573 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
4574 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
4575 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
4576 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
4577 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
4578 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
4579 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
4580 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
4581 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
4582 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
4583 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
4584 <li><a href="h_config_smime_public_certificates">S/MIME: Manage Public Certificates</a>
4585 <li><a href="h_config_smime_private_keys">S/MIME: Manage Private Keys</a>
4586 <li><a href="h_config_smime_certificate_authorities">S/MIME: Manage Certificate Authorities</a>
4587 <li><a href="h_index_cmd_sort">Sort Command</a>
4588 <li><a href="h_compose_spell">Spell Check Command</a>
4589 <li><a href="h_common_suspend">Suspend Command</a>
4590 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
4591 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
4592 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
4593 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
4594 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
4595 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
4596 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
4597 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
4598 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
4599 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
4600 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
4601 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
4602 <li><a href="h_common_take">TakeAddr Command</a>
4603 <li><a href="h_mainhelp_status">Titlebar Line</a>
4604 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
4605 <li><a href="h_config_usenone_color">Use None Color</a>
4606 <li><a href="h_config_usenormal_color">Use Normal Color</a>
4607 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
4608 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
4609 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
4610 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
4611 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
4612 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
4613 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
4614 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
4615 </UL>
4618 &lt;End of Help Index&gt;
4619 </BODY>
4620 </HTML>
4623 ============== h_config_remote_config =============
4624 <HTML>
4625 <HEAD>
4626 <TITLE>Remote Configuration</TITLE>
4627 </HEAD>
4628 <BODY>
4629 <H1>Remote Configuration</H1>
4631 You may use the command line argument &quot;-p pinerc&quot; to tell
4632 Alpine to use a non-default configuration file.
4633 There are two types of storage for configuration information.
4634 <EM>Local</EM> configuration files are used by default.
4635 These are just regular files on the UNIX system or on the PC.
4636 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
4637 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
4638 <EM>Remote</EM> configuration folders are stored on an IMAP server.
4639 The advantage of using a remote configuration is that the same information
4640 may be accessed from multiple platforms.
4641 For example, if you use one computer at work and another at home, the same
4642 configuration could be used from both places.
4643 A configuration change from one place would be seen in both places.
4644 To use a remote configuration you simply give a
4645 <A HREF="h_valid_folder_names">remote folder name</A>
4646 as the argument to the &quot;-p&quot; command line option.
4647 The command line might look something like:
4649 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
4651 If there are special characters in the command shell you use, you may need to
4652 quote the last argument (to protect the curly braces from the shell).
4653 The command might look like:
4655 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
4657 You should choose a folder name for a folder that does not yet exist.
4658 It will be created containing an empty configuration.
4659 Do not use a folder that you wish to store regular mail messages in.
4661 The Setup/RemoteConfigSetup command will help you convert from a local
4662 configuration to a remote configuration.
4663 It will create a remote configuration for you and copy your current local
4664 configuration to it.
4665 It will also help you convert local address books into remote address books
4666 and local signature files into literal signatures contained in the
4667 remote configuration file.
4669 If the Setup/RemoteConfigSetup command doesn't do what you want, you
4670 may copy a local pinerc file to a remote configuration folder by hand
4671 by using the command line option &quot;-copy_pinerc&quot;.
4673 Another command line option, which is somewhat related to remote
4674 configuration, is the option &quot;-x exceptions_config&quot;.
4675 The configuration settings in the exceptions configuration override
4676 your default settings.
4677 It may be useful to store the default configuration (the -p argument) remotely
4678 and to have the exceptions configuration stored in a local file.
4679 You might put generic configuration information in the remote configuration
4680 and platform-specific configuration on each platform in the exceptions
4681 configuration.
4682 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
4683 can be either remote folders or local files.
4685 There is another command line argument that works only with PC-Alpine and
4686 which may prove useful when using a remote configuration.
4687 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
4688 to store your local auxiliary files.
4689 This only has an effect if your configuration file is remote.
4690 Some examples of auxiliary files are debug files, address book files, and
4691 signature files.
4693 &lt;End of help on this topic&gt;
4694 </BODY>
4695 </HTML>
4696 ============== h_config_exceptions =============
4697 <HTML>
4698 <HEAD>
4699 <TITLE>Generic and Exceptional Configuration</TITLE>
4700 </HEAD>
4701 <BODY>
4702 <H1>Generic and Exceptional Configuration</H1>
4704 If you use Alpine from more than one platform it may be convenient
4705 to split your configuration information into two pieces, a generic piece
4706 and exceptions that apply to a particular platform.
4707 For example, suppose you use Alpine from home and from work.
4708 Most of your configuration settings are probably the
4709 same in both locations, so those settings belong in the generic settings
4710 configuration.
4711 However, you may use a different SMTP server and INBOX
4712 from home than you do from work.
4714 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
4716 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
4717 options could be
4718 part of your exceptional configuration so that they could be different in the
4719 two places.
4721 The command line option &quot;-x exceptions_config&quot;
4722 may be used to split your configuration into generic and exceptional pieces.
4723 &quot;Exceptions_config&quot; may be either local or remote.
4724 The regular Alpine configuration file will contain the generic data, and
4725 &quot;exceptions_config&quot; will contain the exceptional data.
4727 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
4728 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
4729 in the same local directory that the regular config file is located in (usually
4730 the Unix home directory).
4731 If the regular config file is remote (because the command line option
4732 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
4733 directory for &quot;<CODE>.pinercex</CODE>&quot;.
4734 If the file does not already exist then no exceptions will be used.
4735 You can force exceptions to be used by using the &quot;-x&quot; option or
4736 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
4738 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
4739 PC-Alpine will use the value of the
4740 environment variable <CODE>$PINERCEX</CODE>.
4741 If that is not set, PC-Alpine will look for
4742 the local file &quot;<CODE>PINERCEX</CODE>&quot;
4743 in the same local directory that the regular config file is located in.
4744 If the regular config file is remote (because the command line option
4745 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
4746 local directory specified by the &quot;-aux local_directory&quot; command
4747 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
4748 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
4750 When you have an exception configuration there is a new command
4751 in the Alpine Setup screen, Setup/eXceptions.
4752 It toggles between exceptions and the regular configuration.
4753 This is the usual way to make changes in your exceptional configuration data.
4754 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
4755 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
4756 for Config or &quot;K&quot; for Kolor.
4758 For most people, splitting the configuration information into two pieces is
4759 going to be most useful if the generic information is accessed
4760 <A HREF="h_config_remote_config">remotely</A>).
4761 That data will be the same no matter where you access it from and if you
4762 change it that change will show up everywhere.
4763 The exceptional data will most commonly be in a local file, so that the
4764 contents may easily be different on each computing platform used.
4766 If you already have a local configuration file with settings you like
4767 you may find that the command Setup/RemoteConfigSetup is useful
4768 in helping you convert to a remote configuration.
4769 The command line flag &quot;-copy_pinerc&quot;
4770 may also be useful.
4772 &lt;End of help on this topic&gt;
4773 </BODY>
4774 </HTML>
4775 ============== h_config_inheritance =============
4776 <HTML>
4777 <HEAD>
4778 <TITLE>Configuration Inheritance</TITLE>
4779 </HEAD>
4780 <BODY>
4781 <H1>Configuration Inheritance</H1>
4783 Configuration inheritance is a power user feature.
4784 It is confusing and not completely supported by the configuration
4785 user interface.
4786 We start with an explanation of how configuration works in hopes of making
4787 it easier to describe how inheritance works.
4789 Alpine uses a hierarchy of configuration values from different locations.
4790 There are five ways in which each configuration option (configuration
4791 variable) can be set.
4792 In increasing order of precedence they are:
4794 <OL>
4795 <LI> the system-wide configuration file.
4797 <LI> the personal configuration file
4799 <LI> the personal exceptions file
4801 <LI> a command line argument
4803 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
4804 </OL>
4806 The fixed configuration file is normally
4807 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
4809 The system-wide configuration file is normally
4810 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
4811 set for PC-Alpine.
4812 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
4813 is used for the system-wide configuration.
4814 This location can be set or changed on the command line with the -P flag.
4815 The system-wide configuration file can be either a local file or a
4816 remote configuration folder.
4818 For Unix Alpine, the personal configuration file is normally the file
4819 <CODE>.pinerc</CODE> in the user's home directory.
4820 This can be changed with the -p command line flag.
4821 For PC-Alpine, the personal configuration file is in
4822 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
4823 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
4824 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
4825 This can be changed with the -p command line flag.
4826 If -p is used, the configuration data may be in a local file or a remote config
4827 folder.
4829 For Unix Alpine, the personal exceptions configuration file is named
4830 <CODE>.pinercex</CODE> and is in the same directory as the personal
4831 configuration file, if that configuration file is not remote, and is in
4832 the home directory if the personal configuration file is remote.
4833 If the file exists, then exceptions are turned on.
4834 If it doesn't, then you are not using exceptions.
4835 Alternatively, you may change the location of the exceptions configuration
4836 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4837 Like the personal configuration data, exceptions_config may be
4838 either local or remote.
4840 For PC-Alpine, the personal exceptions configuration file is named
4841 <CODE>PINERCEX</CODE> and is in the same directory as the personal
4842 configuration file unless the personal configuration file is remote.
4843 In that case, it is in the local directory specfied by the
4844 &quot;-aux local_directory&quot; command line argument.
4845 (In the case that the personal configuration is remote and there is no
4846 &quot;-aux&quot; command line argument, Alpine searches for
4847 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
4848 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
4849 If the file exists, then exceptions are turned on.
4850 If it doesn't, then you are not using exceptions.
4851 You may change the location of the exceptions configuration
4852 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
4853 or with the
4854 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
4855 option).
4857 To reiterate, the value of a configuration option is taken from the
4858 last location in the list above in which it is set.
4859 Or, thinking about it slightly differently, a default value for an option
4860 is established in the system-wide configuration file (or internally by Alpine
4861 if there is no value in the system-wide file).
4862 That default remains in effect until and unless it is overridden by a value in a
4863 location further down the list, in which case a new &quot;default&quot;
4864 value is established.
4865 As we continue down the list of locations we either retain the
4866 value at each step or establish a new value.
4867 The value that is still set after going through the whole list of
4868 configuration locations is the one that is used.
4870 So, for example, if an option is set in the system-wide configuration
4871 file and in the personal configuration file, but is not set in the
4872 exceptions, on the command line, or in the fixed file; then the value
4873 from the personal configuration file is the one that is used.
4874 Or, if it is set in the system-wide config, in the personal config, not
4875 in the exceptions, but is set on the command line; then the value
4876 on the command line is used.
4878 Finally we get to inheritance.
4879 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
4880 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
4881 the inheritance mechanism makes it possible to <EM>combine</EM>
4882 the values from different locations instead of <EM>replacing</EM> the value.
4883 This is true of all configuration lists other than the &quot;Feature-List&quot;,
4884 for which you may already set whatever you want at
4885 any configuration location (by using the &quot;no-&quot; prefix if
4886 necessary).
4888 To use inheritance, set the first item in a configuration list to the
4889 token &quot;INHERIT&quot;, without the quotes.
4890 If the first item is &quot;INHERIT&quot;,
4891 then instead of replacing the default value established so far, the rest of
4892 the list is appended to the default value established so far and that is
4893 the new value.
4895 Here is an example which may make it clearer. Suppose we have:
4897 <PRE>
4898  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4899  Personal config    :   smtp-server = INHERIT, mysmtp.home
4900  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
4901  Command line       :   smtp-server = &lt;No Value Set&gt;
4902  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4903 </PRE>
4906 This would result in an effective smtp-server option of
4908 <PRE>
4909  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
4910 </PRE>
4912 The &quot;INHERIT&quot; token can be used in any of the configuration files
4913 and the effect cascades.
4914 For example, if we change the above example to:
4916 <PRE>
4917  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4918  Personal config    :   smtp-server = INHERIT, mysmtp.home
4919  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4920  Command line       :   smtp-server = &lt;No Value Set&gt;
4921  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4922 </PRE>
4925 This would result in:
4927 <PRE>
4928  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
4929 </PRE>
4931 Unset variables are skipped over (the default value is carried forward) so
4932 that, for example:
4934 <PRE>
4935  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4936  Personal config    :   smtp-server = &lt;No Value Set&gt;
4937  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
4938  Command line       :   smtp-server = &lt;No Value Set&gt;
4939  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4940 </PRE>
4943 produces:
4945 <PRE>
4946  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
4947 </PRE>
4950 If any later configuration location has a value set (for a particular list
4951 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
4952 then that value replaces whatever value has been defined up to that point.
4953 In other words, that cancels out any previous inheritance.
4955 <PRE>
4956  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
4957  Personal config    :   smtp-server = INHERIT, mysmtp.org
4958  Exceptions config  :   smtp-server = yoursmtp.org
4959  Command line       :   smtp-server = &lt;No Value Set&gt;
4960  Fixed config       :   smtp-server = &lt;No Value Set&gt;
4961 </PRE>
4964 results in:
4966 <PRE>
4967  smtp-server = yoursmtp.org
4968 </PRE>
4971 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
4972 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
4973 difficult to insert the value &quot;INHERIT&quot; into the list of values
4974 for the option using the normal Setup tools.
4975 In other words, the color setting screen (for example) does not
4976 provide a way to input the text &quot;INHERIT&quot; as the first
4977 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
4978 The way to do this is to either edit the pinerc file directly and manually
4979 insert it, or turn
4980 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
4981 feature and insert it using the Setup/Config screen.
4983 &lt;End of help on this topic&gt;
4984 </BODY>
4985 </HTML>
4986 ============== h_special_xon_xoff =============
4987 <HTML>
4988 <HEAD>
4989 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
4990 </HEAD>
4991 <BODY>
4992 <H1>XOFF/XON Handling within Alpine</H1>
4994 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
4995 and XON) as normal characters, even though Alpine does not use them.
4996 However, the printer, modem, or communication software you are using may
4997 be configured for &quot;software flow control,&quot; which means that
4998 XON/XOFF must be treated as special characters by the operating system.
4999 If you see messages such as &quot;^S not defined for this screen&quot;,
5000 then your system is probably using software flow control. In this case
5001 you will need to set the
5002 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
5003 feature.
5005 If you <EM>do</EM> set this
5006 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
5007 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
5008 and see if that puts things right.  Printing via the
5009 &quot;attached-to-ansi&quot; or 
5010 &quot;attached-to-wyse&quot;
5011 option will automatically enable software
5012 flow-control handling for the duration of the printing.
5014 &lt;End of help on this topic&gt;
5015 </BODY>
5016 </HTML>
5017 ============= h_special_help_nav =============
5018 <HTML>
5019 <HEAD>
5020 <TITLE>Help Text Navigation Explained</TITLE>
5021 </HEAD>
5022 <BODY>
5023 <H1>Help Text Navigation Explained</H1>
5025 Alpine contains extensive context-sensitive help text.   At any point, 
5026 pressing the &quot;?&quot; key will bring up a page of help text
5027 explaining the options available to you.  You can leave the help
5028 text screen and return to normal Alpine operation by pressing
5030 <!--chtml if pinemode="function_key"-->
5031 F3 function
5032 <!--chtml else-->
5033 &quot;E&quot;
5034 <!--chtml endif-->
5035 key to Exit Help at any time.
5038 Within the help screen you might find a word or phrase displayed in 
5039 inverse text and others displayed in bold typeface.  Such words and
5040 phrases are used to tell you Alpine has more information available on
5041 the topic they describe.
5042 The inverted text is the &quot;selected&quot; topic.  
5043 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
5044 displayed in bold type
5045 is &quot;selected&quot;.
5046 Hit the Return key to display the information Alpine has available on that
5047 topic.  While viewing such additional information, the 
5048 <!--chtml if pinemode="function_key"-->
5049 F3 function
5050 <!--chtml else-->
5051 &quot;P&quot;
5052 <!--chtml endif-->
5053 key will return you to the previous help screen, and the
5054 <!--chtml if pinemode="function_key"-->
5055 F2 function
5056 <!--chtml else-->
5057 &quot;E&quot;
5058 <!--chtml endif-->
5059 key will Exit the Help system altogether.
5062 The "N" command will tell you the internal name of the help text you are 
5063 reading each time, so that you can send this name in the text of a message 
5064 and create a direct link to that internal help using the x-pine-help URL 
5065 scheme. For example, the direct link to this item is 
5066 x-pine-help:h_special_help_nav. If you add this text to a message, then
5067 a person using Pine to read such message would have a direct link to this
5068 help text.
5071 When you are finished reading this help text, you can press the
5072 <!--chtml if pinemode="function_key"-->
5073 F3 function
5074 <!--chtml else-->
5075 &quot;P&quot;
5076 <!--chtml endif-->
5077 key to return to the previously displayed help text.
5080 &lt;End of help on this topic&gt;
5081 </BODY>
5082 </HTML>
5083 ============= h_special_list_commands =============
5084 <HTML>
5085 <HEAD>
5086 <TITLE>Email List Commands Explained</TITLE>
5087 </HEAD>
5088 <BODY>
5089 <H1>Email List Commands Explained</H1>
5091 Electonic mail lists provide a way for like-minded users to join in
5092 discussions on topics of interest.  The email list itself is 
5093 represented by a
5094 single address that participants send messages to when they have
5095 something of interest to share with other members of the list.  The
5096 receiving computer then, either automatically or after review by the
5097 list's owner (or moderator), sends a copy of that message to each
5098 member of the list.
5101 Usually, subscribing and unsubscribing is done by sending requests in
5102 an email message to a special address setup to handle managing list
5103 membership.  Often this is the name of the list followed by
5104 <I>-request</I>.  This address is almost <EM>never</EM> the same as
5105 the address used to send messages to the list.
5108 Unfortunately, email list participation commands are more a matter
5109 of convention than standard, and thus may vary from list to list.
5110 Increasingly, list management software is adding information to
5111 the copy of the postings as they're copied to the list members that
5112 explains how to do the various list management functions.
5115 Alpine will recognize this information and offer the management commands
5116 they represent in a simple display. One or more of the following
5117 operations will be made available:
5119 <DL>
5120 <DT>Help</DT>
5121 <DD>
5122 A method to get help on subscribing, unsubscribing, 
5123 an explanation of what the list is about, or special instructions
5124 for participation.  This may be in the form of a reply in response
5125 to an email message, or instructions on how to connect to a Web site.
5126 </DD>
5128 <DT>Unsubscribe</DT>
5129 <DD>
5130 A method to get your email addressed removed from the list of
5131 recipients of the email list.
5132 </DD>
5134 <DT>Subscribe</DT>
5135 <DD>
5136 A method to get your email address added to the list of recipients
5137 of the email list.  It may be in the form of a message sent to 
5138 a special address or you may be connected to a web site.
5139 <DD>
5140 </DD>
5142 <DT>Post</DT>
5143 <DD>
5144 A method used to post to the email list.  However, it might also 
5145 indicate that no posting is allowed directly to the list.
5146 </DD>
5148 <DT>Owner</DT>
5149 <DD>
5150 A method to contact the list owner for special questions you might
5151 have regarding the list.
5152 </DD>
5154 <DT>Archive</DT>
5155 <DD>
5156 A method to view an archive of previous messages posted to the list.
5157 This may be in the form of a mail folder on a remote computer, an
5158 IMAP mailbox or even a Web site.
5159 </DD>
5160 </DL>
5163 &lt;End of help on this topic&gt;
5164 </BODY>
5165 </HTML>
5166 ============= h_quota_command =============
5167 <HTML>
5168 <HEAD>
5169 <TITLE>Quota Screen Explained</TITLE>
5170 </HEAD>
5171 <BODY>
5172 <H1>Quota Screen Explained</H1>
5174 <P> This screen summarizes the quota report for this mailbox in the
5175 IMAP server. For each resource that you have a quota, this reports summarizes
5176 its use and limit.
5178 <P> Your IMAP server administrator may have set a quota based either on 
5179 the total size of your mailbox (STORAGE), or the number of messages in 
5180 your mailbox (MESSAGES), or some other criteria. This will be reported
5181 to you indicating the type of quota, its total use and its limit.
5183 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
5184 1024 bytes. Each of the characters that you see in this help text is one 
5185 byte, and this help text is about 1 kibibyte in size. Small messages sent 
5186 by Alpine are normally less than 4 kibibytes in size (which includes 
5187 headers and text). Other email programs may send messages with bigger 
5188 sizes when they send messages, since they send plain text and an 
5189 alternative part in HTML.
5191 <P> A convenient way to save space for the STORAGE type of quota is by 
5192 deleting attachments. This is done on each individual message by pressing 
5193 the &quot;V&quot; command while reading the message text, then moving the cursor 
5194 to the position of the attachment that is to be deleted, then pressing
5195 &quot;D&quot; to delete such attachment, going back to reading the 
5196 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
5197 save the message in the same folder you are reading from. The saved 
5198 message will not have the attachment that was marked deleted. Now you
5199 can delete and expunge the message with the unwanted attachment.
5202 &lt;End of help on this topic&gt;
5203 </BODY>
5204 </HTML>
5205 ============= h_mail_thread_index =============
5206 <HTML>
5207 <HEAD>
5208 <TITLE>THREAD INDEX COMMANDS</TITLE>
5209 </HEAD>
5210 <BODY>                 
5211 <H1>THREAD INDEX COMMANDS</H1>
5212 <!--chtml if pinemode="function_key"-->
5213 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>
5214 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5215 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>
5216 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>
5217 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>
5218 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>
5219 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>
5220 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>
5221 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>
5222 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>
5223 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>
5224 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>
5225 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>
5226 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>
5227 <BR>
5228 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5229 -----------------------------<BR>
5230 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>
5231 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>
5232 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>
5233 <BR>
5234 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5235 -----------------------------<BR>
5236 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
5237 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
5238 <BR>
5239 <!--chtml else-->
5240 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>
5241 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5242 &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>
5243 &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>
5244 &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>
5245 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>
5246 &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>
5247 &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>
5248 &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>
5249 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>
5250 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5251 <BR>
5252 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
5253 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
5254 &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>
5255 &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>
5256 &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>
5257 &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>
5258 &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>
5259 &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>
5260 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
5261 <!--chtml endif-->
5264 NOTE:
5265 <OL>
5266  <LI>For help on a particular command, highlight the bold text associated
5267 with it above and hit Return.
5268  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5269 </OL>
5271 <H2>Description of the THREAD INDEX Screen</H2>
5273 The THREAD INDEX displays summary information from each
5274 thread (conversation) in the current folder.
5275 This is useful if you want to quickly
5276 scan new threads, or find a particular thread without having to go
5277 through the text of each message, or to quickly get rid of junk
5278 threads, etc.
5279 The current thread is always highlighted.
5280 Each line of the THREAD INDEX contains the following columns: <P>
5281 <DL>
5282  <DT>STATUS:</DT>
5283  <DD> The markings on the left side of the thread tell you about its
5284 status.  You may see one or more of the following codes on any given
5285 thread:
5286 <UL>
5287   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
5288   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
5289   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
5290   <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.
5291   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5292         message in the thread was sent to you as a cc:. This symbol will only show up if
5293         the feature
5294         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5295   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
5296         &quot;select&quot; command.  (Some systems may optionally allow selected
5297         messages to be denoted by the index line being displayed in bold
5298         type instead.)
5299   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5300       to mark at least one message in this thread as &quot;important&quot;.
5301 </UL></DD><P>
5303  <DT>THREAD NUMBER:</DT>
5304  <DD>Threads in a folder are numbered, from one through the number
5305 of threads in the folder, to help you know where you are in the folder.
5306 </DD><P>
5308  <DT>DATE STARTED:</DT>
5309  <DD>The date the thread was started. This is actually from the Date header
5310 of the first message in the thread. It doesn't take different time zones
5311 into account.</DD><P>
5313  <DT>WHO STARTED THE THREAD:</DT>
5314  <DD>This is usually the name of the sender of the first message in the thread, taken from
5315 the From header of the message.
5316 If there is no personal name given in that
5317 address, then the email address is used instead.
5318 If the message is from you (or from one of your
5319 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5320 then the recipient's name is shown here instead, with the characters
5321 &quot;To: &quot; inserted before the name.
5322 (The idea of this is that if you started the thread you would rather see who
5323 the mail was sent to instead of that the mail was from you.)
5324 In Newsgroups, if you are
5325 the sender and there are no email recipients, the newsgroup name will be
5326 listed after the &quot;To: &quot;.
5327 </DD><P>
5329  <DT>SIZE:</DT>
5330  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
5332  <DT>SUBJECT:</DT>
5333  <DD>As much of the thread's subject line as will fit on the screen.
5334 This is the subject of the first message in the thread.</DD>
5335 </DL>
5337 <P><UL>
5338 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5339 </UL>
5341 &lt;End of help on this topic&gt;
5342 </BODY>
5343 </HTML>
5344 ============= h_mail_index =============
5345 <HTML>
5346 <HEAD>
5347 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
5348 </HEAD>
5349 <BODY>                 
5350 <H1>MESSAGE INDEX COMMANDS</H1>
5351 <!--chtml if pinemode="function_key"-->
5352 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>
5353 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5354 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>
5355 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>
5356 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>
5357 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>
5358 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>
5359 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>
5360 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>
5361 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>
5362 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>
5363 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>
5364 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>
5365 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>
5366 <BR>
5367 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5368 -----------------------------<BR>
5369 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>
5370 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>
5371 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>
5372 <BR>
5373 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5374 -----------------------------<BR>
5375 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
5376 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>
5377 <BR>
5378 <!--chtml else-->
5379 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>
5380 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5381 &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>
5382 &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>
5383 &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>
5384 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>
5385 &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>
5386 &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>
5387 &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>
5388 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>
5389 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5390 Miscellaneous&nbsp;Operations<BR>
5391 ------------------------<BR>
5392 &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>
5393 &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>
5394 &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>
5395 &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>
5396 &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>
5397 &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>
5398 &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>
5399 &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>
5400 <!--chtml endif-->
5403 NOTE:
5404 <OL>
5405  <LI>For help on a particular command, highlight the bold text associated
5406 with it above and hit Return.
5407  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5408 </OL>
5410 <H2>Description of the MESSAGE INDEX Screen</H2>
5412 The MESSAGE INDEX displays summary information from each
5413 message in the current folder.
5414 This is useful if you want to quickly
5415 scan new messages, or find a particular message without having to go
5416 through the text of each message, or to quickly get rid of junk
5417 messages, etc.
5419 The current message is always highlighted
5420 and many commands operate on the current message.
5421 For example, the Delete command will delete the current message.
5422 If the folder is sorted by either Threads or OrderedSubject, then, depending
5423 on some of your configuration settings, a single line in the index may
5424 refer to an entire thread or to a subthread.
5425 If that is the case, then the commands that normally operate on the current
5426 message will operate on the thread or subthread instead.
5427 For example, the Delete command will delete the whole collapsed thread
5428 instead of just a single message.
5430 Each line of the MESSAGE INDEX contains the following columns (by default -- 
5431 you can change this with the 
5432 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
5433 in the SETUP CONFIGURATION screen): <P>
5434 <DL>
5435  <DT>STATUS:</DT>
5436  <DD> The markings on the left side of the message tell you about its
5437 status.  You may see one or more of the following codes on any given
5438 message:
5439 <UL>
5440   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
5441          yet eXpunged the folder.
5442   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
5443   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
5444          to be answered.
5445   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
5446          forward a message.
5447   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
5448         directly to your account, your copy is not part of a cc: or a
5449         mailing list.
5450   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5451         message was sent to you as a cc:. This symbol will only show up if
5452         the feature
5453         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5454   <LI> &quot;X&quot; for selected.  You have selected the message by using the
5455         &quot;select&quot; command.  (Some systems may optionally allow selected
5456         messages to be denoted by the index line being displayed in bold
5457         type.)
5458   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5459       to mark this message as &quot;important&quot;.
5460 </UL></DD><P>
5462  <DT>MESSAGE NUMBER:</DT>
5463  <DD>Messages in a folder are numbered, from one through the number
5464 of messages in the folder, to help you know where you are in the folder.
5465 These numbers are always in increasing order, even if you sort the folder
5466 in a different way.</DD><P>
5468  <DT>DATE SENT:</DT>
5469  <DD>The date the message was sent.  By default, messages are
5470 ordered by arrival time, not by date sent.  Most of the time, arrival time
5471 and date sent (effectively departure time) are similar.  Sometimes,
5472 however, the index will appear to be out of order because a message took a
5473 long time in delivery or because the sender is in a different time
5474 zone than you are. This date is just the date from the Date header
5475 field in the message.</DD><P>
5477  <DT>WHO SENT THE MESSAGE:</DT>
5478  <DD>This is usually the name of the sender of the message, taken from
5479 the From header of the message.
5480 If there is no personal name given in that
5481 address, then the email address is used instead.
5482 If the message is from you (or from one of your
5483 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5484 then the recipient's name is shown here instead, with the characters
5485 &quot;To: &quot; inserted before the name.
5486 (The idea of this is that if you sent the mail you would rather see who
5487 the mail was sent to instead of that the mail was from you.
5488 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
5489 above.
5490 In particular, use the FROM token or the FROMORTONOTNEWS token
5491 in place of the FROMORTO token.)
5492 In Newsgroups, if you are
5493 the sender and there are no email recipients, the newsgroup name will be
5494 listed after the &quot;To: &quot;. </DD><P>
5496  <DT>SIZE:</DT>
5497  <DD>The number in parentheses is the number of characters in the message.
5498 It may have a suffix of K, M, or G which means the number should be
5499 multiplied by one thousand, one million, or one billion to get the
5500 size of the message.</DD><P>
5502  <DT>SUBJECT:</DT>
5503  <DD>As much of the message's subject line as will fit on the screen.</DD>
5504 </DL>
5506 <P><UL>
5507 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5508 </UL>
5510 &lt;End of help on this topic&gt;
5511 </BODY>
5512 </HTML>
5513 ============= h_mail_view ========================
5514 <HTML>
5515 <HEAD>
5516 <TITLE>MESSAGE TEXT SCREEN</TITLE>
5517 </HEAD>
5518 <BODY>
5519 <H1>MESSAGE TEXT SCREEN</H1>
5520 <!--chtml if pinemode="function_key"-->
5521 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>
5522 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
5523 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>
5524 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>
5525 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>
5526 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>
5527 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>
5528 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>
5529 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>
5530 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>
5531 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>
5532 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>
5533 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>
5534 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>
5535 <BR>
5536 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5537 ------------------------------<BR>
5538 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5539 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5540 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
5541 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
5542 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
5543 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
5544 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
5545 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
5546 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
5547 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
5548 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
5549 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5550 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5551 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
5552 <!--chtml else-->
5553 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
5554 ---------------------------------<BR>
5555 <BR>
5556 &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>
5557 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>
5558 &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>
5559 &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>
5560 &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>
5561 &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>
5562 &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>
5563 &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>
5564 &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>
5565 <BR>
5566 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
5567 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
5568 &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>
5569 &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>
5570 &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>
5571 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>
5572 <BR>
5573 General&nbsp;Alpine&nbsp;Commands<BR>
5574 ---------------------<BR>
5575 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
5576 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
5577 &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>
5578 &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>
5579 &nbsp;&nbsp;&nbsp;&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>
5580 <!--chtml endif-->
5583 NOTE:
5584 <OL>
5585  <LI>For help on a particular command, highlight the bold text associated
5586 with it above and hit Return.
5587  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5588 </OL>
5590 <H2>Description of the MESSAGE TEXT Screen</H2>
5592 The top line of the view message screen displays status
5593 information about the currently open collection and folder and about the
5594 current message.  It shows the name of the collection in angle brackets
5595 and then the name of the folder.  The line also displays the number
5596 of messages in the folder, the number of the current message and the
5597 percentage of the current message that has been displayed on the screen.
5598 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
5599 right corner.
5600 If the message has been answered (but not deleted) &quot;ANS&quot; will show
5601 in the corner.
5604 NOTE: to rapidly move to the end of a message, hit the
5605 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5606 (or Ctrl-W) key followed
5607 by Ctrl-V.  Similarly,
5608 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5609 followed by Ctrl-Y will take you to the beginning of
5610 a message.
5612 <H2>Explanation of Alternate Character Sets</H2>
5614 Alpine attempts to stay out of the way so that it won't prevent you from
5615 viewing mail in any character set.  It will simply send the message to
5616 your display device.  If the device is capable of displaying the
5617 message as it was written it will do so.  If not, the display may be
5618 partially or totally incorrect.
5619 If the message contains characters that are not representable in your 
5620 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
5621 variable in your configuration, then a warning message will be printed
5622 to your screen at the beginning of the message display.
5623 It is probably best to use UNIX Alpine in a terminal emulator
5624 capable of displaying UTF-8 characters.
5625 See <A HREF="h_config_char_set">Display Character Set</A> for a little
5626 more information about character set settings.
5628 <P><UL>
5629 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5630 </UL>
5632 &lt;End of help on this topic&gt;
5633 </BODY>
5634 </HTML>
5635 ======= h_index_cmd_select =======
5636 <HTML>
5637 <HEAD>
5638 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
5639 </HEAD>
5640 <BODY>
5641 <H1>Selecting: Select and WhereIs/Select</H1>
5643 Aggregate operations give you the ability to process a group of messages
5644 at once.  Acting on multiple messages requires two steps: (1) selecting a
5645 set of messages and then; (2) applying a command to that set. The first
5646 part is handled by the select command.  Select allows you to
5647 select messages based on their status (read, answered, etc.), contents,
5648 date, size, or keywords.
5649 You may also select based on one of your Rules or based on threads,
5650 and there are quick options to select a specific message or range of messages,
5651 to select the current message, or to select all messages.
5654 We describe the various selection criteria briefly:
5657 <DL>
5658 <DT>select All</DT>
5659 <DD> Marks all the messages in the folder as selected.
5660 </DD>
5662 <DT>select Cur</DT>
5663 <DD> Selects the currently highlighted message or currently highlighted
5664 set of messages if in a threaded view.
5665 </DD>
5667 <DT>select by Number</DT>
5668 <DD> Select by message number. This may be a comma-separated list instead or
5669 a single entry.
5670 Each element in the list may be either a single message number or a range
5671 of numbers with a dash between the lowest and highest member of the range.
5672 Some examples are 7 to select only message number 7; 2-5 to select messages
5673 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
5674 The word &quot;end&quot; or the character &quot;$&quot; may be used as a 
5675 substitute for the highest numbered message in the folder, while the
5676 character &quot;.&quot; represents the message number holding the position
5677 of the cursor in the folder.
5678 If in a separate thread index where the numbers refer to threads instead of
5679 to messages, then you will be selecting all of the messages in the
5680 referenced threads instead of selecting by message number.
5681 </DD>
5683 <DT>select by Date</DT>
5684 <DD> Select by either the date stored in the Date headers of each message,
5685 or by the date when the messages arrived.
5686 This does not adjust for different time zones, but just checks to see what
5687 day the message was sent on.
5688 You may type in a date. If you do, the date should be in the form
5689 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
5690 For example,
5691 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
5693 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
5694 If the date you want is close to the current date, it is probably
5695 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
5696 is displayed, instead of typing in the date yourself.
5697 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
5698 the date of the currently highlighted message. 
5700 There are six possible settings that are selected using the
5701 &quot;^W&nbsp;Toggle When&quot; command.
5702 Three of them select messages based on the Date headers.
5703 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
5704 and &quot;SENT ON&quot;.
5705 SINCE is all messages with the selected date or later.
5706 BEFORE is all messages earlier than the selected date (not including the day
5707 itself).
5708 ON is all messages sent on the selected date.
5709 The other three select messages in the same way but they use the arrival
5710 times of the messages instead of the Date headers included in the messages.
5711 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
5712 and &quot;ARRIVED ON&quot;.
5713 When you save a message from one folder to another the arrival time is
5714 preserved.
5715 </DD>
5717 <DT>select by Text</DT>
5718 <DD> Selects messages based on the message contents.
5719 This allows you to select a set of messages based on whether or not the
5720 message headers or message body contain specified text.
5721 You may look for text in the Subject, the From header,
5722 the To header, or the Cc header.
5723 You may also choose Recipient, which searches for the text in
5724 either the To or the Cc header;
5725 or Participant, which means To or Cc or From.
5726 Besides those specific header searches, you may also search the entire
5727 header and text of the message with &quot;All Text&quot;, or just the
5728 body of the message.
5730 To search for the absence of text, first type the &quot;! Not&quot; command
5731 before typing the specific type of text search.
5732 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5733 search for all messages that do not contain a particular word in their
5734 Subjects.
5736 If you choose a Subject search, you may use the subject from the current
5737 message by typing the &quot;^X Cur Subject&quot; command.
5738 You may then edit it further if you wish.
5739 For example, you might select the subject of a reply and edit the
5740 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5741 the original message being replied to.
5742 All of the other header searches allow you to use addresses from the
5743 headers of the current message if you want to.
5744 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5745 &quot;^W Cur Cc&quot;.
5746 In each case, if there is more than one address, only the first is offered.
5747 </DD>
5749 <DT>select by Status</DT>
5750 <DD> Selects messages based on their status.
5751 You may select all New, Important, Deleted, Answered, Recent, or Unseen
5752 messages.
5753 Or, if you first type the &quot;! Not&quot; command, you get not New,
5754 or not Important, and so on.
5755 If you select Deleted messages, you will get all messages with their
5756 Deleted flag set.
5757 Likewise for Important messages, all messages that you have flagged as
5758 being Important with the
5759 <A HREF="h_common_flag">Flag</A> command.
5760 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5761 because they try to match what you see on the screen by default.
5762 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5763 and Unanswered.
5764 If you have looked at the message, or deleted it, or answered it; then it
5765 is not considered &quot;New &quot;.
5766 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5768 &quot;Answered&quot; is another one that is a little different.
5769 It means that the message has been Answered <EM>and</EM> is not deleted.
5770 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5771 the opposite of &quot;Answered&quot;!
5772 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5773 both Unanswered <EM>and</EM> not deleted.
5775 The other two types were added later because the special nature of the
5776 New flag was not what was wanted by all users.
5777 New does match what you see in the index by default, but if you use
5778 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5779 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5780 be exactly what you want.
5781 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5782 they are deleted or answered, and
5783 &quot;Recent&quot; selects all of the messages that have been added to
5784 the folder since you started this Alpine session.
5785 (That's not technically quite true. If there are multiple mail clients
5786 reading an IMAP mailbox, each message will be marked as Recent in only
5787 one of the client's sessions.)
5788 </DD>
5790 <DT>select by siZe</DT>
5791 <DD> Selects messages based on their size being smaller than or larger
5792 than the size you specify.
5793 The size is the number of bytes.
5794 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
5795 the number.
5796 For example, 7K is the same as 7000.
5797 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
5798 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
5799 Use the &quot;^W&quot; command to toggle back and forth between Smaller
5800 and Larger.
5801 </DD>
5803 <DT>select by Keyword</DT>
5804 <DD> Selects messages that either have or do not have
5805 (using the &quot;!&nbsp;Not&quot; command)
5806 a particular <A HREF="h_config_keywords">Keyword</A> set.
5807 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
5808 command to select one from your list of keywords.
5810 <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.
5811 </DD>
5813 <DT>select by Rule</DT>
5814 <DD> Selects messages that either match or don't match
5815 (using the &quot;!&nbsp;Not&quot; command)
5816 one of the Rules you have defined.
5817 The most likely method of filling in the Rule is to use the
5818 &quot;^T&nbsp;To&nbsp;List&quot;
5819 command to select one of your Rules.
5820 All of the Rules you have defined will be in the list, including
5821 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
5822 They may not all make sense for this purpose, but they are all there for
5823 flexibility.
5824 You might find it useful to define some rules solely for the purpose
5825 of being used by the Select command.
5826 There is a special category for such Rules. They are called Search Rules.
5828 Unfortunately, Alpine does not allow all possible Rules to be defined.
5829 For example, there is no logical OR operation.
5830 OR is accomplished in the Filter Rules or the other types of Rules by
5831 simply defining two rules, one that matches the first part of the OR
5832 and another that matches the second part.
5833 But you can't do that here, since you only have a single Rule to work with.
5834 Likewise, the order of Rules is usually important.
5835 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5836 a message, then that stops the search for a further match.
5837 This means that you may be confused if you try to use Select by Rule to
5838 check your Filter rules because the order is important when filtering but
5839 is not considered here.
5840 </DD>
5842 <DT>select by tHread</DT>
5843 <DD> Selects all of the messages in the current thread.
5844 </DD>
5845 </DL>
5847 After you have an initial selection, the next and subsequent selection
5848 commands modify the selection.
5849 The select command changes. It first gives
5850 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
5851 &quot;unselect Current&quot;,
5852 &quot;Broaden selection&quot; (implements a logical OR), and
5853 &quot;Narrow selection&quot; (implements a logical AND).
5854 After you choose either Broaden or Narrow, you then choose one of the
5855 selection criteria listed above (by Text or Number or ...).
5856 You may use select as many times as you wish to get the selected set right.
5859 The WhereIs command has a feature (Ctrl-X) to
5860 select all the messages that match the WhereIs search. WhereIs searches
5861 through just the text that appears on the MESSAGE INDEX screen.
5862 This method is often slower than using the select command itself, unless the
5863 line you are looking for is not too far away in the index.
5866 The availability of the aggregate operations commands is determined by the
5867 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
5868 Feature-List option in your Alpine
5869 configuration, which defaults to set.
5870 The features
5871 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
5873 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
5874 affect the behavior of the Select command.
5877 &lt;End of help on this topic&gt;
5878 </BODY>
5879 </HTML>
5880 ======= h_select_rule =======
5881 <HTML>
5882 <HEAD>
5883 <TITLE>Select: Rule</TITLE>
5884 </HEAD>
5885 <BODY>
5886 <H1>Select: Rule</H1>
5888 You are selecting messages that either match or don't match
5889 one of the Rules you have defined.
5890 You may either type the nickname of the Rule at the prompt, or use the
5891 &quot;^T&nbsp;To&nbsp;List&quot;
5892 command to select one of your Rules.
5893 All of the Rules you have defined will be in the list, including
5894 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
5895 They may not all make sense for this purpose, but they are all there for
5896 flexibility.
5897 Rules may be added by using the Setup/Rules screen off of the main Alpine
5898 menu.
5900 Unfortunately, Alpine does not allow all possible Rules to be defined.
5901 For example, there is no logical OR operation.
5902 OR is accomplished in the Filter Rules or the other types of Rules by
5903 simply defining two rules, one that matches the first part of the OR
5904 and another that matches the second part.
5905 But you can't do that here, since you only have a single Rule to work with.
5906 Likewise, the order of Rules is usually important.
5907 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
5908 a message, then that stops the search for a further match.
5909 This means that you may be confused if you try to use Select by Rule to
5910 check your Filter rules because the order is important when filtering but
5911 is not considered here.
5914 &lt;End of help on this topic&gt;
5915 </BODY>
5916 </HTML>
5917 ======= h_select_text =======
5918 <HTML>
5919 <HEAD>
5920 <TITLE>Select: Text</TITLE>
5921 </HEAD>
5922 <BODY>
5923 <H1>Select: Text</H1>
5925 You are selecting messages based on the contents of the message.
5926 This allows you to select a set of messages based on whether or not the
5927 message headers or message body contain specified text.
5928 You may look for text in the Subject, the From header,
5929 the To header, or the Cc header.
5930 You may also choose Recipient, which searches for the text in
5931 either the To or the Cc header;
5932 or Participant, which means either the To header, or the Cc header,
5933 or the From header.
5934 Besides those specific header searches, you may also search the entire
5935 header and text of the message with &quot;All Text&quot;, or just the
5936 body of the message with &quot;Body&quot;.
5938 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
5939 before typing the specific type of text search.
5940 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5941 search for all messages that do not contain a particular word in their
5942 Subjects.
5944 If you choose a Subject search, you may use the subject from the current
5945 message by typing the &quot;^X Cur Subject&quot; command.
5946 You may then edit it further if you wish.
5947 For example, you might select the subject of a reply and edit the
5948 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5949 the original message being replied to.
5950 All of the other header searches allow you to use addresses from the
5951 headers of the current message if you want to.
5952 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5953 &quot;^W Cur Cc&quot;.
5954 In each case, if there is more than one address, only the first is offered.
5957 &lt;End of help on this topic&gt;
5958 </BODY>
5959 </HTML>
5960 ======= h_select_status =======
5961 <HTML>
5962 <HEAD>
5963 <TITLE>Select: Status</TITLE>
5964 </HEAD>
5965 <BODY>
5966 <H1>Select: Status</H1>
5968 You are selecting messages based on the status of the message.
5969 For example, whether or not the message has been marked Deleted or Important,
5970 or whether or not it has been Answered or is New.
5971 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
5972 opposite: not Deleted, not Important, and so on.
5974 If you select Deleted messages, you will get all messages with their
5975 Deleted flag set.
5976 Likewise for Important messages, all messages that you have flagged as
5977 being Important with the
5978 <A HREF="h_common_flag">Flag</A> command.
5979 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5980 because they try to match what you see on the screen by default.
5981 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5982 and Unanswered.
5983 If you have looked at the message, or deleted it, or answered it; then it
5984 is not considered &quot;New &quot;.
5985 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5987 &quot;Answered&quot; is another one that is a little different.
5988 It means that the message has been Answered <EM>and</EM> is not deleted.
5989 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5990 the opposite of &quot;Answered&quot;!
5991 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5992 both Unanswered <EM>and</EM> not deleted.
5994 (The New and Answered options may seem counter-intuitive.
5995 The reason it is done this way is
5996 because, by default, a Deleted message will show up with the &quot;D&quot;
5997 symbol in the MAIL INDEX screen even if it is New or Answered.
5998 The Delete symbol overrides the New and Answered symbols, because you
5999 usually don't care about the message anymore once you've deleted it.
6000 Similarly, you usually only care about whether a message is Answered or
6001 not if it is not Deleted.
6002 Once it is Deleted you've put it out of your mind.)
6004 The other two options were added later because the special nature of the
6005 New flag was not what was wanted by all users.
6006 New does match what you see in the index by default, but if you use
6007 the IMAPSTATUS or SHORTIMAPSTATUS token in the
6008 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
6009 be exactly what you expect.
6010 &quot;Unseen&quot; simply selects all unseen messages, whether or not
6011 they are deleted or answered, and
6012 &quot;Recent&quot; selects all of the messages that have been added to
6013 the folder since you started this Alpine session.
6014 (That's not technically quite true. If there are multiple mail clients
6015 reading an IMAP mailbox, each message will be marked as Recent in only
6016 one of the client's sessions.
6017 That behavior can be convenienent for some purposes, like filtering, but
6018 it isn't usually what you expect when selecting.)
6021 &lt;End of help on this topic&gt;
6022 </BODY>
6023 </HTML>
6024 ======= h_index_cmd_apply =======
6025 <HTML>
6026 <HEAD>
6027 <TITLE>Apply Command</TITLE>
6028 </HEAD>
6029 <BODY>
6030 <H1>Apply Command</H1>
6032 Apply
6033 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
6034 is the second step of most aggregate operations.  Apply
6035 becomes active any time there is a defined set of selected messages.  The
6036 following commands can be applied to a selected message set: delete,
6037 undelete, reply, forward,
6038 <!--chtml if pinemode="os_windows"-->
6039 <!--chtml else--> 
6040 pipe,
6041 <!--chtml endif-->
6042 print, take address, save, export, bounce, and flag.
6045 The behavior of some of these commands in an aggregate sense is not easy to
6046 explain.  Try them out to see what they do.
6047 The feature
6048 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
6049 affects the behavior of the Apply command, as does the feature
6050 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
6053 &lt;End of help on this topic&gt;
6054 </BODY>
6055 </HTML>
6056 ======= h_index_cmd_zoom =======
6057 <HTML>
6058 <HEAD>
6059 <TITLE>ZoomMode Command</TITLE>
6060 </HEAD>
6061 <BODY>
6062 <H1>ZoomMode Command</H1>
6064 Another action you might want to take on a set of selected messages is to
6065 zoom in on them.  Like apply, zoom only becomes active when messages have
6066 been selected.
6067 ZoomMode
6068 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
6069 is a toggle command that allows you to
6070 zoom-in (and only see the selected messages) and zoom-out (to see all
6071 messages in the folder).  Neither apply nor zoom removes the markings that
6072 define the selected set; you need to use a select command in order
6073 to do that.
6076 &lt;End of help on this topic&gt;
6077 </BODY>
6078 </HTML>
6079 ======= h_index_collapse_expand =======
6080 <HTML>
6081 <HEAD>
6082 <TITLE>Collapse/Expand Command</TITLE>
6083 </HEAD>
6084 <BODY>
6085 <H1>Collapse/Expand Command</H1>
6087 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
6088 the folder is sorted by either Threads or OrderedSubject, and the
6089 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
6090 is set to something other than &quot;none&quot;.
6091 By default, this command collapses or expands the subthread that starts at
6092 the currently highlighted message, if any.
6093 If the subthread is already collapsed, then this command expands it.
6094 If the subthread is expanded, then this command collapses it.
6095 If there are no more messages below the current message in the
6096 thread tree (that is, there are no replies to the current message) then
6097 this command does nothing.
6100 The behavior of this command is affected by the option
6101 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
6102 Normally, this command Collapses or Expands the subthread that
6103 starts at the currently highlighted message.
6104 If the above option is set, then this command Collapses or Expands the
6105 entire current thread instead of just the subthread.
6106 The current thread is simply the top-level thread that contains the
6107 current message.
6110 &lt;End of help on this topic&gt;
6111 </BODY>
6112 </HTML>
6113 ======= h_index_cmd_sort =======
6114 <HTML>
6115 <HEAD>
6116 <TITLE>Sort Command</TITLE>
6117 </HEAD>
6118 <BODY>
6119 <H1>Sort Command</H1>
6121 In Alpine's generic configuration, messages are presented in the order in
6122 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
6123 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
6124 You can also re-sort the folder on demand with the sort
6125 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
6126 command.
6127 Your sorting options are:
6129 <UL>
6130  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
6131  <LI> <A HREF="h_index_sort_date">D</A>ate
6132  <LI> <A HREF="h_index_sort_subj">S</A>ubject
6133  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
6134  <LI> t<A HREF="h_index_sort_thread">H</A>read
6135  <LI> <A HREF="h_index_sort_from">F</A>rom
6136  <LI> si<A HREF="h_index_sort_size">Z</A>e
6137  <LI> scor<A HREF="h_index_sort_score">E</A>,
6138  <LI> <A HREF="h_index_sort_to">T</A>o
6139  <LI> <A HREF="h_index_sort_cc">C</A>c
6140 </UL>
6143 The Reverse option will toggle the order the index is currently
6144 sorted by, but will not change the relative sort order.
6147 Sorting a folder does not actually rearrange the way the folder is saved,
6148 it just re-arranges how the messages are presented to you.  This means
6149 that Alpine has to do the work of sorting every time you change sort order.
6150 Sometimes, especially with PC-Alpine or with large folders, this could take
6151 a while.
6154 &lt;End of help on this topic&gt;
6155 </BODY>
6156 </HTML>
6157 ======= h_index_sort_default =======
6158 <HTML>
6159 <HEAD>
6160 <TITLE>SORT OPTION: Default</TITLE>
6161 </HEAD>
6162 <BODY>
6163 <H1>SORT OPTION: Default</H1>
6165 The <EM>Default</EM> sort option just means to use the default sort order
6166 set in the
6167 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
6168 option in Setup/Config.
6171 &lt;End of help on this topic&gt;
6172 </BODY>
6173 </HTML>
6174 ======= h_index_sort_arrival =======
6175 <HTML>
6176 <HEAD>
6177 <TITLE>SORT OPTION: Arrival</TITLE>
6178 </HEAD>
6179 <BODY>
6180 <H1>SORT OPTION: Arrival</H1>
6182 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6183 in the order that they exist in the folder.  This is usually the same as the
6184 order in which they arrived.  This option is comparable to not sorting
6185 the messages at all.
6188 &lt;End of help on this topic&gt;
6189 </BODY>
6190 </HTML>
6191 ======= h_index_sort_date =======
6192 <HTML>
6193 <HEAD>
6194 <TITLE>SORT OPTION: Date</TITLE>
6195 </HEAD>
6196 <BODY>
6197 <H1>SORT OPTION: Date</H1>
6199 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6200 according to the date and time they were
6201 sent.
6204 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
6205 identical to sorting by &quot;Arrival&quot;.
6208 &lt;End of help on this topic&gt;
6209 </BODY>
6210 </HTML>
6211 ======= h_index_sort_subj =======
6212 <HTML>
6213 <HEAD>
6214 <TITLE>SORT OPTION: Subject</TITLE>
6215 </HEAD>
6216 <BODY>
6217 <H1>SORT OPTION: Subject</H1>
6219 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6220 by subject. 
6223 Messages with the same subject are
6224 first grouped together, and then the groups of like-subject messages
6225 are arranged alphabetically.
6228 Alpine ignores leading &quot;Re:&quot; and
6229 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
6230 likeness and alphabetical order of subject lines.
6233 &lt;End of help on this topic&gt;
6234 </BODY>
6235 </HTML>
6236 ======= h_index_sort_ordsubj =======
6237 <HTML>
6238 <HEAD>
6239 <TITLE>SORT OPTION: OrderedSubject</TITLE>
6240 </HEAD>
6241 <BODY>
6242 <H1>SORT OPTION: OrderedSubject</H1>
6244 The <EM>OrderedSubject</EM> sort option arranges messages in the
6245 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
6246 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
6249 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
6250 messages by the date of the oldest message in the group.
6253 This sort method provides for pseudo threading of conversations within
6254 a folder.
6255 You may want to try sorting by Thread instead.
6258 &lt;End of help on this topic&gt;
6259 </BODY>
6260 </HTML>
6261 ======= h_index_sort_thread =======
6262 <HTML>
6263 <HEAD>
6264 <TITLE>SORT OPTION: Thread</TITLE>
6265 </HEAD>
6266 <BODY>
6267 <H1>SORT OPTION: Thread</H1>
6269 The <EM>Thread</EM> sort option arranges messages in the
6270 MESSAGE&nbsp;INDEX by grouping all messages that indicate
6271 they are part of a conversation (discussion thread) taking
6272 place within a mailbox or newsgroup.  This indication is
6273 based on information in the message's header -- specifically
6274 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
6277 &lt;End of help on this topic&gt;
6278 </BODY>
6279 </HTML>
6280 ======= h_index_sort_from =======
6281 <HTML>
6282 <HEAD>
6283 <TITLE>SORT OPTION: From</TITLE>
6284 </HEAD>
6285 <BODY>
6286 <H1>SORT OPTION: From</H1>
6288 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6289 by the name of the author of the message.
6292 Messages with the same author are grouped together. Groups of
6293 messages are then put into alphabetical order according to message
6294 author.
6297 &lt;End of help on this topic&gt;
6298 </BODY>
6299 </HTML>
6300 ======= h_index_sort_size =======
6301 <HTML>
6302 <HEAD>
6303 <TITLE>SORT OPTION: Size</TITLE>
6304 </HEAD>
6305 <BODY>
6306 <H1>SORT OPTION: Size</H1>
6308 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6309 by their relative sizes.
6312 &lt;End of help on this topic&gt;
6313 </BODY>
6314 </HTML>
6315 ======= h_index_sort_score =======
6316 <HTML>
6317 <HEAD>
6318 <TITLE>SORT OPTION: Score</TITLE>
6319 </HEAD>
6320 <BODY>
6321 <H1>SORT OPTION: Score</H1>
6323 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6324 by their scores.
6327 Messages with the same score are sorted in arrival order.
6328 Scores are something you create using the
6329 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
6332 &lt;End of help on this topic&gt;
6333 </BODY>
6334 </HTML>
6335 ======= h_index_sort_to =======
6336 <HTML>
6337 <HEAD>
6338 <TITLE>SORT OPTION: To</TITLE>
6339 </HEAD>
6340 <BODY>
6341 <H1>SORT OPTION: To</H1>
6343 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
6344 by the names of the recipients of the message.
6347 Messages with the same recipients are grouped together. Groups of
6348 messages are then put into alphabetical order according to message
6349 recipients.
6352 &lt;End of help on this topic&gt;
6353 </BODY>
6354 </HTML>
6355 ======= h_index_sort_cc =======
6356 <HTML>
6357 <HEAD>
6358 <TITLE>SORT OPTION: Cc</TITLE>
6359 </HEAD>
6360 <BODY>
6361 <H1>SORT OPTION: Cc</H1>
6363 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
6364 the names of the carbon copy addresses of the message.
6367 &lt;End of help on this topic&gt;
6368 </BODY>
6369 </HTML>
6370 ======= h_index_cmd_whereis =======
6371 <HTML>
6372 <HEAD>
6373 <TITLE>WhereIs Command</TITLE>
6374 </HEAD>
6375 <BODY>
6376 <H1>WhereIs Command</H1>
6378 The WhereIs
6379 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6380 command lets you search the MESSAGE INDEX for a word.
6381 It scans through whatever you see, usually the name of the author
6382 and the Subject line.
6383 WhereIs has special subcommands to let you find the beginning of the
6384 index (Ctrl-Y -- first message)
6385 or the end of the index (Ctrl-V -- last message).
6387 Note that WhereIs only searches through the visible text on the screen.
6388 For example, if only part of the Subject of a message is shown because it
6389 is long, then only the visible portion of the Subject is searched.
6390 Also note that WhereIs does not &quot;see&quot; the 
6391 &quot;X&quot; in column one of Index entries for selected messages
6392 so it can't be used to search for
6393 selected messages (use &quot;Zoom&quot; instead).
6395 If the feature
6396 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6397 is turned on,
6398 WhereIs can also be used as a quick way to select messages that match the
6399 string being searched for.
6400 Instead of typing carriage return to search for the next match, type
6401 Ctrl-X to select all matches.
6402 Once again, this only selects matches that are (or would be if the right
6403 index line was on the screen) visible.
6404 Truncated From lines or Subjects will cause matches to be missed.
6405 Although WhereIs is sometimes convenient for quick matching, the Select
6406 command is usually more powerful and usually faster.
6409 &lt;End of help on this topic&gt;
6410 </BODY>
6411 </HTML>
6412 ======= h_view_cmd_whereis =======
6413 <HTML>
6414 <HEAD>
6415 <TITLE>WhereIs Command</TITLE>
6416 </HEAD>
6417 <BODY>
6418 <H1>WhereIs Command</H1>
6420 The WhereIs
6421 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6422 command does a &quot;find in current message&quot; operation.  You
6423 type in text and Alpine will try to find it in the message you are
6424 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
6425 or end (Ctrl-V) of the message.
6426 That is, to rapidly move to the end of a message, hit the 
6427 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6428 (or Ctrl-W) key followed
6429 by Ctrl-V.  Similarly,
6430 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6431 followed by Ctrl-Y will take you to the beginning of a message.
6434 &lt;End of help on this topic&gt;
6435 </BODY>
6436 </HTML>
6437 ======= h_view_cmd_hilite =======
6438 <HTML>
6439 <HEAD>
6440 <TITLE>View Hilite and Next item/Previous item</TITLE>
6441 </HEAD>
6442 <BODY>
6443 <H1>View Hilite and Next item/Previous item</H1>
6445 Sometimes messages may be in the form of formatted HTML text
6446 or they may contain URLs or Web server hostnames.
6447 When any of the features
6448 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
6449 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
6450 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
6452 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
6453 are enabled, Alpine will represent such selectable items in the text
6454 in bold typeface.  One of the selectable items will be displayed in
6455 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
6456 Press the Return key to view the currently selected item.
6459 The Up and Down Arrows keys can be used to change the selected item
6460 (also see the feature
6461 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
6462 If there are no selectable items in the direction of the arrow you
6463 pressed, Alpine will scroll the display in that direction until one
6464 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
6465 items in the message text, use the Previous and Next item commands,
6466 <!--chtml if pinemode="function_key"-->F5 and F6
6467 <!--chtml else-->^B and ^F<!--chtml endif-->.
6470 &lt;End of help on this topic&gt;
6471 </BODY>
6472 </HTML>
6473 ======= h_view_cmd_viewattch =======
6474 <HTML>
6475 <HEAD>
6476 <TITLE>ViewAttch Command</TITLE>
6477 </HEAD>
6478 <BODY>
6479 <H1>ViewAttch Command</H1>
6482 The View/Save Attachment
6483 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
6484 command allows you to handle MIME attachments to a message you have
6485 received.  Alpine shows you a list of the message attachments -- you just
6486 choose the attachment you want.  You may either view or save the
6487 selected attachment.
6490 Because many attachments require external programs for display, there
6491 is some system configuration that has to happen before you can
6492 actually display attachments.  Hopefully much of that will have been
6493 done already by your system administrator.  MIME configuration is
6494 handled with the &quot;mailcap&quot; configuration file.  (See the section 
6495 on configuration in the
6496 <A HREF="h_news">release notes</A> for more information.)
6499 &lt;End of help on this topic&gt;
6500 </BODY>
6501 </HTML>
6502 ======= h_index_cmd_expunge =======
6503 <HTML>
6504 <HEAD>
6505 <TITLE>Expunge/Exclude Command</TITLE>
6506 </HEAD>
6507 <BODY>
6508 <H1>Expunge/Exclude Command</H1>
6510 Expunge/Exclude
6511 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
6512 is the command Alpine uses to actually remove all messages
6513 marked for deletion.  With regular email files, expunge literally deletes
6514 the text from the current folder.  With newsgroups or shared mailboxes,
6515 you don't have permission to actually remove the message, so it is an
6516 exclude -- Alpine removes the message from your view of the folder even
6517 though it is not technically gone.
6519 <P> A selective expunge command is available in IMAP folders that support 
6520 the UID EXPUNGE extension in <A 
6521 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
6522 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
6523 as a subcommand of the apply command. If some selected messages are marked 
6524 deleted, then the apply command will offer the eXpunge command, which when 
6525 executed will only expunge those messages that are selected and deleted.
6527 <P> 
6528 Observe that the expunge command (when not used from the apply command) 
6529 will expunge/exclude all deleted messages from the folder, and so all 
6530 messages marked deleted will be expunged, regardless of if they are 
6531 selected or not. In other words, there is no protection against 
6532 potentially expunging more messages than only those that have been 
6533 selected and deleted.
6536 The configuration features
6537 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
6539 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
6540 affect the behavior of the Expunge command.
6543 &lt;End of help on this topic&gt;
6544 </BODY>
6545 </HTML>
6546 ======= h_common_compose =======
6547 <HTML>
6548 <HEAD>
6549 <TITLE>Compose Command</TITLE>
6550 </HEAD>
6551 <BODY>
6552 <H1>Compose Command</H1>
6554 The Compose command takes you into the Alpine message composer where you
6555 can start a new message for sending.  This is where you type in the
6556 message's text and specify its recipient list (the &quot;To:&quot;
6557 address), where copies should be directed (e.g., &quot;Fcc&quot;,
6558 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
6559 be attached to the message.
6562 When you type this command, Alpine will also automatically check for any
6563 interrupted (i.e., a message that was being composed when your modem
6564 or network connection was broken) or previously postponed messages and
6565 offer you a chance to continue working on those.
6568 <UL>   
6569 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6570 </UL><P>
6571 &lt;End of help on this topic&gt;
6572 </BODY>
6573 </HTML>
6574 ======= h_common_index =======
6575 <HTML>
6576 <HEAD>
6577 <TITLE>Message Index Command</TITLE>
6578 </HEAD>
6579 <BODY>
6580 <H1>Message Index Command</H1>
6582 The Index command takes you to the MESSAGE INDEX screen that displays a
6583 summary caption for each message in the currently-open folder. One
6584 message will be highlighted; this is the &quot;Current&quot; message.
6585 The message commands available from this screen (e.g. View, Reply,
6586 Forward, Delete, Print, Save, etc) apply to the current message.
6589 &lt;End of help on this topic&gt;
6590 </BODY>
6591 </HTML>
6592 ======= h_common_folders =======
6593 <HTML>
6594 <HEAD>
6595 <TITLE>Folder List Command</TITLE>
6596 </HEAD>
6597 <BODY>
6598 <H1>Folder List Command</H1>
6600 This Folder List command takes you to the FOLDER LIST screen that displays
6601 the names of all your message folders and allows you to view, rename,
6602 delete, and add folders.  You can open (view) a different folder than the
6603 one currently open by highlighting the desired one (using the arrow keys
6604 or their control-key equivalents) and pressing RETURN.
6607 If you have multiple folder collections defined (see the Help text for
6608 the FOLDER LIST screen to learn more about Collections), you may need
6609 to press Return to expand the collection and display all of the
6610 folders in it.
6613 &lt;End of help on this topic&gt;
6614 </BODY>
6615 </HTML>
6616 ======= h_main_addrbook =======
6617 <HTML>
6618 <HEAD>
6619 <TITLE>Address Book Command</TITLE>
6620 </HEAD>
6621 <BODY>
6622 <H1>Address Book Command</H1>
6624 This command, available only from the MAIN MENU, takes you
6625 to the ADDRESS BOOK management screen.  From here, your personal address
6626 book(s) may be updated.
6629 &lt;End of help on this topic&gt;
6630 </BODY>
6631 </HTML>
6632 ======= h_main_setup =======
6633 <HTML>
6634 <HEAD>
6635 <TITLE>Setup Command</TITLE>
6636 </HEAD>
6637 <BODY>
6638 <H1>Setup Command</H1>
6640 The Setup command, available only from the MAIN MENU, prompts you for
6641 one of several configuration screens, including the SETUP CONFIGURATION 
6642 screen, by which you may activate optional Alpine features.
6645 &lt;End of help on this topic&gt;
6646 </BODY>
6647 </HTML>
6648 ======= h_main_release_notes =======
6649 <HTML>
6650 <HEAD>
6651 <TITLE>Release Notes Command</TITLE>
6652 </HEAD>
6653 <BODY>
6654 <H1>Release Notes Command</H1>
6656 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
6657 as well as pointers to further information such as history and legal notes.
6660 &lt;End of help on this topic&gt;
6661 </BODY>
6662 </HTML>
6663 ======= h_main_kblock =======
6664 <HTML>
6665 <HEAD>
6666 <TITLE>Keyboard Lock Command</TITLE>
6667 </HEAD>
6668 <BODY>
6669 <H1>Keyboard Lock Command</H1>
6671 This command allows your Alpine session to be protected
6672 during a temporary absence from your terminal.
6675 &lt;End of help on this topic&gt;
6676 </BODY>
6677 </HTML>
6678 ======= h_main_journal =======
6679 <HTML>
6680 <HEAD>
6681 <TITLE>Journal Command</TITLE>
6682 </HEAD>
6683 <BODY>
6684 <H1>Journal Command</H1>
6686 This command displays a list of all the status messages Alpine has
6687 displayed (on the third line from the bottom of the screen). This may
6688 be useful if a message disappeared before you had a chance to read it.
6691 &lt;End of help on this topic&gt;
6692 </BODY>
6693 </HTML>
6694 ======= h_common_role =======
6695 <HTML>
6696 <HEAD>
6697 <TITLE>Role Command</TITLE>
6698 </HEAD>
6699 <BODY>
6700 <H1>Role Command</H1>
6702 The Role command is similar to the Compose command except that it starts
6703 off by letting you select a <A HREF="h_rules_roles">role</A>
6704 to be used for the composition.
6705 You may set up alternate roles by using Setup/Rules/Roles.
6708 &lt;End of help on this topic&gt;
6709 </BODY>
6710 </HTML>
6711 ======= h_common_conditional_cmds =======
6712 <HTML>
6713 <HEAD>
6714 <TITLE>Conditional Commands</TITLE>
6715 </HEAD>
6716 <BODY>
6717 <H1>Conditional Commands</H1>
6719 The presence or absence of certain commands, particularly in the
6720 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
6721 whether or not specific features are set in your Alpine configuration.  
6722 (You can access the SETUP CONFIGURATION screen, where they are found, from 
6723 Alpine's MAIN MENU.)  To see if a desired command's availability is
6724 conditioned on a feature setting, see the command's help text (highlight
6725 the phrase associated with the command and hit Return).
6728 Also note that some
6729 commands may be administratively disabled by your system manager;
6730 if they don't work, please check with your local help desk.
6733 <UL>   
6734 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6735 </UL><P>
6736 &lt;End of help on this topic&gt;
6737 </BODY>
6738 </HTML>
6739 ======= h_common_pipe =======
6740 <HTML>
6741 <HEAD>
6742 <TITLE>Pipe Command</TITLE>
6743 </HEAD>
6744 <BODY>
6745 <H1>Pipe Command</H1>
6747 Pipe
6748 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
6749 allows you to send a message to a specified Unix command for external
6750 processing.
6751 This command's availability is controlled by the
6752 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
6753 feature.
6754 By default, the processed text of the message is sent to the command
6755 you specify and the output is captured by Alpine and shown to you.
6756 When you run the pipe command, there are some sub-commands which may be
6757 used to alter this behavior.
6758 These sub-commands are described <A HREF="h_pipe_command">here</A>.
6761 &lt;End of help on this topic&gt;
6762 </BODY>
6763 </HTML>
6764 ======= h_common_goto =======
6765 <HTML>
6766 <HEAD>
6767 <TITLE>Goto Command</TITLE>
6768 </HEAD>
6769 <BODY>
6770 <H1>Goto Command</H1>
6772 Goto
6773 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
6774 is the command that lets you bypass Alpine's folder selection screens
6775 and jump directly to a new folder.  You can select any folder in the
6776 world: one in your current collection, one in a different collection or
6777 one in a collection you've never even used before.
6780 Alpine will help you as much as possible to narrow in on the folder you want.
6781 However, if the folder is outside of your defined collections, you are
6782 going to have to enter the exact folder location using the correct
6783 <A HREF="h_valid_folder_names">syntax</A>
6784 for a remote folder and/or fully-qualified path name.
6787 &lt;End of help on this topic&gt;
6788 </BODY>
6789 </HTML>
6790 ======= h_common_nextnew =======
6791 <HTML>
6792 <HEAD>
6793 <TITLE>NextNew Command</TITLE>
6794 </HEAD>
6795 <BODY>
6796 <H1>NextNew Command</H1>
6798 When you press the TAB key, Alpine advances to the next
6799 &quot;interesting&quot; message.
6800 This will be the next message you have not seen before, or the next message
6801 you have flagged Important, whichever comes first.
6802 Unread messages that have been deleted are not considered interesting.
6803 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
6804 articles after you have read them if you want to remove them from future
6805 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
6806 more information.)
6809 The NextNew command is affected by the feature
6810 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
6811 which causes Alpine to only consider Unread messages interesting, not messages
6812 flagged Important.
6815 This command behaves a little differently when it finds there are no more
6816 interesting messages left in the current folder.
6817 If the current folder is one of your Incoming Message Folders
6818 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
6819 or it is a newsgroup, then Alpine will try to find the next folder or
6820 newsgroup that contains <EM>Recent</EM> messages and will ask you
6821 if you want to open that folder.
6822 This behavior may be modified by using the
6823 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
6824 feature that causes Alpine to look for Unseen messages instead of Recent
6825 messages.
6826 The NextNew command's behavior is also affected by the configuration features
6827 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
6829 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
6832 &lt;End of help on this topic&gt;
6833 </BODY>
6834 </HTML>
6835 ======= h_common_jump =======
6836 <HTML>
6837 <HEAD>
6838 <TITLE>Jump Command</TITLE>
6839 </HEAD>
6840 <BODY>
6841 <H1>Jump Command</H1>
6843 This is Alpine's way of allowing you to go straight to a specific message.
6844 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
6845 configured such that typing in any number automatically jumps you to that
6846 message 
6847 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
6848 in the SETUP CONFIGURATION).
6851 &lt;End of help on this topic&gt;
6852 </BODY>
6853 </HTML>
6854 ======= h_common_flag =======
6855 <HTML>
6856 <HEAD>
6857 <TITLE>Flag Command</TITLE>
6858 </HEAD>
6859 <BODY>
6860 <H1>Flag Command</H1>
6862 Flag
6863 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6864 is the command that allows users to manipulate the status flags that
6865 appear on the left side of the MESSAGE INDEX screen.  The most common
6866 use of this is to mark a message as important. This is something of a
6867 note to yourself to get back to that message.  You may also use the
6868 flag command to set (or unset) the flags that indicate that a message
6869 is new, answered, deleted, or forwarded.<P>
6871 Provided the mail server supports it,
6872 you may also manipulate user-defined keywords
6873 for a message using the flag command.
6874 These keywords will be available if you use the Flag Details screen that you
6875 can get to after typing the
6876 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
6877 command.
6878 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
6879 which are always present.
6880 You may add new keywords by using the Add KW command from the Flag Details screen
6881 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
6883 The availability of the flag command is determined by the
6884 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
6885 feature in your Alpine configuration. Also, it is possible that Flag could be
6886 administratively disabled by your system manager; if it doesn't work,
6887 please check with your local help desk before reporting a bug.
6888 The behavior of the flag command may be modified by the
6889 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
6890 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
6893 &lt;End of help on this topic&gt;
6894 </BODY>
6895 </HTML>
6896 ======= h_common_hdrmode =======
6897 <HTML>
6898 <HEAD>
6899 <TITLE>HdrMode Command</TITLE>
6900 </HEAD>
6901 <BODY>
6902 <H1>HdrMode Command</H1>
6904 Every email message comes with some header lines that you normally
6905 don't see (and don't want to see).
6906 These include anywhere from 3-20 lines (or more) added by the
6907 Internet mail transport system to record the route your message took,
6908 for diagnostic purposes.
6909 These are normally of no import and simply
6910 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
6911 This also includes other non-standard headers the message may contain.
6912 If you want to see these headers, there is a way to reveal them.
6915 The Header Mode
6916 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6917 command is a toggle that controls Alpine's handling of these header
6918 lines.  Normally, full headers is &quot;off&quot; and you only see a
6919 few lines about who a message is to and who it is from.  When you
6920 press
6921 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
6922 to turn full headers on, Alpine will show you
6923 the normal header lines as well as delivery headers, comment headers,
6924 MIME headers, and any other headers present.
6927 Several different Alpine commands honor the header mode -- it affects how
6928 messages are displayed, how they appear in forward and reply email, how
6929 they are printed, how they are saved, and how they are exported.
6930 <!--chtml if pinemode="os_windows"-->
6931 <!--chtml else--> 
6932 The pipe command is also affected.
6933 <!--chtml endif-->
6936 The presence or absence of the Header Mode command is determined by the
6937 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
6938 Feature-List option in your Alpine configuration.
6941 If you have also turned on the
6942 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
6943 option then the HdrMode command actually rotates through three states
6944 instead of just two.
6945 The first is the normal view with long quotes suppressed.
6946 The second is the normal view but with the long quotes included.
6947 The last enables the display of all headers in the message.
6948 When using Export, Pipe, Print, Forward, or Reply the quotes are
6949 never suppressed, so the first two states are identical.
6952 The behavior of the Header Mode command may be altered slightly by
6953 turning on the
6954 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
6955 Feature-List option in your Alpine configuration.
6956 In particular, it will cause the Header Mode to be persistent when moving
6957 from message to message instead of resetting to the default for each message.
6960 <UL>   
6961 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6962 </UL><P>
6963 &lt;End of help on this topic&gt;
6964 </BODY>
6965 </HTML>
6966 ======= h_common_print =======
6967 <HTML>
6968 <HEAD>
6969 <TITLE>Print Command</TITLE>
6970 </HEAD>
6971 <BODY>
6972 <H1>Print Command</H1>
6974 The Print
6975 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
6976 command allows you to print a copy of a message.
6977 There are many SETUP CONFIGURATION features that affect the
6978 Print command, including
6979 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
6980 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
6981 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
6982 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
6983 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
6984 You set up for printing by using the Printer option of the Setup command
6985 on the MAIN MENU.
6989 &lt;End of help on this topic&gt;
6990 </BODY>
6991 </HTML>
6992 ======= h_common_take =======
6993 <HTML>
6994 <HEAD>
6995 <TITLE>TakeAddr Command</TITLE>
6996 </HEAD>
6997 <BODY>
6998 <H1>TakeAddr Command</H1>
7001 With the Take Address
7002 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
7003 command, you can extract email addresses from an
7004 incoming message and save them in an address book.  This is an easy way
7005 to add to your address book and avoid having to remember the email
7006 addresses of the people who write to you.
7009 If the message is just to you individually, then you will only need to
7010 provide a nickname.  If the message contains more than one email address,
7011 then you will see an address
7012 selection screen that lets you choose the address you want to save into
7013 your address book, or lets you choose several of them add to a
7014 personal distribution list.
7017 Once you've added an entry to your address book, you can use it from the
7018 message composer by typing the nickname of the entry into one of the
7019 header fields (for example, into the To: field), or you can use ^T from
7020 the header field to select the entry from your address book.
7023 If the configuration feature
7024 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
7025 is set, the behavior of the Take command is altered slightly.
7028 &lt;End of help on this topic&gt;
7029 </BODY>
7030 </HTML>
7031 ======= h_ge_import =======
7032 <HTML>
7033 <HEAD>
7034 <TITLE>Import File Selection</TITLE>
7035 </HEAD>
7036 <BODY>
7037 <H1>Import File Selection</H1>
7039 You are importing a file that you previously
7040 exported from Alpine.
7041 You are now being asked for the name of that file.
7042 The easiest way to select a file is probably with the &quot;^T&quot;
7043 &quot;To Files&quot; command.
7044 Alternatively, you may type in a file name.
7045 It may be an absolute pathname.
7046 Otherwise, it is a file located in your home directory
7047 or current working directory
7048 <!--chtml if pinemode="running"-->
7049 (which, at least for your current Alpine &quot;session,&quot; 
7050 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7051 <!--chtml endif-->, depending on the
7052 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7053 In any case, you finish by typing a carriage return to accept the
7054 file name that is displayed.
7055 When the feature
7056 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7057 is turned on you may use TAB to complete partially typed in names.
7059 You may cancel the import operation by typing &quot;^C&quot; after exiting
7060 this help.
7062 &lt;End of help on this topic&gt;
7063 </BODY>
7064 </HTML>
7065 ======= h_ge_allparts =======
7066 <HTML>
7067 <HEAD>
7068 <TITLE>Export Message File Selection</TITLE>
7069 </HEAD>
7070 <BODY>
7071 <H1>Export Message File Selection</H1>
7073 You are Exporting a message from an Alpine mail folder
7074 to a plain text file.
7075 You also have the option of exporting all of the attachments associated
7076 with the message.
7077 You are now being asked for the name of the file to export <EM>to</EM>.
7078 The easiest way to select a file is probably with the &quot;^T&quot;
7079 &quot;To Files&quot; subcommand.
7080 After returning from that subcommand you will still be allowed to
7081 edit the name you have selected.
7082 Alternatively, you may type in a file name.
7083 It may be an absolute pathname.
7084 Otherwise, it is a file located in your home directory
7085 or current working directory
7086 <!--chtml if pinemode="running"-->
7087 (which, at least for your current Alpine &quot;session,&quot; 
7088 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7089 <!--chtml endif-->, depending on the
7090 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7091 In any case, you finish by typing a carriage return to accept the
7092 file name that is displayed.
7093 When the feature
7094 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7095 is turned on you may use TAB to complete partially typed in names.
7097 The message you are exporting appears to have some attachments.
7098 If you wish to save <EM>all</EM> of the attachments at once,
7099 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
7100 saving of the attachments.
7101 You may turn it back off by typing &quot;^P&quot; again, which will now
7102 be labeled &quot;NoAllParts&quot; instead.
7103 If you want to save the parts the command displayed should be
7104 &quot;NoAllParts&quot;!
7105 When you choose to save attachments like this, the attachments will be saved
7106 in a newly created directory.
7107 That directory will have the same name as the file name you choose here,
7108 with the letters &quot;.d&quot; appended.
7109 If that directory already exists, then the letters &quot;.d_1&quot; will
7110 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
7111 is found.
7112 For example, if you select the file name
7114 <CENTER><SAMP>filename</SAMP></CENTER>
7116 to export the message to, then the directory used for the attachments will be
7118 <CENTER><SAMP>filename.d</SAMP></CENTER>
7120 or perhaps
7122 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
7124 The attachments will then be put into files inside that directory.
7125 The names for the attachment files will be derived from the attachments
7126 if possible.
7127 This is done in the same way as the default values are derived if you
7128 save them one at a time.
7129 (The &quot;filename&quot; parameter from the Content-Disposition header
7130 is the first choice. If that doesn't exist, the &quot;name&quot;
7131 parameter from the Content-Type header is used.)
7132 If a name for a particular attachment is not available, then the
7133 part number of the attachment is used, with the characters &quot;part_&quot;
7134 prepended.
7135 An example of that would be
7137 <CENTER><SAMP>part_2.1</SAMP></CENTER>
7139 If you want to save only some of the attachments or if you want more control
7140 over the directory and filename where an attachment is saved you may
7141 cancel out of this command and View the attachment list.
7142 From there you can save each attachment individually.
7144 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7145 this help.
7147 &lt;End of help on this topic&gt;
7148 </BODY>
7149 </HTML>
7150 ======= h_ge_export =======
7151 <HTML>
7152 <HEAD>
7153 <TITLE>Export File Selection</TITLE>
7154 </HEAD>
7155 <BODY>
7156 <H1>Export File Selection</H1>
7158 You are Exporting or Saving something from within the Alpine world
7159 (a message, an attachment, etc.)
7160 to a plain text file.
7161 You are now being asked for the name of the file to export <EM>to</EM>.
7162 The easiest way to select a file is probably with the &quot;^T&quot;
7163 &quot;To Files&quot; subcommand.
7164 After returning from that subcommand you will still be allowed to
7165 edit the name you have selected.
7166 Alternatively, you may type in a file name.
7167 It may be an absolute pathname.
7168 Otherwise, it is a file located in your home directory
7169 or current working directory
7170 <!--chtml if pinemode="running"-->
7171 (which, at least for your current Alpine &quot;session,&quot; 
7172 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7173 <!--chtml endif-->, depending on the
7174 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7175 In any case, you finish by typing a carriage return to accept the
7176 file name that is displayed.
7177 When the feature
7178 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7179 is turned on you may use TAB to complete partially typed in names.
7181 If the object you are exporting is a message with some attachments,
7182 you may wish to save all of the attachments by typing the &quot;^P&quot;
7183 &quot;AllParts&quot; command to turn on saving of the attachments.
7184 This subcommand will only be visible if the message actually has attachments.
7185 You may also View the attachment list and save individual attachments from
7186 there.
7188 If you are SAVING a text part (text/plain, text/html, etc.) you can use
7189 the Control-R subcommand to toggle if saving will be done in binary mode,
7190 meaning that the attachment will be decoded, but will not be transformed
7191 to UTF-8 for further processing (either in internal filters, or user
7192 supplied filters.) This is useful in case you either want to preserve
7193 the text as it was encoded originally to you, or the attachment was
7194 incorrectly attached (the attachment is not of text type) and you need
7195 the original text to process the attachment.
7197 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7198 this help.
7200 &lt;End of help on this topic&gt;
7201 </BODY>
7202 </HTML>
7203 ======= h_common_save =======
7204 <HTML>
7205 <HEAD>
7206 <TITLE>Save and Export Commands</TITLE>
7207 </HEAD>
7208 <BODY>
7209 <H1>Save and Export Commands</H1>
7211 Save
7212 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
7213 and Export
7214 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
7215 are the two alternatives Alpine gives you to keep a copy of the message
7216 you are reading. If you want to keep the message within Alpine's email
7217 world, use &quot;Save&quot;; if you want to use the message in another
7218 program, use &quot;Export&quot;.
7221 When you Save a message, it is put into an existing folder or into a new
7222 folder in one of your existing folder collections.  The message stays in
7223 email format and can be read by Alpine again.  Alpine may use a special format
7224 for its mail folders -- never edit an Alpine folder by hand or with any
7225 program other than Alpine.  The exact behavior of the Save command can be
7226 configured with the
7227 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
7228 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
7229 and 
7230 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
7231 feature list settings.
7232 The name of the folder offered as a default is controlled by the option
7233 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
7236 When you use Export, the message is placed in a plain text file in your
7237 home directory 
7238 <!--chtml if pinemode="running"-->
7239 (which, in the present configuration of your system, is
7240  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7241 <!--chtml endif-->
7242 or current working directory
7243 <!--chtml if pinemode="running"-->
7244 (which, at least for your current Alpine &quot;session,&quot; 
7245 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7246 <!--chtml endif-->, depending on the
7247 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7248 configuration setting.  In the normal case, only minimal
7249 headers are exported with the message; however, if the full header mode 
7250 (whose availability may be disabled  by setting the feature 
7251 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
7252 in SETUP CONFIGURATION) is
7253 toggled on, then complete headers are exported along with the message
7254 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
7255 defined, they may affect the contents of the exported file.)
7258 &lt;End of help on this topic&gt;
7259 </BODY>
7260 </HTML>
7261 ======= h_common_bounce =======
7262 <HTML>
7263 <HEAD>
7264 <TITLE>Bounce Command</TITLE>
7265 </HEAD>
7266 <BODY>
7267 <H1>Bounce Command</H1>
7269 The Bounce 
7270 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
7271 command allows you to re-send, or &quot;remail&quot;, a
7272 message, as if you were never in the loop.  It is analogous to crossing
7273 out your address on a postal letter, writing a different address on the
7274 envelope, and putting it into the mailbox. Bounce is used primarily to
7275 redirect email that was sent to you in error.
7276 Also, some owners of email
7277 lists need the bounce command to handle list traffic.
7278 Bounce is not anonymous.
7279 A ReSent-From header is added to the message so that the recipient may
7280 tell that you Bounced it to them.
7283 The presence or absence of the Bounce command is determined by the
7284 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
7285 feature in your Alpine configuration.
7286 The feature
7287 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
7288 affects the behavior of the Bounce command.
7289 Also, it is possible that Bounce could be
7290 administratively disabled by your system manager; if it doesn't work,
7291 please check with your local help desk before reporting a bug.
7294 &lt;End of help on this topic&gt;
7295 </BODY>
7296 </HTML>
7297 ======= h_common_reply =======
7298 <HTML>
7299 <HEAD>
7300 <TITLE>Reply and Forward Commands</TITLE>
7301 </HEAD>
7302 <BODY>
7304 <H1>Reply and Forward Commands</H1>
7306 Replying 
7307 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
7308 and Forwarding 
7309 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
7310 are your two alternatives for following up on the
7311 message you are reading.  You would use reply if you want to get email
7312 back to the author of the message and/or the other people who have
7313 already seen it.  You use forward if you want somebody new to see the
7314 message.
7317 In the normal case, the only thing that you must supply when forwarding a
7318 message is the name/email address of the new recipient.
7319 Alpine will include the text of the forwarded message.
7320 Alpine will also include any attachments to the message.
7321 There is space above the forwarded text for you to include additional comments.
7324 When replying, you usually have to answer some questions.
7325 If the message is to multiple people and/or specified with a Reply-To: header,
7326 then you will have to decide who should get the reply.
7327 You also need to decide whether or not to include the previous
7328 message in your reply.
7329 Some of this is configurable.
7330 Specifically, see the
7331 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
7332 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
7333 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
7335 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
7336 configuration features.
7339 Both the Reply and Forward commands react to the full header mode toggle.
7340 If the full header mode is on, then all the header and delivery lines are
7341 included with the text of the message in your reply/forward.
7344 Other configuration features that affect the Reply command are
7345 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
7346 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
7347 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
7350 &lt;End of help on this topic&gt;
7351 </BODY>
7352 </HTML>
7353 ======= h_common_delete =======
7354 <HTML>
7355 <HEAD>
7356 <TITLE>Delete and Undelete Commands</TITLE>
7357 </HEAD>
7358 <BODY>
7359 <H1>Delete and Undelete Commands</H1>
7361 Delete 
7362 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
7363 and Undelete 
7364 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
7365 allow you to change the Deleted flag for the current message.
7366 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
7367 removes the mark.
7368 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
7369 at the left hand edge of the index line.
7370 When viewing a deleted message, the letters &quot;DEL&quot; will be present
7371 in the upper right hand corner of the screen.
7372 Delete simply <EM>marks</EM> a message Deleted, it does not actually
7373 get rid of the message.
7374 The eXpunge command (available from the MESSAGE INDEX screen) actually
7375 removes all of the deleted messages in a folder.
7376 Once a message is eXpunged, it can't be retrieved.
7379 The Delete command is affected by the setting of the configuration feature
7380 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
7383 &lt;End of help on this topic&gt;
7384 </BODY>
7385 </HTML>
7386 ======= h_common_postpone =======
7387 <HTML>
7388 <HEAD>
7389 <TITLE>Postpone Command</TITLE>
7390 </HEAD>
7391 <BODY>
7392 <H1>Postpone Command</H1>
7394 The postpone
7395 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
7396 command allows you to temporarily stop working on the current
7397 message so you may read
7398 other messages or compose another message.  When you want to resume a
7399 message later, start to compose and answer &quot;yes&quot; to the
7400 &quot;Continue postponed composition?&quot; question.  You may
7401 postpone as many messages as you like.
7404 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
7405 in the Setup/Config screen, then the Postpone command will prompt you for
7406 the folder in which to store your outgoing message.
7409 &lt;End of help on this topic&gt;
7410 </BODY>
7411 </HTML>
7412 ======= h_compose_cancel =======
7413 <HTML>
7414 <HEAD>
7415 <TITLE>Cancel Command</TITLE>
7416 </HEAD>
7417 <BODY>
7418 <H1>Cancel Command</H1>
7420 Cancel
7421 <!--chtml if pinemode="function_key"-->
7422 (F2)
7423 <!--chtml else-->
7424 (^C) 
7425 <!--chtml endif-->
7427 The Cancel command returns you to Alpine's normal mail processing and
7428 causes the message currently under composition to be thrown out.
7429 The message text <EM>will be lost</EM>.
7432 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
7433 will be preserved in the file named
7434 <!--chtml if pinemode="os_windows"-->
7435 &quot;DEADLETR&quot;.
7436 <!--chtml else-->
7437 &quot;dead.letter&quot; in your home directory.
7438 <!--chtml endif-->
7439 If you unintentionally cancel a message, look there for its text.
7442 &lt;End of help on this topic&gt;
7443 </BODY>
7444 </HTML>
7445 ======= h_compose_addrcomplete =======
7446 <HTML>
7447 <HEAD>
7448 <TITLE>Address Completion</TITLE>
7449 </HEAD>
7450 <BODY>
7451 <H1>Address Completion</H1>
7453 When entering addresses in the address fields of the composer (To, Cc, etc.)
7454 the TAB key may be used to help complete the address.
7455 Type a partial nickname and tap the TAB key to complete the typing.
7456 The unambiguous part of the name will be filled in automatically.
7457 Typing TAB twice in succession will bring up a selection list of possibilities,
7458 making it easy to find and choose the correct address.
7461 The matching algorithm is rather ad hoc.
7462 The search starts with a search of your address book.
7463 It counts as a match if the nickname, address, or fullname field of an
7464 entry begins with the text typed in so far. It is also a match if
7465 a later word in the fullname (for example, the middle name or last name)
7466 begins with the entered text.
7468 Next comes an LDAP search.
7469 The search will happen for any servers that have the
7470 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
7471 feature set. You can set or unset the feature for each server independently
7472 in the Setup/Directory screen.
7474 Finally, if you are replying to or forwarding a message, that message is
7475 searched for likely candidate addresses that match the typed-in text.
7478 &lt;End of help on this topic&gt;
7479 </BODY>
7480 </HTML>
7481 ======= h_compose_richhdr =======
7482 <HTML>
7483 <HEAD>
7484 <TITLE>Rich Header Command</TITLE>
7485 </HEAD>
7486 <BODY>
7487 <H1>Rich Header Command</H1>
7489 The Rich Header command allows you to toggle between the list of 
7490 all message headers available for editing and those that are most
7491 common.
7494 Use this toggle to expose headers that are not normally visible by
7495 default.
7496 This set usually includes the
7497 &quot;Bcc:&quot;,
7498 &quot;Fcc:&quot;,
7499 &quot;Lcc:&quot;,
7500 and &quot;Newsgroups&quot;
7501 headers.
7502 If you are posting to a newsgroup the set of defaults is a little different.
7503 Obviously, in that case, the Newsgroups header is of interest so is not
7504 hidden.
7505 For news posting the hidden set includes the
7506 &quot;To:&quot;,
7507 &quot;Cc:&quot;,
7508 &quot;Bcc:&quot;,
7509 &quot;Fcc:&quot;,
7510 and &quot;Lcc:&quot;
7511 headers.
7512 You won't normally want to edit these, which is why they are hidden,
7513 but it is sometimes useful to be able to set them manually.
7516 The default sets of headers listed above can be altered.
7517 Any header that you have added to the
7518 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
7519 option, but not to the
7520 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
7521 option will appear when you use the Rich Headers command to
7522 make the Rich Headers visible.
7523 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
7524 even without toggling the Rich Headers command.)
7527 &lt;End of help on this topic&gt;
7528 </BODY>
7529 </HTML>
7530 ======= h_compose_send =======
7531 <HTML>
7532 <HEAD>
7533 <TITLE>Send Command</TITLE>
7534 </HEAD>
7535 <BODY>
7536 <H1>Send Command</H1>
7538 The Send command
7539 <!--chtml if pinemode="function_key"-->
7540 (F3)
7541 <!--chtml else-->
7542 (^X) 
7543 <!--chtml endif-->
7544 tells Alpine you are finished composing.
7545 Before actually sending it, though, Alpine will ask you to confirm 
7546 your intention, and, at the same time, redisplayed the message text
7547 with the recipients at the top of the screen to give you the opportunity
7548 to review and verify that the message is addressed to the people
7549 you intended.
7551 If the feature
7552 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
7553 then this confirmation prompt and any options it allows are skipped.
7556 This confirmation prompt may also offer, depending
7557 on your particular Setup/Config, options allowing you to set
7558 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
7559 include attachments in the &quot;Fcc&quot; (if you had previously
7560 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
7561 observe details of the
7562 <A HREF="h_config_verbose_post">message submission process</A>,
7563 choose the filter through which the
7564 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
7565 or turn of flowed text generation.
7568 &lt;End of help on this topic&gt;
7569 </BODY>
7570 </HTML>
7571 ======= h_compose_markcutpaste =======
7572 <HTML>
7573 <HEAD>
7574 <TITLE>Mark, Cut and Paste Commands</TITLE>
7575 </HEAD>
7576 <BODY>
7577 <H1>Mark, Cut and Paste Commands</H1>
7579 You can define a &quot;block&quot; of text, which can subsequently
7580  be deleted or
7581 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
7582 then moving the cursor to the end of the desired text block.  You can then
7583 &quot;cut&quot; the block out 
7584 <!--chtml if pinemode="function_key"-->
7585 &quot;F9&quot;,
7586 <!--chtml else-->
7587 &quot;Ctrl-K&quot;,
7588 <!--chtml endif-->
7589 move the cursor, and &quot;paste&quot; it
7590 <!--chtml if pinemode="function_key"-->
7591 &quot;F10&quot;,
7592 <!--chtml else-->
7593 &quot;Ctrl-U&quot;,
7594 <!--chtml endif-->
7595 in the new location.  Also, you can paste more than once, allowing you
7596 to use this feature to copy a block of text.<P>
7598 If you press 
7599 <!--chtml if pinemode="function_key"-->
7600 &quot;F9&quot;
7601 <!--chtml else-->
7602 &quot;^K&quot;
7603 <!--chtml endif-->
7604 without having marked anything, Alpine will delete
7605 a single line.  If you delete a group of lines together, Alpine keeps them
7606 in the same buffer, so 
7607 <!--chtml if pinemode="function_key"-->
7609 <!--chtml else-->
7611 <!--chtml endif-->
7612 will restore them as a block.  About
7613 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
7614 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
7615 &quot;type the character ^&quot;.
7618 &lt;End of help on this topic&gt;
7619 </BODY>
7620 </HTML>
7621 ======= h_compose_justify =======
7622 <HTML>
7623 <HEAD>
7624 <TITLE>Justify Command</TITLE>
7625 </HEAD>
7626 <BODY>
7627 <H1>Justify Command</H1>
7629 The Justify
7630 <!--chtml if pinemode="function_key"-->
7631 (F4)
7632 <!--chtml else-->
7633 (^J) 
7634 <!--chtml endif-->
7635 command reformats the text in the paragraph the cursor is in.
7636 Paragraphs are separated by one blank line or a line beginning with a space.
7637 This is useful when you have been editing a paragraph and the lines become
7638 uneven.  The text is left aligned or justified and the right is ragged.  If
7639 the text is already justified as typed with auto-wrap, no justification will
7640 be done.
7643 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
7644 block of text, the Justify command is modified.
7645 Instead of automatically justifying the current paragraph you will be
7646 asked if you want to justify the paragraph, justify the selected region,
7647 or adjust the quote level of the selected region.
7648 Adjusting the quote level only works if you are using standard
7649 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
7650 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
7653 When composing a reply containing included text, the justify command
7654 will reformat text to the right of the 
7655 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
7656 adding or removing indented lines as needed.  Paragraphs are separated
7657 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
7658 line containing the indent string and one or more blank spaces.
7659 Included text that was previously indented (or &quot;quoted&quot;) is
7660 not preserved.
7663 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
7664 in 1999 and its wide-spread adoption since then, you will usually be better off if you
7665 use the standard
7666 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
7669 &lt;End of help on this topic&gt;
7670 </BODY>
7671 </HTML>
7672 ======= h_compose_spell =======
7673 <HTML>
7674 <HEAD>
7675 <TITLE>Spell Check Command</TITLE>
7676 </HEAD>
7677 <BODY>
7678 <H1>Spell Check Command</H1>
7680 The &quot;To Spell&quot;
7681 <!--chtml if pinemode="function_key"-->
7682 (F12)
7683 <!--chtml else-->
7684 (^T) 
7685 <!--chtml endif-->
7686 command calls an external spell checking program to look over the
7687 message you are composing.  By default, Alpine uses
7689 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
7691 if it knows where to find &quot;aspell&quot;.
7692 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
7693 then the command used is
7695 <CENTER><SAMP>ispell -l</SAMP></CENTER>
7697 Otherwise, the ancient &quot;spell&quot; command is used.
7699 For PC-Alpine, you must install the aspell library code that you
7700 may get from
7701 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
7704 &lt;End of help on this topic&gt;
7705 </BODY>
7706 </HTML>
7707 ======= h_compose_alted =======
7708 <HTML>
7709 <HEAD>
7710 <TITLE>Alt Editor Command</TITLE>
7711 </HEAD>
7712 <BODY>
7713 <H1>Alt Editor Command</H1>
7715 The &quot;Alt Editor&quot; command's availability depends on the
7716 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
7719 When the variable specifies a valid editor on your system, this
7720 command will launch it with the current text of your message
7721 already filled in.
7724 &lt;End of help on this topic&gt;
7725 </BODY>
7726 </HTML>
7727 ======= h_compose_readfile =======
7728 <HTML>
7729 <HEAD>
7730 <TITLE>Read File Command</TITLE>
7731 </HEAD>
7732 <BODY>
7733 <H1>Read File Command</H1>
7735 The &quot;Read File&quot;
7736 <!--chtml if pinemode="function_key"-->
7737 (F5)
7738 <!--chtml else-->
7739 (^R) 
7740 <!--chtml endif-->
7741 command allows you to copy in text from an existing file. You will be
7742 prompted for the name of a file to be inserted into the message.  The file
7743 name is relative to your home directory 
7744 <!--chtml if pinemode="running"-->
7745 (which, in the present configuration of your system, is
7746  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7747 <!--chtml endif-->
7748 or current working directory
7749 <!--chtml if pinemode="running"-->
7750 (which, at least for your current Alpine &quot;session,&quot; 
7751 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7752 <!--chtml endif-->, depending on the
7753 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7754 configuration setting; or, the file name must be specified as a full path name 
7755 <!--chtml if pinemode="os_windows"-->
7756 -- for example: &quot;A:&#92;PAPER.TXT&quot;
7757 <!--chtml else-->
7758 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
7759 <!--chtml endif-->
7760 (without the quotation marks).
7763 The file will be inserted where the cursor is located.  <B>The
7764 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
7765 Unix machine but have files on a PC or Mac, the files must be transferred
7766 to the system Alpine is running on before they can be read.  Please ask your
7767 local computer support people about the correct way to transfer a file to 
7768 your Alpine system.
7771 &lt;End of help on this topic&gt;
7772 </BODY>
7773 </HTML>
7774 ======= h_config_tray_icon =======
7775 <HTML>
7776 <HEAD>
7777 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
7778 </HEAD>
7779 <BODY>
7780 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
7782 PC-Alpine only.
7784 This option restores a behavior of previous versions of PC-Alpine.
7785 These
7786 versions, when started, installed a PC-Alpine icon in the notification 
7787 tray of Window's Taskbar.  The primary use of this icon was to indicate
7788 new mail arrival by turning red (while the Taskbar icon remained green).
7789 Additionally, the icon now changes to yellow to signify that a mail folder
7790 has been closed unexpectedly.
7793 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
7794 color its Taskbar entry's icon red (as well as the icon in the Window
7795 Title).  This feature is only provided for backwards compatibility.
7798 &lt;End of help on this topic&gt;
7799 </BODY>
7800 </HTML>
7801 ======= h_common_suspend =======
7802 <HTML>
7803 <HEAD>
7804 <TITLE>Suspend Command</TITLE>
7805 </HEAD>
7806 <BODY>
7807 <H1>Suspend Command</H1>
7809 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
7810 enabled, you can, at almost any time, temporarily halt your Alpine session,
7811 <!--chtml if pinemode="os_windows"-->
7812 minimizing it into an icon.
7813 <!--chtml else-->
7814 and return to your system prompt.
7815 <!--chtml endif-->
7818 &lt;End of help on this topic&gt;
7819 </BODY>
7820 </HTML>
7821 ======= h_pipe_command =======
7822 <HTML>
7823 <HEAD>
7824 <TITLE>Pipe Command SubOptions</TITLE>
7825 </HEAD>
7826 <BODY>
7827 <H1>Pipe Command SubOptions</H1>
7829 By default, when you use the Pipe command, the processed text of the
7830 message is sent to the Unix command
7831 you specify and the output is captured by Alpine and shown to you.
7832 (This command is available in PC-Alpine, as well, but there aren't many
7833 Windows commands that work well with piping.)
7834 There are some sub-commands that may be used to alter this behavior.
7835 These are toggles that switch the behavior between two possibilities.
7836 They can be combined in any way you wish.
7838 By default, the prompt at the bottom of the screen looks like
7840 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
7844 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
7846 if you are piping more than one message.
7848 The sub-command options are:
7849 <DL>
7850    <DT>Shown Text or Raw Text</DT>
7851    <DD>This option toggles between sending the shown (processed) text
7852 of the message to the Unix command, and sending the
7853 raw (unprocessed) text of the message to the Unix command.
7854 The default is to send the shown text.
7855 The raw version of the message will contain all of the headers and any
7856 MIME encoding that the message contains.
7857 If you've selected the Raw Text then the prompt will have the additional word
7858 &quot;RAW&quot; in it, like
7860 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
7862 You can experiment with this option by piping to something simple like the
7863 Unix &quot;cat&quot; command.
7864    </DD>
7865    <DT>Captured Output or Free Output</DT>
7866    <DD>This option toggles between having Alpine capture the output of
7867 the Unix pipe command for display, and not capturing it.
7868 If the command you are piping to is a filter that will produce output
7869 you want to view, then you want to capture that output
7870 for display (the default).
7871 If the Unix command doesn't produce output or handles the display itself,
7872 then you want free output.
7873 When you've selected the Free Output option the prompt will change to
7875 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
7877    </DD>
7878    <DT>No Delimiter or With Delimiter</DT>
7879    <DD>This option controls whether or not a Unix mailbox style delimiter
7880 will come before the text of the message.
7881 This is the delimiter used in the common Unix mailbox format.
7882 It's the single line that begins with the five characters
7883 &quot;From&quot; followed by a &lt;SPACE&gt; character.
7884 You'll usually only want to include this if the Unix command requires
7885 input in the format of a traditional Unix mailbox file.
7886 When you've selected the With Delimiter option the prompt will change to
7888 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
7890    </DD>
7891    <DT>To Same Pipe or To Individual Pipes</DT>
7892    <DD>This option only shows up if you are running an aggregate
7893 pipe command.
7894 That is, the command was Apply Pipe, not just Pipe.
7895 You have the option of piping all of the selected messages through a
7896 single pipe to a single instance of the Unix command,
7897 or piping each individual message through a separate pipe to separate
7898 instances of the Unix command.
7899 The default is that all of the output will go through a single pipe
7900 to a single instance of the command.
7901 You can try this option with a command like &quot;less&quot;, with Free
7902 Output enabled.
7903 When you've selected the Individual Pipes option the prompt will change to
7905 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
7907    </DD>
7908 </DL>
7911 As mentioned earlier, the options can be combined in any way you wish.
7912 You may leave them all off, turn them all on, or turn some of them on
7913 and some of them off.
7914 If you use the pipe command a second time in the same session the default
7915 options will be what you used the last time.
7918 &lt;End of help on this topic&gt;
7919 </BODY>
7920 </HTML>
7921 ========== h_emptydir_subfolder_name =========
7922 <HTML>
7923 <HEAD>
7924 <TITLE>ENTER SUBFOLDER NAME</TITLE>
7925 </HEAD>
7926 <BODY>
7927 <H1>Enter Subfolder Name</H1>
7929 <P> 
7930 This is the name of a new subfolder in the directory you are creating.
7931 Because empty directories are hidden and therefore not useful, you must also
7932 create a subfolder in the directory you are creating in order that the
7933 directory remains visible.
7935 Alternatively, you may turn off the configuration feature
7936 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
7937 so that empty directories remain visible.
7938 If you do that, you will not be required to create the subfolder when you
7939 create a directory.
7942 &lt;End of help on this topic&gt;
7943 </BODY>
7944 </HTML>
7945 ========== h_incoming_add_folder_name =========
7946 <HTML>
7947 <HEAD>
7948 <TITLE>ENTER FOLDER NAME</TITLE>
7949 </HEAD>
7950 <BODY>
7951 <H1>Enter Folder Name</H1>
7953 <P> 
7954 This is the name of the folder on the previously specified server.
7955 By default the folder name is interpreted as defining a section of your personal
7956 folder area.  This area and how you specify it are defined by the
7957 server, if one is specified.
7960 To define a folder outside the default area, prefix
7961 the path with the namespace to use when interpreting the
7962 given path.  If a namespace is specified, the folder name begins with the
7963 sharp (#) character followed by the name of the namespace
7964 and then the namespace's path-element-delimiter.  Aside from the
7965 name's format, namespaces can also imply access rights, content
7966 policy, audience, location, and, occasionally, access methods.
7969 Each server exports its own set (possibly of size one) of 
7970 namespaces.
7971 For a more detailed explanation read about
7972 <A HREF="h_folder_name_namespaces">Namespaces</A>.
7975 To specify the default for INBOX on the server you can usually just enter
7976 &quot;INBOX&quot;, and the server will understand the special meaning of
7977 that word.
7980 &lt;End of help on this topic&gt;
7981 </BODY>
7982 </HTML>
7983 ========== h_incoming_add_folder_host =========
7984 <HTML>
7985 <HEAD>
7986 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
7987 </HEAD>
7988 <BODY>
7989 <H1>Enter Incoming Folder Server</H1>
7991 You are being asked for the name of the server for use with this incoming
7992 folder.
7993 If the folder is on the machine where Alpine is running, then just enter
7994 RETURN without typing a server name.
7997 If the folder is on an IMAP server then type the server's name followed
7998 by RETURN.
7999 You may use the ^X command if the server is the same as the server that
8000 the INBOX is on.
8003 You may have to add optional extra information to the server name.
8004 For example, if the IMAP server is using a non-standard port number you
8005 would specify that by appending a colon (:) followed by the port number
8006 to the server name
8009 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8012 or you may need to specify a different protocol if the server is not an
8013 IMAP server. For example:
8016 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8019 for a POP server or
8022 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8025 for an NNTP news server.
8026 For an explanation of all of the possibilities, see
8027 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8028 for folders.
8031 There is a special command (^W) if you want to set up a folder that gets its
8032 mail from a
8033 <A HREF="h_maildrop">Mail Drop</A>.
8034 If you type that command, you will be prompted for the information for
8035 both the Mail Drop folder and the destination folder.
8038 &lt;End of help on this topic&gt;
8039 </BODY>
8040 </HTML>
8041 ========== h_incoming_add_inbox =========
8042 <HTML>
8043 <HEAD>
8044 <TITLE>ENTER INBOX SERVER</TITLE>
8045 </HEAD>
8046 <BODY>
8047 <H1>Enter INBOX Server</H1>
8049 You are being asked for the name of the server for use with
8050 the INBOX folder.
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.
8073 For an explanation of all of the possibilities, see
8074 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8075 for folders.
8078 If the INBOX folder is on the machine where Alpine is running, then just enter
8079 RETURN without typing a server name.
8082 There is a special command (^W) if you want to set up a folder that gets its
8083 mail from a
8084 <A HREF="h_maildrop">Mail Drop</A>.
8085 If you type that command, you will be prompted for the information for
8086 both the Mail Drop folder and the destination folder, which will be used
8087 as your INBOX folder.
8090 &lt;End of help on this topic&gt;
8091 </BODY>
8092 </HTML>
8093 ========== h_incoming_add_maildrop_destn =========
8094 <HTML>
8095 <HEAD>
8096 <TITLE>ENTER DESTINATION SERVER</TITLE>
8097 </HEAD>
8098 <BODY>
8099 <H1>Enter Destination Server</H1>
8101 You are being asked for the name of the server where the destination
8102 folder is for use with this Mail Drop incoming folder.
8103 That is, you are using a Mail Drop for this incoming folder and
8104 you've already entered
8105 the server and folder name for the Mail Drop.
8106 Now you need to enter the server for the destination folder
8107 where the mail should be copied to.
8108 Mail will come from the Mail Drop and be copied to the destination folder.
8111 Type the server's name followed by RETURN.
8112 If the folder is local to this computer, just type RETURN without entering
8113 a server name.
8116 You may have to add optional extra information to the server name.
8117 For example, if the server is using a non-standard port number you
8118 would specify that by appending a colon (:) followed by the port number
8119 to the server name
8122 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
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 &lt;End of help on this topic&gt;
8131 </BODY>
8132 </HTML>
8133 ========== h_inbox_add_maildrop_destn =========
8134 <HTML>
8135 <HEAD>
8136 <TITLE>ENTER DESTINATION SERVER</TITLE>
8137 </HEAD>
8138 <BODY>
8139 <H1>Enter Destination Server</H1>
8141 You are being asked for the name of the server where the destination
8142 folder is for use with your Mail Drop INBOX.
8143 That is, you are using a Mail Drop for your INBOX and you've already entered
8144 the server and folder name for the Mail Drop.
8145 Now you need to enter the server for the destination folder
8146 where the mail should be copied to.
8147 Mail will come from the Mail Drop and be copied to the destination folder.
8150 Type the server's name followed by RETURN.
8151 If the folder is local to this computer, just type RETURN without entering
8152 a server name.
8155 You may have to add optional extra information to the server name.
8156 For example, if the server is using a non-standard port number you
8157 would specify that by appending a colon (:) followed by the port number
8158 to the server name
8161 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8164 For an explanation of all of the possibilities, see
8165 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8166 for folders.
8169 &lt;End of help on this topic&gt;
8170 </BODY>
8171 </HTML>
8172 ========== h_inbox_add_maildrop =========
8173 <HTML>
8174 <HEAD>
8175 <TITLE>ENTER MAILDROP SERVER</TITLE>
8176 </HEAD>
8177 <BODY>
8178 <H1>Enter Mail Drop Server</H1>
8180 You are being asked for the name of the Mail Drop server for use with
8181 your INBOX.
8184 Type the server's name followed by RETURN.
8187 You may have to add optional extra information to the server name.
8188 For example, if the server is using a non-standard port number you
8189 would specify that by appending a colon (:) followed by the port number
8190 to the server name
8193 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8196 or you may need to specify a different protocol if the server is not an
8197 IMAP server. For example:
8200 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8203 for a POP server or
8206 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8209 for an NNTP news server.
8210 For an explanation of all of the possibilities, see
8211 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8212 for folders.
8215 &lt;End of help on this topic&gt;
8216 </BODY>
8217 </HTML>
8218 ========== h_incoming_add_maildrop =========
8219 <HTML>
8220 <HEAD>
8221 <TITLE>ENTER MAILDROP SERVER</TITLE>
8222 </HEAD>
8223 <BODY>
8224 <H1>Enter Mail Drop Server</H1>
8226 You are being asked for the name of the Mail Drop server for use with
8227 this incoming folder.
8230 Type the server's name followed by RETURN.
8231 You may use the ^X command if the server is the same as the server that
8232 the INBOX is on.
8235 You may have to add optional extra information to the server name.
8236 For example, if the server is using a non-standard port number you
8237 would specify that by appending a colon (:) followed by the port number
8238 to the server name
8241 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8244 or you may need to specify a different protocol if the server is not an
8245 IMAP server. For example:
8248 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8251 for a POP server or
8254 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8257 for an NNTP news server.
8258 For an explanation of all of the possibilities, see
8259 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8260 for folders.
8263 If the Mail Drop folder is on the machine where Alpine is running, then just enter
8264 RETURN without typing a server name.
8267 &lt;End of help on this topic&gt;
8268 </BODY>
8269 </HTML>
8270 ========== h_maildrop =========
8271 <HTML>
8272 <HEAD>
8273 <TITLE>WHAT IS A MAIL DROP?</TITLE>
8274 </HEAD>
8275 <BODY>
8276 <H1>What is a Mail Drop?</H1>
8278 In some situaions it may make sense to have your mail delivered to one
8279 folder (the Mail Drop) and then when you want to read mail that has been
8280 delivered to the Mail Drop folder Alpine will move it to another
8281 destination folder.
8282 Often the Mail Drop will be a remote folder and messages will be moved from
8283 there to a local destination folder.
8286 One example where this might make sense is if the Mail Drop folder is accessible
8287 only with the POP protocol.
8288 You could designate your POP inbox as the Mail Drop folder and have Alpine move
8289 mail from there to a local (on the same machine Alpine is running on)
8290 destination folder, where you'll read it.
8293 A Mail Drop may only be used as your Inbox or as an
8294 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
8297 There is no attempt to synchronize the contents of the destination folder
8298 with the contents of the Mail Drop folder.
8299 All that happens is that all of the messages in the Mail Drop folder are
8300 copied to the destination folder and then they are deleted and expunged (if possible)
8301 from the Mail Drop folder.
8302 The next time a check for new mail is made, any messages in the Mail 
8303 Drop folder are once again copied to the destination folder and deleted
8304 and expunged from the Mail Drop folder.
8305 (If the Mail Drop folder is a news group, then the messages can't be
8306 expunged from the newsgroup. Instead, only Recent messages are copied from
8307 the newsgroup to the destination folder.)
8310 Configuration of a Mail Drop is a little different from configuration of
8311 a folder that does not use a Mail Drop because you have to specify two
8312 folder names instead of one.
8313 The two folders may be any types of folders that Alpine can normally use.
8314 They don't have to be a remote folder and a local folder, that is
8315 simply the most common usage.
8316 When you use a Mail Drop folder Alpine will periodically re-open the Mail
8317 Drop to check for new mail.
8318 The new-mail checks will happen at the frequency set with the
8319 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
8320 but with a minimum time
8321 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
8322 between checks.
8323 Because of this minimum you may notice that new mail does not
8324 appear promptly when you expect it.
8325 The reason for this is to protect the server from over-zealous opening and
8326 closing of the Mail Drop folder.
8327 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
8328 the end of the folder index, then the check will happen, regardless of how
8329 long it has been since the previous check.
8331 If there is new mail, that mail will be copied to the destination folder
8332 and then will be deleted from the Mail Drop.
8333 Note that using a Mail Drop with a local destination folder does not make
8334 sense if you read mail from more than one machine, because the mail is
8335 downloaded to the destination folder (which is accessible from only one
8336 machine) and deleted from the Mail Drop.
8338 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
8341 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
8344 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
8346 The brackets are not literal.
8348 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
8350 is a single character that does not appear in the MailDropFolder name.
8351 If the name doesn't contain spaces then it can be a space character.
8352 The two folder names are full technical
8353 <A HREF="h_valid_folder_names">folder names</A>
8354 as used by Alpine.
8355 Here are a couple examples to give you an idea what is being talked about:
8358 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
8360 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
8363 A #move folder may only be used as an
8364 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
8365 an Inbox.
8366 When you are in the FOLDER LIST of Incoming Message Folders (after turning
8367 on the
8368 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8369 option)
8370 the Add command has a subcommand &quot;Use Mail Drop&quot;
8371 which may be helpful for defining the folder in your Alpine configuration.
8372 The same is true when you edit the
8373 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
8374 option in Setup/Config.
8375 Each of these configuration methods will also create the DestinationFolder
8376 if it doesn't already exist.
8377 If you are having problems, make sure the DestinationFolder exists.
8380 &lt;End of help on this topic&gt;
8381 </BODY>
8382 </HTML>
8383 ========== h_save =========
8384 <HTML>
8385 <HEAD>
8386 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
8387 </HEAD>
8388 <BODY>
8389 <H1>Choose a Folder to Save Into</H1>
8391 After Exiting from this help text,
8392 type the name of the folder you want to save into and press RETURN.
8394 Press ^T to get a list of your folders to choose from.
8395 Press ^C to cancel the Save.
8397 If you have Folder Collections defined you may use
8398 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
8399 the collection being saved to.
8401 If Tab Completion is enabled (it is enabled by default)
8402 you may type a Tab character to have Alpine complete the folder name for you.
8404 If Partial Match Lists is enabled (it is enabled by default) you may type
8405 Ctrl-X to get a list of matches to the prefix you've typed in so far.
8407 If the Ctrl-R subcommand is present that means you can decide to Delete or
8408 not Delete the message you are saving after you save it.
8409 The label on that key gives the action to switch to.
8410 If it says Delete and you type Ctrl-R the label displayed will change to
8411 No Delete and the source message will be deleted after the save. If it
8412 says No Delete and you type Ctrl-R the label displayed will change to
8413 Delete and the message will not be deleted.
8414 You can control the default for the Delete parameter with the
8415 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
8417 Similarly, if the Ctrl-W subcommand is present that means you can decide
8418 to Preserve the order of the messages being saved or not.
8419 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
8420 will be in the same order as you see them in the source folder now.
8421 The opposite action (which is usually the default) is that you don't care
8422 about the order.
8423 The Saved messages may or may not be in the same order in the destination folder.
8424 There may be a performance penalty for choosing to save the messages in order.
8425 You can control the default for the Preserve Order parameter with the
8426 configuration feature
8427 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
8430 If you haven't disabled the Save Input History and you've already done a
8431 Save earlier in this session then you may use the Up and Down arrows to retrieve
8432 a folder name used in a previous Save.
8435 &lt;End of help on this topic&gt;
8436 </BODY>
8437 </HTML>
8438 ============= h_simple_index ========================
8439 <HTML>
8440 <HEAD>
8441 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
8442 </HEAD>
8443 <BODY>
8444 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
8445 <!--chtml if pinemode="function_key"-->
8446 <PRE>
8447 Navigating the List of Messages               General Alpine Commands
8448 -------------------------------               -----------------------
8449  F5   Move to previous message                 F1   Show this help text
8450  F6   Move to next message
8451  F7   Show previous screen of messages
8452  F8   Show next screen of messages
8454 Message Selection Commands
8455 --------------------------
8456  F3   Exit the Message Select menu (canceling Send command)
8457  F4   Select the currently highlighted message
8458  F9   Mark the currently highlighted message as deleted
8459  F10  Undelete (remove deletion mark from) the highlighted message
8460 </PRE>
8461 <!--chtml else-->
8462 <PRE>
8463 Navigating the List of Messages               General Alpine Commands
8464 -------------------------------               -----------------------
8465   P  Move to previous message                  ?  Show this help text
8466   N  Move to next message
8467   -  Show previous screen of messages
8468  Spc (space bar) Show next screen of messages
8470 Message Selection Commands
8471 --------------------------
8472   E  Exit the Message Select menu (canceling Send command)
8473   S  Select the currently highlighted message
8474   D  Mark the currently highlighted message as deleted
8475   U  Undelete (remove deletion mark from) the highlighted message
8476 </PRE>
8477 <!--chtml endif-->
8479 <H2>Description of the Select Postponed Message Screen</H2>
8481 This screen allows you to select one of several previously postponed
8482 messages in order to continue composition.  Your options are very limited
8483 -- the screen is not meant to let you manipulate these messages.  However,
8484 you may now delete messages from this list.  Once you choose a message,
8485 Alpine reads it in and puts you into the regular message composer.
8488 Messages do not stay in this postponed state automatically.  If you select
8489 a message and then want to postpone it again, use the normal postpone
8490 (Ctrl-O) command in the composer.
8493 If you exit this screen without selecting a message, the Compose command
8494 that got you here is canceled.  Other than messages explicitly marked
8495 &quot;Deleted&quot;, no messages will be removed.
8498 &lt;End of help on this topic&gt;
8499 </BODY>
8500 </HTML>
8501 ============= h_collection_screen ========================
8502 <HTML>
8503 <HEAD>
8504 <TITLE>COLLECTION LIST screen</TITLE>
8505 </HEAD>
8506 <BODY>
8507 <H1>COLLECTION LIST screen</H1>
8509 The COLLECTION LIST screen is used to select one of your  
8510 collection definitions to display the folders they contain.  See
8511 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
8512 detailed explanation of collections.<P>
8514 To manage your collection definitions (Add, Change, Delete, etc.), use
8515 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
8516 MAIN MENU.
8519 &lt;End of help on this topic&gt;
8520 </BODY>
8521 </HTML>
8522 ============= h_collection_maint ========================
8523 <HTML>
8524 <HEAD>
8525 <TITLE>SETUP COLLECTION LIST screen</TITLE>
8526 </HEAD>
8527 <BODY>
8528 <H1>SETUP COLLECTION LIST screen</H1>
8530 The SETUP COLLECTION LIST screen lets you manage your collection
8531 definitions.  See 
8532 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
8533 for detailed explanation of collections.<P>
8535 Maintenance commands include:
8536 <DL>
8537 <DT>Change
8538 <!--chtml if pinemode="function_key"-->
8539 (F4)
8540 <!--chtml else-->
8542 <!--chtml endif-->
8543 </DT>
8545 <DD>Modify attributes of the selected collection definition.
8547 <DT>Add Cltn
8548 <!--chtml if pinemode="function_key"-->
8549 (F9)
8550 <!--chtml else-->
8552 <!--chtml endif-->
8553 </DT>
8555 <DD>Create a new collection definition.
8556 </DD>
8558 <DT>Del Cltn
8559 <!--chtml if pinemode="function_key"-->
8560 (F10)
8561 <!--chtml else-->
8563 <!--chtml endif-->
8564 </DT>
8566 <DD>Delete the selected collection definition.<BR>
8567 NOTE: The folders and directories referred to by the
8568 collection definition are <EM>NOT</EM> deleted.  Folders must
8569 be deleted, if that's what you wish to do, from the 
8570 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
8571 individual folders in a collection.
8572 </DD>
8574 <DT>Shuffle
8575 <!--chtml if pinemode="function_key"-->
8576 (F11)
8577 <!--chtml else-->
8579 <!--chtml endif-->
8580 </DT>
8582 <DD>Change the order of the displayed collections.  Alpine will offer
8583 to move the currently selected collection one position UP
8584 or DOWN.
8585 </DD>
8586 </DL>
8589 &lt;End of help on this topic&gt;
8590 </BODY>
8591 </HTML>
8592 ============ h_what_are_collections ==========
8593 <HTML>
8594 <HEAD>
8595 <TITLE>Folder Collections Explained</TITLE>
8596 </HEAD>
8597 <BODY>
8598 <H1>Folder Collections Explained</H1>
8601 Those of you with simple mail configurations will just see a list of all the
8602 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
8603 The special folders for INBOX, sent mail and saved messages
8604 will appear at the top of the list.  All others are in alphabetical order.
8606 If you
8607 or your system administrator have defined more than one collection or if
8608 you have a collection (for newsgroups or email folders) defined on your 
8609 system, then you will see the COLLECTION LIST screen first when choosing 
8610 FOLDER LIST from Alpine's MAIN MENU.
8612 <H2>Why have multiple folder collections?</H2>
8614 For Alpine users who only maintain email folders (and not too many) on one host, 
8615 a single folder collection is probably sufficient.<P>
8617 However, people who have more than one email account - for example, one 
8618 at their university, and one with their personal Internet Service Provider - 
8619 will have different sets of folders on different hosts, and they may want to
8620 access them all from the same installation of Alpine, rather than use different 
8621 software and/or log into other hosts to manipulate messages in different 
8622 accounts.  (If in doubt whether one of your email accounts can be accessed 
8623 with Alpine, contact the technical support people for that account.)  Even people
8624 who have only one email account on one host, but have dozens or
8625 hundreds of email folders, may want to arrange these folders together in a 
8626 meaningful way.<BR>
8627 That is where multiple collections come in.
8629 <H2>Types of Collections</H2>
8630 <DL>
8631 <DT>INCOMING FOLDERS</DT>
8632 <DD>&quot;Incoming Message Folders&quot; 
8633 is a special collection typically used to supplement your single INBOX.  
8634 All the folders here are meant to be ones that receive incoming messages, 
8635 which you intend to check more or less frequently.  
8636 You may have multiple folders like this because you or your systems 
8637 administrator have set up an external program or you may have set up
8638 Alpine to filter incoming 
8639 messages into different folders, based on certain criteria such as 
8640 sender, recipient, or subject; or because you have multiple accounts and 
8641 wish to check their INBOXes easily.  This collection is established by 
8642 setting the 
8643 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8644 feature in the SETUP CONFIGURATION screen, which is accessed from the 
8645 MAIN MENU.
8646 </DD>
8648 <DT>NEWS</DT>
8649 <DD>You can also define a collection specifically for
8650 newsgroups.  Alpine does this for you implicitly when you 
8651 <A HREF="h_config_nntp_server">define an NNTP Server</A>
8652 in your Alpine configuration.  The news collection appears last in the 
8653 COLLECTION LIST (though you can shuffle it up in the order of presentation),
8654 and Alpine knows not to save messages there.
8655 </DD>
8657 <DT>DEFAULT COLLECTION</DT>
8658 <DD>This is the default collection for your saved and sent messages folders.
8659 </DD>
8660 </DL>
8664 <H2>Defining Collections</H2>
8666 In the absence of any folder-collection definitions, Alpine will assume a
8667 single default folder collection.
8668 <!--chtml if pinemode="os_windows"-->
8669 <!--chtml else-->
8670 If necessary, Alpine will create the directory
8671 &quot;mail&quot; in your Unix home directory 
8672 to hold your folders.
8673 <!--chtml endif-->
8675 You can use the 
8676 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
8677 the MAIN MENU, to manage your collection list.  
8679 &lt;End of help on this topic&gt;
8680 </BODY>
8681 </HTML>
8682 ===== h_select_address_screen =====
8683 <HTML>
8684 <HEAD>
8685 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
8686 </HEAD>
8687 <BODY>
8688 <H1>SELECT AN ADDRESS SCREEN</H1>
8689 <H2>COMMANDS</H2>
8690 <!--chtml if pinemode="function_key"-->
8691 <PRE>
8692 Available  Commands                        
8693 -------------------------------            
8694 F1  Show Help Text
8695 F3  Exit without selecting anything
8696 F4  Select the highlighted address
8697 F5  Move highlight to previous address
8698 F6  Move highlight to next address
8699 F7  Previous page of addresses
8700 F8  Next page of addresses
8701 F11 Print
8702 F12 WhereIs
8703 </PRE>
8704 <!--chtml else-->
8705 <PRE>
8706 Navigation                     General Alpine Commands
8707 -------------------------      -----------------------
8708  P  Prev Address                ?  Display this help text
8709  N  Next Address                E  Exit without selecting anything
8710  -  Previous page               %  Print
8711 Spc (space bar) Next page
8712  W  WhereIs
8714 Select Command
8715 ------------------------------------------------
8716  S  Select the highlighted address
8717 </PRE>
8718 <!--chtml endif-->
8720 <H2>Description of the Select Address Screen</H2>
8722 This screen gives you an easy way to select an address from all of
8723 the address book entries that match the prefix typed so far.
8725 <P><UL>
8726 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8727 </UL>
8729 &lt;End of help on this topic&gt;
8730 </BODY>
8731 </HTML>
8732 ===== h_select_rule_screen =====
8733 <HTML>
8734 <HEAD>
8735 <TITLE>SELECT A RULE SCREEN</TITLE>
8736 </HEAD>
8737 <BODY>
8738 <H1>SELECT A RULE SCREEN</H1>
8739 <H2>COMMANDS</H2>
8740 <!--chtml if pinemode="function_key"-->
8741 <PRE>
8742 Available  Commands                        
8743 -------------------------------            
8744 F1  Show Help Text
8745 F3  Exit without selecting anything
8746 F4  Select the highlighted rule
8747 F5  Move highlight to previous rule
8748 F6  Move highlight to next rule
8749 F7  Previous page of rules
8750 F8  Next page of rules
8751 F11 Print
8752 F12 WhereIs
8753 </PRE>
8754 <!--chtml else-->
8755 <PRE>
8756 Navigation                     General Alpine Commands
8757 -------------------------      -----------------------
8758  P  Prev Rule                   ?  Display this help text
8759  N  Next Rule                   E  Exit without selecting anything
8760  -  Previous page               %  Print
8761 Spc (space bar) Next page
8762  W  WhereIs
8764 Select Command
8765 ------------------------------------------------
8766  S  Select the highlighted rule
8767 </PRE>
8768 <!--chtml endif-->
8770 <H2>Description of the Select Rule Screen</H2>
8772 This screen just gives you an easy way to select a rule from all of your
8773 defined rules.
8774 The list of rules presented is the list of nicknames of all of the rules
8775 defined using Setup/Rules.
8776 For selecting messages, it is likely that the Indexcolor rules and possibly
8777 the Roles rules will be most useful.
8778 The others are there also, in case you find a use for them.
8780 In order for this to be useful for selecting messages, the nicknames of
8781 the rules have to be different.
8782 Alpine actually just gets the nickname of the rule that you select and then
8783 looks up that rule using the nickname.
8784 So if there are duplicate nicknames, the first rule that has that
8785 nickname will be used.
8787 <P><UL>
8788 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8789 </UL>
8791 &lt;End of help on this topic&gt;
8792 </BODY>
8793 </HTML>
8794 ===== h_select_priority_screen =====
8795 <HTML>
8796 <HEAD>
8797 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
8798 </HEAD>
8799 <BODY>
8800 <H1>SELECT A PRIORITY SCREEN</H1>
8801 <H2>COMMANDS</H2>
8802 <!--chtml if pinemode="function_key"-->
8803 <PRE>
8804 Available  Commands                        
8805 -------------------------------            
8806 F1  Show Help Text
8807 F3  Exit without selecting anything
8808 F4  Select the highlighted priority
8809 F5  Move highlight to previous priority
8810 F6  Move highlight to next priority
8811 F7  Previous page of priorities
8812 F8  Next page of priorities
8813 F11 Print
8814 F12 WhereIs
8815 </PRE>
8816 <!--chtml else-->
8817 <PRE>
8818 Navigation                     General Alpine Commands
8819 -------------------------      -----------------------
8820  P  Prev Priority               ?  Display this help text
8821  N  Next Priority               E  Exit without selecting anything
8822  -  Previous page               %  Print
8823 Spc (space bar) Next page
8824  W  WhereIs
8826 Select Command
8827 ------------------------------------------------
8828  S  Select the highlighted priority
8829 </PRE>
8830 <!--chtml endif-->
8832 <H2>Description of the Select Priority Screen</H2>
8834 This screen gives you a way to select a priority for the message you are sending.
8835 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
8836 Some mail programs will display an indication of the priority level to
8837 the recipient of the message, some will ignore it.
8838 Even in cases where the mail programs of both the sender and the recipient
8839 agree on the meaning of this header, keep in mind that it is
8840 something that the sender sets so it is only an indication
8841 of the priority that the sender attaches to the mail.
8842 Alpine can be made to display an indication of this priority in incoming
8843 messages by use of one of the tokens
8844 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
8845 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
8846 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
8848 <P><UL>
8849 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8850 </UL>
8852 &lt;End of help on this topic&gt;
8853 </BODY>
8854 </HTML>
8855 ===== h_select_keyword_screen =====
8856 <HTML>
8857 <HEAD>
8858 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
8859 </HEAD>
8860 <BODY>
8861 <H1>SELECT A KEYWORD SCREEN</H1>
8862 <H2>COMMANDS</H2>
8863 <!--chtml if pinemode="function_key"-->
8864 <PRE>
8865 Available  Commands                        
8866 -------------------------------            
8867 F1  Show Help Text
8868 F3  Exit without selecting anything
8869 F4  Select the highlighted keyword
8870 F5  Move highlight to previous keyword
8871 F6  Move highlight to next keyword
8872 F7  Previous page of keywords
8873 F8  Next page of keywords
8874 F11 Print
8875 F12 WhereIs
8876 </PRE>
8877 <!--chtml else-->
8878 <PRE>
8879 Navigation                     General Alpine Commands
8880 -------------------------      -----------------------
8881  P  Prev Keyword                ?  Display this help text
8882  N  Next Keyword                E  Exit without selecting anything
8883  -  Previous page               %  Print
8884 Spc (space bar) Next page
8885  W  WhereIs
8887 Select Command
8888 ------------------------------------------------
8889  S  Select the highlighted keyword
8890 </PRE>
8891 <!--chtml endif-->
8893 <H2>Description of the Select Keyword Screen</H2>
8895 This screen just gives you an easy way to select a keyword.
8896 The list of keywords presented is the list of all keywords defined in your 
8897 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
8898 If you have given a keyword a nickname, that nickname is displayed
8899 instead of the actual keyword.
8901 <P><UL>
8902 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8903 </UL>
8905 &lt;End of help on this topic&gt;
8906 </BODY>
8907 </HTML>
8908 ===== h_select_charset_screen =====
8909 <HTML>
8910 <HEAD>
8911 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
8912 </HEAD>
8913 <BODY>
8914 <H1>SELECT A CHARACTER SET SCREEN</H1>
8915 <H2>COMMANDS</H2>
8916 <!--chtml if pinemode="function_key"-->
8917 <PRE>
8918 Available  Commands                        
8919 -------------------------------            
8920 F1  Show Help Text
8921 F3  Exit without selecting anything
8922 F4  Select the highlighted character set
8923 F5  Move highlight to previous character set
8924 F6  Move highlight to next character set
8925 F7  Previous page of character sets
8926 F8  Next page of character sets
8927 F11 Print
8928 F12 WhereIs
8929 </PRE>
8930 <!--chtml else-->
8931 <PRE>
8932 Navigation                     General Alpine Commands
8933 -------------------------      -----------------------
8934  P  Prev Character Set          ?  Display this help text
8935  N  Next Character Set          E  Exit without selecting anything
8936  -  Previous page               %  Print
8937 Spc (space bar) Next page
8938  W  WhereIs
8940 Select Command
8941 ------------------------------------------------
8942  S  Select the highlighted character set
8943 </PRE>
8944 <!--chtml endif-->
8946 <H2>Description of the Select A Character Set Screen</H2>
8948 This screen just gives you an easy way to select a character set from the
8949 set of character sets Alpine knows about.
8950 The list presented will vary slightly depending on what option you are
8951 selecting the character set for.
8953 <P><UL>
8954 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8955 </UL>
8957 &lt;End of help on this topic&gt;
8958 </BODY>
8959 </HTML>
8960 ===== h_select_multcharsets_screen =====
8961 <HTML>
8962 <HEAD>
8963 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
8964 </HEAD>
8965 <BODY>
8966 <H1>SELECT CHARACTER SETS SCREEN</H1>
8967 <H2>COMMANDS</H2>
8968 <!--chtml if pinemode="function_key"-->
8969 <PRE>
8970 Available  Commands
8971 -------------------------------            
8972 F1  Show Help Text
8973 F3  Exit without selecting anything
8974 F4  Select the highlighted charset (or chosen charsets in ListMode)
8975 F5  Move highlight to previous charset
8976 F6  Move highlight to next charset
8977 F7  Previous page of charsets
8978 F8  Next page of charsets
8979 F9  Toggle choices when using ListMode
8980 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
8981 F11 Print
8982 F12 WhereIs
8983 </PRE>
8984 <!--chtml else-->
8985 <PRE>
8986 Navigation                     General Alpine Commands
8987 -------------------------      -----------------------
8988  P  Prev Charset                ?  Display this help text
8989  N  Next Charset                E  Exit without selecting anything
8990  -  Previous page               %  Print
8991 Spc (space bar) Next page
8992  W  WhereIs
8994 Select Command
8995 ------------------------------------------------
8996  S  Select the highlighted charset (or chosen charsets in ListMode)
8997  L  Turn on ListMode (makes it easy to choose multiple charsets)
8998  1  Turn off ListMode
8999  X  Toggle choices when using ListMode
9000 </PRE>
9001 <!--chtml endif-->
9003 <H2>Description of the Select Character Set Screen</H2>
9005 This screen just gives you an easy way to select a character set or a list of
9006 character sets.
9007 The list of character sets presented is the list of all character sets known to
9008 Alpine.
9009 You may select other character sets by typing them in directly.
9011 <P><UL>
9012 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9013 </UL>
9015 &lt;End of help on this topic&gt;
9016 </BODY>
9017 </HTML>
9018 ===== h_select_multkeyword_screen =====
9019 <HTML>
9020 <HEAD>
9021 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
9022 </HEAD>
9023 <BODY>
9024 <H1>SELECT KEYWORDS SCREEN</H1>
9025 <H2>COMMANDS</H2>
9026 <!--chtml if pinemode="function_key"-->
9027 <PRE>
9028 Available  Commands
9029 -------------------------------            
9030 F1  Show Help Text
9031 F3  Exit without selecting anything
9032 F4  Select the highlighted keyword (or chosen keywords in ListMode)
9033 F5  Move highlight to previous keyword
9034 F6  Move highlight to next keyword
9035 F7  Previous page of keywords
9036 F8  Next page of keywords
9037 F9  Toggle choices when using ListMode
9038 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
9039 F11 Print
9040 F12 WhereIs
9041 </PRE>
9042 <!--chtml else-->
9043 <PRE>
9044 Navigation                     General Alpine Commands
9045 -------------------------      -----------------------
9046  P  Prev Keyword                ?  Display this help text
9047  N  Next Keyword                E  Exit without selecting anything
9048  -  Previous page               %  Print
9049 Spc (space bar) Next page
9050  W  WhereIs
9052 Select Command
9053 ------------------------------------------------
9054  S  Select the highlighted keyword (or chosen keywords in ListMode)
9055  L  Turn on ListMode (makes it easy to choose multiple keywords)
9056  1  Turn off ListMode
9057  X  Toggle choices when using ListMode
9058 </PRE>
9059 <!--chtml endif-->
9061 <H2>Description of the Select Keyword Screen</H2>
9063 This screen just gives you an easy way to select a keyword or a list of
9064 keywords.
9065 The list of keywords presented is the list of all keywords defined in your 
9066 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
9067 If you have given a keyword a nickname, that nickname is displayed
9068 instead of the actual keyword.
9070 <P><UL>
9071 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9072 </UL>
9074 &lt;End of help on this topic&gt;
9075 </BODY>
9076 </HTML>
9077 ===== h_select_incoming_to_monitor =====
9078 <HTML>
9079 <HEAD>
9080 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
9081 </HEAD>
9082 <BODY>
9083 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
9084 <H2>COMMANDS</H2>
9085 <!--chtml if pinemode="function_key"-->
9086 <PRE>
9087 Available  Commands
9088 -------------------------------            
9089 F1  Show Help Text
9090 F3  Exit without selecting anything
9091 F4  Select the marked folders
9092 F5  Move highlight to previous folder
9093 F6  Move highlight to next folder
9094 F7  Previous page of folders
9095 F8  Next page of folders
9096 F9  Toggle choices on or off
9097 F11 Print
9098 F12 WhereIs
9099 </PRE>
9100 <!--chtml else-->
9101 <PRE>
9102 Navigation                     General Alpine Commands
9103 -------------------------      -----------------------
9104  P  Prev Folder                 ?  Display this help text
9105  N  Next Folder                ^C  exit without changing anything
9106  -  Previous page               %  Print
9107 Spc (space bar) Next page
9108  W  WhereIs
9110 Select Command
9111 ------------------------------------------------
9112  S  Select the marked folders
9113  X  Toggle choices on or off
9114 </PRE>
9115 <!--chtml endif-->
9117 <H2>Description of the Select Folders to Check Screen</H2>
9119 This screen is only useful if the feature
9120 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
9121 is set.
9122 By default, when you set that feature all of your incoming folders
9123 will be checked periodically for Unseen messages.
9124 By using this screen, you may restrict the set of monitored folders to
9125 a subset of all of the incoming folders.
9127 Mark the folders you want to monitor for Unseen messages with
9128 an &quot;X&quot;.
9129 When you've finished marking all your selections use the Select
9130 command to register your choices.
9131 To return to the default of checking all incoming folders
9132 delete all folders or unmark all folders.
9134 <P><UL>
9135 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9136 </UL>
9138 &lt;End of help on this topic&gt;
9139 </BODY>
9140 </HTML>
9141 ===== h_role_select =====
9142 <HTML>
9143 <HEAD>
9144 <TITLE>ROLES SCREEN</TITLE>
9145 </HEAD>
9146 <BODY>
9147 <H1>ROLES SCREEN</H1>
9148 <H2>ROLES COMMANDS</H2>
9149 <!--chtml if pinemode="function_key"-->
9150 <PRE>
9151 Available  Commands                        
9152 -------------------------------            
9153 F1  Show Help Text
9154 F3  Exit without a selection
9155 F4  Select a role to use in composition
9156 F5  Move to previous role
9157 F6  Move to next role
9158 F7  Previous page of roles
9159 F8  Next page of roles
9160 F11 Change Default Role
9161 F12 Whereis (search role nicknames)
9162 </PRE>
9163 <!--chtml else-->
9164 <PRE>
9165 Navigation                     General Alpine Commands
9166 -------------------------      -----------------------
9167  P  Prev Role                     ?  Display this help text
9168  N  Next Role                     E  Exit without a selection
9169  -  Previous page
9170 Spc (space bar) Next page
9171  W  WhereIs (search for word in role nicknames)
9173 Select Role Commands
9174 ------------------------------------------------
9175  [Return]  Select highlighted role
9176  D         Change Default Role
9177 </PRE>
9178 <!--chtml endif-->
9180 <H2>Description of the Roles Screen</H2>
9182 With this screen you select a role to be used in the composition of a
9183 message.
9184 Use the Previous and Next commands to highlight the role you wish to
9185 use.
9186 When you type carriage return you will be placed in the composer using the highlighted role.
9188 You don't have any non-default <A HREF="h_rules_roles">roles</A>
9189 available unless you set them up.
9190 You may do so by using the Setup/Rules command on the MAIN MENU.
9192 By using the D command, you may set a default role that will persist until
9193 you change it or until you exit Alpine.
9194 The D command toggles through three states: set the default role, unset the
9195 default role, and leave the default role as it is.
9196 <P><UL>
9197 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9198 </UL>
9200 &lt;End of help on this topic&gt;
9201 </BODY>
9202 </HTML>
9203 ===== h_role_abook_select =====
9204 <HTML>
9205 <HEAD>
9206 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
9207 </HEAD>
9208 <BODY>
9209 <H1>SELECT ADDRESS BOOK SCREEN</H1>
9210 <H2>COMMANDS</H2>
9211 <!--chtml if pinemode="function_key"-->
9212 <PRE>
9213 Available  Commands                        
9214 -------------------------------            
9215 F1  Show Help Text
9216 F3  Exit screen without selecting anything
9217 F4  Select highlighted address book
9218 F5  Move to previous address book
9219 F6  Move to next address book
9220 F7  Previous page of address books
9221 F8  Next page of address books
9222 F12 Whereis
9223 </PRE>
9224 <!--chtml else-->
9225 <PRE>
9226 Navigation                     General Alpine Commands
9227 -------------------------      -----------------------
9228  P  Previous addrbook          ?  Display this help text
9229  N  Next addrbook
9230  -  Previous page
9231 Spc (space bar) Next page
9232  W  WhereIs
9234 Select Role Commands
9235 ------------------------------------------------
9236  S  Select highlighted address book
9237  E  Exit screen without selecting anything
9238 </PRE>
9239 <!--chtml endif-->
9241 <H2>Description of the Select Address Book Screen</H2>
9243 This screen helps you select one of your address books.
9244 Use the Previous and Next commands to highlight the address book you wish to
9245 select.
9246 <P><UL>
9247 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9248 </UL>
9250 &lt;End of help on this topic&gt;
9251 </BODY>
9252 </HTML>
9253 ======== h_rule_patterns =============
9254 <HTML>
9255 <HEAD>
9256 <TITLE>PATTERNS</TITLE>
9257 </HEAD>
9258 <BODY>
9259 <H1>PATTERNS</H1>
9260 Patterns are used with Roles, Filtering, Index Coloring,
9261 Scoring, Other Rules, and Search Rules.
9262 Patterns are compared with a message to see if there is a match.
9263 For Filtering, the messages being checked are all the messages in the
9264 folder, one at a time.
9265 For Index Line Coloring, each message that is visible on the screen is
9266 checked for matches with the Index Coloring Patterns.
9267 Roles are used with the Reply, Forward, and Compose commands.
9268 For Reply, the message used to compare the Pattern with is the message
9269 being replied to;
9270 for Forward, the message used to compare the Pattern with is the message
9271 being forwarded;
9272 and for Compose, there is no message, so the parts of the Pattern that depend
9273 on a message (everything other than Current Folder Type and the
9274 Beginning of Month and Year)
9275 are not used.
9276 Only the Current Folder Type matters for Compose (plus the Beginning of
9277 Month or Year, which you wouldn't usually use for a Role).
9278 For Scoring, the message being scored is compared with all of the Score
9279 Patterns, and the Score Values from the ones that match are added together to 
9280 get the message's score.
9281 For Other Rules, there is no message. Only the Current Folder Type is checked
9282 for Other Rules.
9284 Each Pattern has several possible parts, all of which are optional.
9285 In order for there to be a match, <EM>ALL</EM> of the
9286 <EM>defined</EM> parts of the Pattern must match the message.
9287 If a part is not defined it is considered a match, but note that a filtering
9288 Pattern must have at least one defined part or it will be ignored.
9289 For example, if the To pattern is not defined it will be
9290 displayed as
9292 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
9294 That is considered a match because it is not defined.
9295 This means that the Pattern with nothing defined is a match if the
9296 Current Folder Type matches, but there is an exception that was mentioned
9297 in the previous paragraph.
9298 Because filtering is a potentially destructive action, filtering Patterns
9299 with nothing other than Current Folder Type defined are ignored.
9300 If you really want a filtering Pattern to match all messages (subject to
9301 Current Folder Type) the best way to do it is to define a Score interval
9302 that includes all possible scores.
9303 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
9304 This can be used even if you haven't defined any rules to Set Scores.
9306 There are six predefined header patterns called the To, From, Sender, Cc, News,
9307 and Subject patterns.
9308 Besides those six predefined header patterns, you may add
9309 additional header patterns with header fieldnames of your choosing.
9310 You add an extra header pattern by placing the cursor on one of the
9311 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
9312 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
9313 and the Partic pattern is a header pattern that stands for
9314 Participant (From OR To OR Cc).
9315 (Defining the Recip pattern does not have the same effect as defining both
9316 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
9317 Similar to the header patterns are the AllText pattern and the BodyText pattern.
9318 Instead of comparing this pattern's text against only the contents of
9319 a particular header field, the text for the AllText pattern is compared
9320 with text anywhere in the message's header or body, and the text for the
9321 BodyText pattern is compared with text anywhere in the message's body.
9323 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
9324 &quot;!&quot; &quot;toggle NOT&quot; command.
9325 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9326 &quot;!&quot; at the beginning of the pattern line.
9327 When the &quot;!&quot; is present, it reverses the meaning of the match.
9328 That is, if the pattern matches then it is considered to NOT be a match, and
9329 if it does not match it is considered to be a match.
9331 Don't make the mistake of putting the &quot;!&quot; in the data field for
9332 a pattern.
9333 For example, if you type the characters &quot;!urgent&quot; into the Subject
9334 pattern, the pattern will look like:
9336 <PRE>
9337  Subject pattern = !urgent
9338 </PRE>
9340 This means you want to match the 7 character sequence &quot;!urgent&quot;.
9341 In order to match messages that do not have &quot;urgent&quot; in
9342 their Subject field, first type the characters &quot;urgent&quot; followed
9343 by carriage return for the value of the Subject pattern, then negate it
9344 by typing the &quot;!&quot; command.
9345 It should look like
9347 <PRE>
9348  ! Subject pattern = urgent
9349 </PRE>
9351 The contents of each of these header patterns (or the AllText or BodyText patterns) may
9352 be a complete email address, part of an address, or a random set of
9353 characters to match against.
9354 It may also be a list of such patterns, which means you
9355 are looking for a match against the first pattern in the list <EM>OR</EM>
9356 the second pattern <EM>OR</EM> the third and so on.
9357 For example, a Subject pattern equal to
9359 <PRE>
9360  Subject pattern = urgent
9361                    emergency
9362                    alert
9363 </PRE>
9365 would match all messages with a subject that contained at least one
9366 of those words.
9367 It would also match subjects containing the words &quot;alerts&quot; or
9368 &quot;Urgently&quot;.
9370 The same example with &quot;NOT&quot; turned on would be
9372 <PRE>
9373  ! Subject pattern = urgent
9374                      emergency
9375                      alert
9376 </PRE>
9378 which would match all messages with a subject that did <EM>NOT</EM> contain any of
9379 those words.
9380 You can use the &quot;Add Value&quot; command to add new words to the list,
9381 or you can enter them as a comma-separated list.
9383 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
9384 present for a match.
9385 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
9386 pattern2 must be present,
9387 and that is exactly what using a list does.)
9389 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
9390 also part of the Pattern, although the &quot;Score Interval&quot; is not used
9391 when checking for matches for Scoring.
9392 There are five similar settings that relate to the status of the message.
9393 These settings rely on the message being New or not, Deleted or not,
9394 Answered or not, Important or not, and Recent or not.
9395 There are also some other miscellaneous settings.
9396 The first is the Age of the message in days.
9397 Another is the Size of the message, in bytes.
9398 The third is a setting that detects whether or not the Subject of a
9399 message contains raw 8-bit characters (unencoded characters with the most
9400 significant bit set).
9401 There is a setting that detects whether or not this is the first time
9402 Alpine has been run this month (doesn't depend on individual messages),
9403 and another that detects whether or not this is the first time Alpine has
9404 been run this year.
9405 Other parts of the Pattern detect whether or not the From address of a
9406 message appears in your address book, whether or not certain keywords
9407 are set for a message, and whether or not certain character sets are
9408 used in a message.
9410 <H2>Parts of a Pattern</H2>
9412 <H3>Header patterns</H3>
9414 A header pattern is simply text that is searched for in the corresponding
9415 header field.
9416 For example, if a Pattern has a From header pattern with the value
9417 &quot;@company.com&quot;, then only messages that have a From header
9418 that contains the text &quot;@company.com&quot; will be possible
9419 matches.
9420 Matches don't have to be exact.
9421 For example, if the relevant field of a message contains the text
9422 &quot;mailbox@domain&quot; somewhere
9423 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
9424 &quot;mailbox@domain&quot; are all matches.
9426 All parts of the Pattern must match so, for example,
9427 if a message matches a defined
9428 From pattern, it still must be checked against the other parts of the
9429 Pattern that have been defined.
9430 The To header pattern is a slightly special case.
9431 If the message being checked has a Resent-To header
9432 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
9433 there are used in place of the addresses in the To header.
9434 This is only true for the To header.
9435 Resent-cc and Resent-From headers are never used unless you add them
9436 with the eXtraHdrs command.
9438 The meaning of a header pattern may be negated with the
9439 &quot;!&quot; &quot;toggle NOT&quot; command.
9440 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9441 &quot;!&quot; at the beginning of the pattern line.
9442 It would look something like
9444 <PRE>
9445  ! From pattern = susan@example.com
9446 </PRE>
9448 When the &quot;!&quot; is present, it reverses the meaning of the match.
9450 If you want to check for the presence of a header field but don't care
9451 about its value, then
9452 the empty pattern that you get by entering a pair of
9453 double quotes (&quot;&quot;) should match any message that
9454 has the corresponding header field.
9456 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
9458 AllText patterns are just like header patterns except that the text is
9459 searched for anywhere in the message's headers or body, not just in the
9460 contents of a particular header field.
9463 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
9465 BodyText patterns are just like header patterns except that the text is
9466 searched for anywhere in the message's body, not just in the
9467 contents of a particular header field.
9470 If there is more than one header pattern or AllText pattern or BodyText pattern
9471 for which you want to take the
9472 same action there is a shorthand notation that may be used.
9473 Any of these patterns may be a list of patterns instead of
9474 just a single pattern.
9475 If any one of the patterns in the list matches the message
9476 then it is considered a match.
9477 For example, if &quot;company1&quot; and &quot;company2&quot; both required
9478 you to use the same role when replying to messages, you might have
9479 a To pattern that looks like
9481 <PRE>
9482  To pattern = company1.com
9483               company2.com
9484 </PRE>
9486 This means that if the mail you are replying to was addressed to
9487 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
9488 then this Pattern is a match and the same actions will be taken.
9490 The meaning of an AllText or BodyText pattern may be negated with the
9491 &quot;!&quot; &quot;toggle NOT&quot; command.
9492 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9493 &quot;!&quot; at the beginning of the pattern line.
9494 When the &quot;!&quot; is present, it reverses the meaning of the match.
9496 A technicality: Since comma is the character used to separate multiple values
9497 in any of the fields that may have multiple values (such as header patterns,
9498 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
9499 you must escape comma with a
9500 backslash (&#92;) if you want to include a literal comma in one of those fields.
9501 In other words, if you type a backslash followed by a comma it will
9502 be interpreted as a comma by Alpine, instead of as a separator between
9503 pattern values.
9504 All other backslashes (those not followed by a comma) are literal
9505 backslashes and should not be escaped.
9506 It's unlikely you'll ever need to enter a literal comma or backslash in
9507 any of the patterns.
9509 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
9511 The &quot;Current Folder Type&quot; may be set to one of four different
9512 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
9513 &quot;Specific&quot;.
9514 If the value is set to &quot;News&quot;, then the
9515 Pattern will only match if the currently open folder is a newsgroup.
9516 The value &quot;Email&quot; only matches if the current folder is not news and
9517 the value &quot;Any&quot; causes any folder to match.
9518 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
9519 then you must fill in a value for &quot;Folder&quot;, which is on the line
9520 below the &quot;Specific&quot; line.
9521 In this case you will only get a match if the currently open folder is
9522 the specific folder you list.
9523 You may give a list of folders instead of just a single
9524 folder name, in which case the Pattern will match if the open folder is
9525 any one of the folders in the list.
9526 The name of each folder in the list may be either &quot;INBOX&quot;,
9527 the technical specification
9528 of the folder (like what appears in your configuration file) or, if the
9529 folder is one of your incoming folders, it may be the nickname you've given
9530 the folder.
9531 Here are some samples of specific folder names:
9533 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
9535 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
9537 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
9539 The easiest way to fill in the &quot;Folder&quot; field is to use
9540 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
9541 highlighted, or to use the &quot;Take&quot; command with the configuration
9542 feature
9543 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
9544 turned on.
9546 When reading a newsgroup, there may be a performance penalty
9547 incurred when collecting the information necessary to check whether
9548 or not a Pattern matches a message.
9549 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
9550 If you have Patterns with a Current Folder Type of either
9551 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
9552 Index Line Coloring or Scoring, you may experience
9553 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
9555 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
9557 The &quot;Age Interval&quot; may be set to an interval of message
9558 ages that should be considered a match.
9559 Like the other parts of the Pattern, if it is unset it will be ignored.
9560 The Age Interval looks like
9562 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
9564 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
9565 than or equal to zero.
9566 The special value &quot;INF&quot; may be used for
9567 the max value. It represents infinity.
9569 Actually, this option may be defined as a list of intervals instead
9570 of just a single interval.
9571 The list is separated by commas.
9572 It can look like
9574 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
9576 When there is an Age Interval defined, it is a match if the age, in days, of
9577 the message is contained in any of the intervals.
9578 The intervals include both endpoints.
9580 Even though this option is called Age, it isn't actually
9581 the <EM>age</EM> of the message.
9582 Instead, it is how many days ago the message arrived in one of your folders.
9583 If the current time is a little past midnight, then a message that arrived
9584 just before midnight arrived yesterday, even though the message is only
9585 a few minutes old.
9586 By default, the date being used is not the date in the Date
9587 header of the message.
9588 It is the date that the message arrived in one of your folders.
9589 When you Save a message from one folder to another that arrival date
9590 is preserved.
9591 If you would like to use the date in the Date header that is possible.
9592 Turn on the option
9593 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
9594 near the bottom of the rule definition.
9595 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
9597 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
9599 The &quot;Size Interval&quot; may be set to an interval of message
9600 sizes that should be considered a match.
9601 Like the other parts of the Pattern, if it is unset it will be ignored.
9602 The Size Interval looks like
9604 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
9606 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
9607 than or equal to zero.
9608 The special value &quot;INF&quot; may be used for
9609 the max value. It represents infinity.
9611 Actually, this option may be defined as a list of intervals instead
9612 of just a single interval.
9613 The list is separated by commas.
9614 It can look like
9616 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
9618 When there is a Size Interval defined, it is a match if the size, in bytes, of
9619 the message is contained in any of the intervals.
9620 The intervals include both endpoints.
9622 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
9624 The &quot;Score Interval&quot; may be set to an interval of message
9625 scores that should be considered a match.
9626 Like the other parts of the Pattern, if it is unset it will be ignored.
9627 The Score Interval looks like
9629 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
9631 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
9632 negative integers, with min_score less than or equal to max_score.
9633 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
9634 the min and max values to represent negative and positive infinity.
9636 Actually, a list of intervals may be used if you wish.
9637 A list would look like
9639 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
9641 When there is a Score Interval defined, it is a match if the score for
9642 the message is contained in any of the intervals in the list.
9643 The intervals include the endpoints.
9644 The score for a message is calculated by looking at every Score rule defined and
9645 adding up the Score Values for the ones that match the message.
9646 When deciding whether or not a Pattern matches a message for purposes of
9647 calculating the score, the Score Interval is ignored.
9649 <H3><A NAME="pattern_message_status">Message Status</A></H3>
9651 There are five separate message status settings.
9652 By default, all five are set to the value &quot;Don't care&quot;, which
9653 will match any message.
9654 The value &quot;Yes&quot; means that the particular status must be true
9655 for a match, and the value &quot;No&quot; means that the particular
9656 status must not be true for a match.
9657 For example, one of the five Message Status settings is whether a message
9658 is marked Important or not.
9659 A &quot;Yes&quot; means that the message must be Important to be
9660 considered a match and &quot;No&quot; means that the message must not be
9661 Important to be considered a match.
9662 The same is true of the other four message status settings that depend
9663 on whether or not the message is New; whether the message has 
9664 been Answered or not; whether the message has been Deleted or not, and
9665 whether the message is Recent or not. 
9667 The nomenclature for New and Recent is a bit confusing:
9669 New means that the message is Unseen.
9670 It could have been in your mailbox for a long time but if you haven't looked
9671 at it, it is still considered New.
9672 That matches the default Alpine index display that shows an N for such a
9673 message.
9675 Recent means that the message was added to this folder since the last time
9676 you opened the folder.
9677 Alpine also shows an N by default for these types of messages.
9678 If you were to run two copies of Alpine that opened a folder one right after
9679 the other, a message would only show up as Recent in (at most) the first
9680 Alpine session.
9682 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
9684 Keywords are similar to Message Status, but they are chosen by the user.
9685 Provided the mail server allows for it, you may add a set of possible keywords
9686 to a folder and then you may set those keywords or not for each message
9687 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
9688 The syntax of this part of the Pattern is similar to the header patterns.
9689 It is a list of keywords.
9690 The Keyword part of the Pattern is a match if the message has any of
9691 the keywords in the list set.
9692 Like other parts of the Pattern, if this is unset it will be ignored.
9694 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
9696 A message may use one or more character sets.
9697 This part of the Pattern matches messages that make use of one or more of
9698 the character sets specified in the pattern.
9699 It will be considered a match if a message uses any of the character
9700 sets in the list you give here.
9703 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
9704 GB2312) you may also use some shorthand names that Alpine provides.
9705 These names are more understandable shorthand names for sets of 
9706 character set names.
9707 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
9708 Selecting one of these shorthand names is equivalent to selecting all of
9709 the character sets that make up the set.
9710 You can see all of these shorthand names and the lists of character sets
9711 they stand for by typing the &quot;T&quot; command with the Character
9712 Set pattern highlighted.
9713 The syntax of this part of the Pattern is similar to the header patterns
9714 and the Message Keywords pattern.
9715 It is a list of character sets (or shorthand names).
9716 The Character Set part of the Pattern is a match if the message uses any
9717 of the character sets in the list.
9718 Like other parts of the Pattern, if this is unset it will be ignored.
9720 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
9722 It seems that lots of unwanted email contains unencoded 8-bit characters
9723 in the Subject.
9724 Normally, characters with the 8th bit set are not allowed in the Subject
9725 header unless they are MIME-encoded.
9726 This option gives you a way to match messages that have Subjects that
9727 contain unencoded 8-bit characters.
9728 By default, the value of this option is &quot;Don't care&quot;, which
9729 will match any message.
9730 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
9731 the Subject of the message in order for there to be a match,
9732 and the value &quot;No&quot; is the opposite.
9733 Setting this option will affect performance in large folders because the
9734 subject of each message in the folder has to be checked.
9736 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
9738 This option gives you a way to take some action once per month.
9739 By default, the value of this option is &quot;Don't care&quot;, which
9740 will always match.
9741 The value &quot;Yes&quot; means that this must be the first time Alpine has
9742 been run this month in order to count as a match,
9743 and the value &quot;No&quot; is the opposite.
9745 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
9747 This option gives you a way to take some action once per year.
9748 By default, the value of this option is &quot;Don't care&quot;, which
9749 will always match.
9750 The value &quot;Yes&quot; means that this must be the first time Alpine has
9751 been run this year in order to count as a match,
9752 and the value &quot;No&quot; is the opposite.
9754 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
9756 This option gives you a way to match messages that have an address
9757 that is in one of your address books.
9758 Only the simple entries in your address books are searched.
9759 Address book distribution lists are ignored!
9760 By default, the value of this option is &quot;Don't care&quot;, which
9761 will match any message.
9762 The value &quot;Yes, in any address book&quot; means the address
9763 from the message must be in at least one of your
9764 address books in order to be a match.
9765 The value &quot;No, not in any address book&quot;
9766 means none of the addresses may
9767 be in any of your address books in order to be a match.
9768 The values &quot;Yes, in specific address books&quot; and
9769 &quot;No, not in any of specific address books&quot; are similar but instead
9770 of depending on all address books you are allowed to give a list of address
9771 books to look in.
9772 The addresses from the message that are checked for are determined by the
9773 setting you have for &quot;Types of addresses to check for in address book&quot;.
9774 If you set this to &quot;From&quot; the From address from the message will
9775 be looked up in the address book.
9776 If you set it to only &quot;To&quot; then the To addresses will be used.
9777 If any of the To addresses are in the address book then it is considered
9778 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
9779 You could set it to both From and To, in which case all of the From and To
9780 addresses are used.
9781 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
9782 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
9783 exists or the From address if there is no Reply-To address.
9784 Same for the Sender address.
9785 Setting this option may affect performance in large folders because the
9786 From and Reply-To of each message in the folder have to be checked.
9788 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
9790 This is a command that is run with its standard input set to the message
9791 being checked and its standard output discarded.
9792 The full directory path should be specified.
9793 The command will be run and then its exit status will be checked against
9794 the Exit Status Interval, which defaults to just the value zero.
9795 If the exit status of the command falls in the interval, it is considered
9796 a match, otherwise it is not a match.
9799 This option may actually be a list of commands.
9800 The first one that exists and is executable is used.
9801 That makes it possible to use the same configuration with Unix Alpine and
9802 PC-Alpine.
9805 If none of the commands in the list exists and is executable then the rule
9806 is <EM>not</EM> a match.
9807 If it is possible that the command may not exist, you should be careful
9808 to structure your rules so that nothing destructive
9809 happens when the command does not exist.
9810 For example, you might have a filter that filters away spam when there is
9811 a match but does nothing when there is not a match.
9812 That would continue to work correctly if the command didn't exist.
9813 However, if you have a filter that filters away spam when there is not
9814 a match and keeps it when there is a match, that would filter everything
9815 if the categorizer command didn't exist.
9817 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
9818 setup for the bogofilter filter.
9821 &lt;End of help on this topic&gt;
9822 </BODY>
9823 </HTML>
9824 ===== h_rules_roles =====
9825 <HTML>
9826 <HEAD>
9827 <TITLE>SETUP ROLES SCREEN</TITLE>
9828 </HEAD>
9829 <BODY>
9830 <H1>SETUP ROLES SCREEN</H1>
9831 <H2>SETUP ROLES COMMANDS</H2>
9832 <!--chtml if pinemode="function_key"-->
9833 <PRE>
9834 Available  Commands -- Group 1         Available Commands -- Group 2   
9835 -------------------------------        ------------------------------  
9836 F1  Show Help Text                      F1  Show Help Text             
9837 F2  See commands in next group          F2  See commands in next group
9838 F3  Back to MAIN Alpine menu
9839 F4  Change configuration for role
9840 F5  Move to previous role               F5  Include file in role config
9841 F6  Move to next role                   F6  Exclude file from config
9842 F7  Previous page of roles
9843 F8  Next page of roles
9844 F9  Add new role                        F9  Replicate existing role
9845 F10 Delete existing role
9846 F11 Shuffle the order of roles
9847 F12 Whereis (search role nicknames)
9848 </PRE>
9849 <!--chtml else-->
9850 <PRE>
9851 Navigation                     General Alpine Commands
9852 -------------------------      -----------------------
9853  P  Prev Role                     ?  Display this help text
9854  N  Next Role                     E  Back to MAIN Alpine menu
9855  -  Previous page
9856 Spc (space bar) Next page
9857  W  WhereIs (search for word in role nicknames)
9859 Setup Roles Commands
9860 ------------------------------------------------
9861  A  Add new role                  $  Shuffle the order of roles
9862  D  Delete existing role          C  Change configuration for highlighted role
9863  R  Replicate existing role
9864  I  Include file in role config   X  Exclude file from role config
9865 </PRE>
9866 <!--chtml endif-->
9868 <H2>Description of the Setup Roles Screen</H2>
9870 This screen lets you add, delete, modify, or change the order of the rules
9871 that determine the role you are playing when composing a message.
9873 You may play different roles depending on who you are replying to.
9874 For example, if you are replying to a message addressed to help-desk you
9875 may be acting as a Help Desk Worker.
9876 That role may require that you use a different return address and/or
9877 a different signature.
9879 Roles are optional.
9880 If you set up roles they work like this:  Each role has a set of
9881 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
9882 considered for a particular use; a &quot;Pattern&quot;,
9883 which is used to decide which of the eligible roles is used; and a set
9884 of &quot;Actions&quot;, which are taken when that role is used.
9885 When you reply to a message, the message you are replying to is compared
9886 with the Patterns of the roles marked as eligible for use when replying.
9887 The comparisons start with the first eligible role and keep going until there
9888 is a match.
9889 If a match is found, the matching role's Actions are taken.
9891 It is also possible to set a default role and to change that role during
9892 your Alpine session.
9893 When you start Alpine no default role will be set.
9894 You may set or change the current default role by using the &quot;D&quot;
9895 command in the role selection screen.
9896 You'll see that screen while composing a message and being asked to select
9897 a role.
9898 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
9899 compose a message.
9900 You may find a default role useful if you normally perform the duties of one
9901 of your roles for a while, then you switch to another role and stay in the
9902 new role for another period of time.
9903 It may be easier than using the Role Command to select the role each time you
9904 compose a message.
9906 <H2>Role Uses</H2>
9908 There are three types of use to be configured;
9909 one for Replying, one for Forwarding, and one for Composing.
9910 These indicate whether or not you want a role to be considered when you
9911 type the Reply, Forward, or Compose commands.
9912 (The Role command is an alternate form of the Compose command, and it is
9913 not affected by these settings.)
9914 Each of these Use types has three possible values.
9915 The value &quot;Never&quot;
9916 means that the role will never be considered as a candidate for use with
9917 the corresponding command.
9918 For example, if you set a role's Reply Use to Never, then when you Reply to
9919 a message, that role won't even be considered.
9920 (That isn't quite true. If the message you are replying to matches some other
9921 role that requires confirmation,
9922 then there will be a ^T command available which allows you to select a role
9923 from all of your roles, not just the reply-eligible roles.)
9926 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
9927 both mean that you do want to consider this role when using the corresponding
9928 command.
9929 For either of these settings the role's Pattern will
9930 be checked to see if it matches the message.
9931 For Reply Use, the message used to compare the Pattern with is the message
9932 being replied to.
9933 For Forward Use, the message used to compare the Pattern with is the message
9934 being forwarded.
9935 For Compose Use, there is no message, so the parts of the Pattern that depend
9936 on a message (everything other than Current Folder Type) are ignored.
9937 In all cases, the Current Folder Type is checked if defined.
9938 If there is a match then this role will either be used without confirmation
9939 or will be the default when confirmation is asked for, depending on
9940 which of the two options is selected.
9941 If confirmation is requested, you will have a chance to
9942 choose No Role instead of the offered role, or to
9943 change the role to any one of your other roles (with the ^T command).
9945 <H2>Role Patterns</H2>
9947 In order to determine whether or not a message matches a role the message is
9948 compared with the Role's Pattern.
9949 These Patterns are the same for use with Roles, Filtering, Index Coloring,
9950 Scoring, Other Rules, and Search Rules, so are described in only one place,
9951 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
9953 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
9954 a role that has all header patterns unset, the AllText pattern unset,
9955 the BodyText pattern unset,
9956 the Score Interval unset, and the Current Folder Type set to
9957 &quot;Any&quot; may be used as a default role.
9958 It should be put last in the list of roles since the matching
9959 starts at the beginning and proceeds until one of the roles is a match.
9960 If no roles at all match, then Alpine will
9961 use its regular methods of defining the role.
9962 If you wanted to, you could define a different &quot;default&quot; role
9963 for Replying, Forwarding, and Composing by setting the
9964 &quot;Use&quot; fields appropriately.
9966 <H2>Role Actions</H2>
9968 Once a role match is found, the role's Actions are taken.
9969 For each role there are several possible actions that may be defined.
9970 They are actions to set the From address, the Reply-To address,
9971 the Fcc, the Signature, the Template file, and Other Headers.
9973 <H3>Set From</H3>
9975 The From address is the address used on the From line of the message
9976 you are sending.
9978 <H3>Set Reply-To</H3>
9980 The Reply-To address is the address used on the Reply-To line of the message
9981 you are sending.
9982 You don't need a Reply-To address unless it is different from the From address.
9984 <H3>Set Other Headers</H3>
9986 If you want to set the value of the From or Reply-To headers, use
9987 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
9988 If you want to set the values of other headers, use this field.
9989 This field is similar to the
9990 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
9991 Each header you specify here must include the header tag
9992 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
9993 and may optionally include a value for that header.
9994 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
9995 for a header here will replace any value that already exists.
9996 For example, if you are Replying to a message there will be at least one
9997 address in the To header (the address you are Replying to).
9998 However, if you Reply using a role that sets the To header, that role's
9999 To header value will be used instead.
10001 <H3>Set Fcc</H3>
10003 The Fcc is used as the Fcc for the message you are sending.
10005 <H3>Set Signature or Set LiteralSig</H3>
10007 The Signature is the name of a file to be used as the signature file when
10008 this role is being used.
10009 If the name of the file has a vertical bar following it (|)
10010 then it is assumed that the file is a program that should be run to
10011 produce the signature.
10012 If the LiteralSig is set, then it is used instead of the signature file.
10013 LiteralSig is just a different way to store the signature.
10014 It is stored in the pine configuration file instead of in a separate
10015 signature file.
10016 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
10017 either in the role or as the default signature in the Setup/Config screen,
10018 then the signature file is ignored.
10020 <H3>Set Template</H3>
10022 A Template is the name of a file to be included in the message when this
10023 role is being used.
10024 If the name of the file has a vertical bar following it (|)
10025 then it is assumed that the file is a program that should be run to
10026 produce the template.
10029 Both signature files and template files may be stored remotely on an IMAP
10030 server.
10031 In order to do that you just give the file a remote name.
10032 This works just like the regular
10033 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
10034 option that is configured from the Setup/Configuration screen.
10035 A remote signature file name might look like:
10037 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
10039 Once you have named the remote signature or template file you create its
10040 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
10041 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
10042 line of the role editor.
10045 Both signature files and template files (or the output of signature programs
10046 and template file programs) may contain special tokens
10047 that are replaced with contents
10048 that depend on the message being replied to or forwarded.
10049 See the help for the individual fields inside the role editor for more
10050 information on tokens.
10052 <H3>Use SMTP Server</H3>
10054 If this field has a value, then it will be used as the SMTP server
10055 to send mail when this role is being used (unless the SMTP server variable
10056 is set in the system-wide fixed configuration file).
10057 It has the same semantics as the
10058 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
10059 variable in the Setup/Config screen.
10060 When you postpone the composition this SMTP server list will be saved
10061 with the postponed composition and it cannot be changed later.
10062 Because of that, you may want to make this a list of SMTP servers
10063 with the preferred server at the front of the list and alternate servers
10064 later in the list.
10067 If any of the actions are left unset, then the action depends on what
10068 is present in the &quot;Initialize settings using role&quot; field.
10069 If you've listed the nickname of another one of your roles there, then the
10070 corresponding action from that role will be used here.
10071 If that action is also blank, or if there is no nickname specified,
10072 then Alpine will do whatever it normally does to set these actions.
10073 This depends on other configuration options and features you've set.
10075 <H2>Command Descriptions</H2>
10077 <H3>Add</H3>
10079 The Add command is used to add a new role definition to your set of
10080 roles.
10081 The new role will be added after the highlighted role.
10083 <H3>Delete</H3>
10085 The Delete command deletes the currently highlighted role.
10087 <H3>Change</H3>
10089 The Change command lets you edit the nickname, Uses, Pattern,
10090 and Actions of the currently highlighted role.
10092 <H3>Shuffle</H3>
10094 The Shuffle command allows you to change the order of the roles.
10095 You may move the currently highlighted role up or down in the list.
10096 The order of the roles is important since the roles are tested for a
10097 match starting with the first role and continuing until a match is found.
10098 You should place the roles with more specific Patterns near the beginning
10099 of the list, and those with more general Patterns near the end so that
10100 the more specific matches will happen when appropriate.
10102 <H3>Replicate</H3>
10104 The Replicate command is used to copy an existing role and modify it.
10105 The new role will be added after the highlighted role.
10107 <H3>IncludeFile</H3>
10109 The IncludeFile command allows you to add a roles file to your configuration.
10110 Usually, your roles will be contained in your Alpine configuration file.
10111 If you wish, some or all of your roles may be stored in a separate file.
10112 If a roles file already exists (maybe it was made by somebody else using
10113 Alpine), you may insert it before the currently highlighted role.
10114 You may also insert an empty file or a file that does not yet exist.
10115 Once you have an empty roles file in your configuration, you may use
10116 the Shuffle command to move roles into it.
10117 In fact, that's the only way to get the initial role into the file.
10119 <H3>eXcludeFile</H3>
10121 The eXcludeFile command removes a roles file from your roles configuration.
10122 A limitation of the program is that in order to exclude a roles file
10123 that file must have at least one role
10124 in it, otherwise you won't be able to highlight a line in the file.
10125 So you may have to add a dummy role to the file in order to exclude the file.
10126 <P><UL>
10127 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10128 </UL>
10130 &lt;End of help on this topic&gt;
10131 </BODY>
10132 </HTML>
10133 ===== h_rules_other =====
10134 <HTML>
10135 <HEAD>
10136 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
10137 </HEAD>
10138 <BODY>
10139 <H1>SETUP OTHER RULES SCREEN</H1>
10140 <H2>SETUP OTHER RULES COMMANDS</H2>
10141 <!--chtml if pinemode="function_key"-->
10142 <PRE>
10143 Available  Commands -- Group 1         Available Commands -- Group 2   
10144 -------------------------------        ------------------------------  
10145 F1  Show Help Text                      F1  Show Help Text             
10146 F2  See commands in next group          F2  See commands in next group
10147 F3  Back to MAIN Alpine menu
10148 F4  Change configuration for rule
10149 F5  Move to previous rule               F5  Include file in rule config
10150 F6  Move to next rule                   F6  Exclude file from config
10151 F7  Previous page of rules
10152 F8  Next page of rules
10153 F9  Add new rule                        F9  Replicate existing rule
10154 F10 Delete existing rule
10155 F11 Shuffle the order of rules
10156 F12 Whereis (search rule nicknames)
10157 </PRE>
10158 <!--chtml else-->
10159 <PRE>
10160 Navigation                     General Alpine Commands
10161 -------------------------      -----------------------
10162  P  Prev rule                     ?  Display this help text
10163  N  Next rule                     E  Back to MAIN Alpine menu
10164  -  Previous page
10165 Spc (space bar) Next page
10166  W  WhereIs (search for word in rule nicknames)
10168 Setup Other Rules Commands
10169 ------------------------------------------------
10170  A  Add new rule                  $  Shuffle the order of rules
10171  D  Delete existing rule          C  Change configuration for highlighted rule
10172  R  Replicate existing rule
10173  I  Include file in rule config   X  Exclude file from rule config
10174 </PRE>
10175 <!--chtml endif-->
10177 <H2>Description of the Setup Other Rules Screen</H2>
10179 This is where you may set various actions that do not fit well into the
10180 other Rules categories.
10182 <H2>Patterns</H2>
10184 Other Rules are a little different from the rest of the Rules because
10185 they depend only on the current folder, and not on a particular message.
10186 In order to determine whether or not a rule's actions should be applied
10187 the current folder is compared with the rule's Pattern, which consists
10188 of only the Current Folder Type.
10189 Current Folder Type works the same for Other Rules as it does for Roles,
10190 Filtering, Index Coloring, and Scoring.
10191 Keep in mind that the only part of the Pattern that applies to Other
10192 Rules is the Current Folder Type when looking at the description of
10193 Patterns given
10194 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10196 <H2>The Actions</H2>
10198 <H3>Set Sort Order</H3>
10200 When you enter a new folder, these rules will be checked to see if you
10201 have set a sort order that is different from your default sort order.
10202 The default is set in the Setup/Config screen with
10203 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
10204 If the Sort Order action is set, then the folder will be displayed sorted in
10205 that sort order instead of in the default order.
10207 A possible point of confusion arises when you change the configuration
10208 of the Sort Order for the currently open folder.
10209 The folder will normally be re-sorted when you go back to viewing the
10210 index.
10211 However, if you have manually sorted the folder with the
10212 Sort
10213 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
10214 command, then it will not be re-sorted until the next time it is opened.
10216 <H3>Set Index Format</H3>
10218 When you enter a new folder, these rules will be checked to see if you
10219 have set an Index Format that is different from your default Index Format,
10220 which is set with the
10221 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
10222 If so, the index will be displayed with this format instead of the default.
10224 <H3>Set Startup Rule</H3>
10226 When you enter a new folder, these rules will be checked to see if you
10227 have set a startup rule that is different from the default startup rule.
10228 The default for incoming folders is set in the Setup/Config screen with
10229 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
10230 The default for folders other than INBOX that are not part of your
10231 incoming collection
10232 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
10233 is to start with the last message in the folder.
10234 If the Startup Rule is set to something other than &quot;default&quot;,
10235 then the rule will determine which message will be the current message when
10236 the folder is first opened.
10238 The various startup rule possibilities work the same here as they do in
10239 the incoming collection, so check
10240 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
10241 for more help.
10243 <H2>Command Descriptions</H2>
10245 <H3>Add</H3>
10247 The Add command is used to add a new rule definition to your set of
10248 rules.
10249 The new rule will be added after the highlighted rule.
10251 <H3>Delete</H3>
10253 The Delete command deletes the currently highlighted rule.
10255 <H3>Change</H3>
10257 The Change command lets you edit the nickname, Pattern,
10258 and Action of the currently highlighted rule.
10260 <H3>Shuffle</H3>
10262 The Shuffle command allows you to change the order of the rules.
10263 You may move the currently highlighted rule up or down in the list.
10264 The order of the rules is important since the rules are tested for a
10265 match starting with the first rule and continuing until a match is found.
10266 You should place the rules with more specific Patterns near the beginning
10267 of the list, and those with more general Patterns near the end so that
10268 the more specific matches will happen when appropriate.
10270 <H3>Replicate</H3>
10272 The Replicate command is used to copy an existing rule definition and modify it.
10273 The new rule will be added after the highlighted rule.
10275 <H3>IncludeFile</H3>
10277 The IncludeFile command allows you to add a rules file to your configuration.
10278 Usually, your rules will be contained in your Alpine configuration file.
10279 If you wish, some or all of your rules may be stored in a separate file.
10280 If a rules file already exists (maybe it was made by somebody else using
10281 Alpine), you may insert it before the currently highlighted rule.
10282 You may also insert an empty file or a file that does not yet exist.
10283 Once you have an empty rules file in your configuration, you may use
10284 the Shuffle command to move rules into it.
10285 In fact, that's the only way to get the initial rule into the file.
10287 <H3>eXcludeFile</H3>
10289 The eXcludeFile command removes a rules file from your rules configuration.
10290 A limitation of the program is that in order to exclude a rules file
10291 that file must have at least one rule
10292 in it, otherwise you won't be able to highlight a line in the file.
10293 So you may have to add a dummy rule to the file in order to exclude the file.
10294 <P><UL>
10295 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10296 </UL>
10298 &lt;End of help on this topic&gt;
10299 </BODY>
10300 </HTML>
10301 ===== h_rules_srch =====
10302 <HTML>
10303 <HEAD>
10304 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
10305 </HEAD>
10306 <BODY>
10307 <H1>SETUP SEARCH RULES SCREEN</H1>
10308 <H2>SETUP SEARCH RULES COMMANDS</H2>
10309 <!--chtml if pinemode="function_key"-->
10310 <PRE>
10311 Available  Commands -- Group 1         Available Commands -- Group 2   
10312 -------------------------------        ------------------------------  
10313 F1  Show Help Text                      F1  Show Help Text             
10314 F2  See commands in next group          F2  See commands in next group
10315 F3  Back to MAIN Alpine menu
10316 F4  Change configuration for rule
10317 F5  Move to previous rule               F5  Include file in rule config
10318 F6  Move to next rule                   F6  Exclude file from config
10319 F7  Previous page of rules
10320 F8  Next page of rules
10321 F9  Add new rule                        F9  Replicate existing rule
10322 F10 Delete existing rule
10323 F11 Shuffle the order of rules
10324 F12 Whereis (search rule nicknames)
10325 </PRE>
10326 <!--chtml else-->
10327 <PRE>
10328 Navigation                     General Alpine Commands
10329 -------------------------      -----------------------
10330  P  Prev rule                     ?  Display this help text
10331  N  Next rule                     E  Back to MAIN Alpine menu
10332  -  Previous page
10333 Spc (space bar) Next page
10334  W  WhereIs (search for word in rule nicknames)
10336 Setup Search Rules Commands
10337 ------------------------------------------------
10338  A  Add new rule                  $  Shuffle the order of rules
10339  D  Delete existing rule          C  Change configuration for highlighted rule
10340  R  Replicate existing rule
10341  I  Include file in rule config   X  Exclude file from rule config
10342 </PRE>
10343 <!--chtml endif-->
10345 <H2>Description of the Setup Search Rules Screen</H2>
10347 One of the commands that becomes available when that feature is turned on
10348 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
10349 screen to select a set of messages.
10350 One way of selecting messages is to use a Rule.
10351 All of the messages that match (or don't match if you wish)
10352 a Rule's Pattern will be selected.
10354 Any of your Rules may be used for this purpose.
10355 You might already have Rules set up for filtering, index line color, scores, or roles;
10356 and you may use any of those Rules with the Select command.
10357 However, you might find it more convenient to set up a separate set of Rules
10358 just for this purpose without having to worry about what other effects
10359 they may cause.
10360 That is the purpose of these Select Rules.
10363 Each rule has a &quot;Pattern&quot;
10364 that is used to decide which messages are selected when you use it with
10365 the Select command.
10367 <H2>Patterns</H2>
10369 In order to determine whether or not a message should be selected
10370 the message is compared with the rule's Pattern.
10371 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10372 Scoring, Other Rules, and Search Rules, so are described in only one place,
10373 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10375 <H2>Command Descriptions</H2>
10377 <H3>Add</H3>
10379 The Add command is used to add a new rule definition to your set of
10380 rules.
10381 The new rule will be added after the highlighted rule.
10383 <H3>Delete</H3>
10385 The Delete command deletes the currently highlighted rule.
10387 <H3>Change</H3>
10389 The Change command lets you edit the nickname and Pattern
10390 of the currently highlighted rule.
10392 <H3>Shuffle</H3>
10394 The Shuffle command allows you to change the order of the rules.
10395 This affects only the order they are presented in when you use the
10396 ^T subcommand of the Select by Rule command.
10397 You may move the currently highlighted rule up or down in the list.
10399 <H3>Replicate</H3>
10401 The Replicate command is used to copy an existing rule definition and modify it.
10402 The new rule will be added after the highlighted rule.
10404 <H3>IncludeFile</H3>
10406 The IncludeFile command allows you to add a rules file to your configuration.
10407 Usually, your rules will be contained in your Alpine configuration file.
10408 If you wish, some or all of your rules may be stored in a separate file.
10409 If a rules file already exists (maybe it was made by somebody else using
10410 Alpine), you may insert it before the currently highlighted rule.
10411 You may also insert an empty file or a file that does not yet exist.
10412 Once you have an empty rules file in your configuration, you may use
10413 the Shuffle command to move rules into it.
10414 In fact, that's the only way to get the initial rule into the file.
10416 <H3>eXcludeFile</H3>
10418 The eXcludeFile command removes a rules file from your rules configuration.
10419 A limitation of the program is that in order to exclude a rules file
10420 that file must have at least one rule
10421 in it, otherwise you won't be able to highlight a line in the file.
10422 So you may have to add a dummy rule to the file in order to exclude the file.
10423 <P><UL>
10424 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10425 </UL>
10427 &lt;End of help on this topic&gt;
10428 </BODY>
10429 </HTML>
10430 ===== h_rules_incols =====
10431 <HTML>
10432 <HEAD>
10433 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
10434 </HEAD>
10435 <BODY>
10436 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
10437 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
10438 <!--chtml if pinemode="function_key"-->
10439 <PRE>
10440 Available  Commands -- Group 1         Available Commands -- Group 2   
10441 -------------------------------        ------------------------------  
10442 F1  Show Help Text                      F1  Show Help Text             
10443 F2  See commands in next group          F2  See commands in next group
10444 F3  Back to MAIN Alpine menu
10445 F4  Change configuration for rule
10446 F5  Move to previous rule               F5  Include file in rule config
10447 F6  Move to next rule                   F6  Exclude file from config
10448 F7  Previous page of rules
10449 F8  Next page of rules
10450 F9  Add new rule                        F9  Replicate existing rule
10451 F10 Delete existing rule
10452 F11 Shuffle the order of rules
10453 F12 Whereis (search rule nicknames)
10454 </PRE>
10455 <!--chtml else-->
10456 <PRE>
10457 Navigation                     General Alpine Commands
10458 -------------------------      -----------------------
10459  P  Prev rule                     ?  Display this help text
10460  N  Next rule                     E  Back to MAIN Alpine menu
10461  -  Previous page
10462 Spc (space bar) Next page
10463  W  WhereIs (search for word in rule nicknames)
10465 Setup Index Color Commands
10466 ------------------------------------------------
10467  A  Add new rule                  $  Shuffle the order of rules
10468  D  Delete existing rule          C  Change configuration for highlighted rule
10469  R  Replicate existing rule
10470  I  Include file in rule config   X  Exclude file from rule config
10471 </PRE>
10472 <!--chtml endif-->
10474 <H2>Description of the Setup Index Line Colors Screen</H2>
10476 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
10477 This action is only available if your terminal is capable of displaying
10478 color and color display has been enabled with the
10479 <A HREF="h_config_color_style">Color Style</A> option within the
10480 Setup Color screen.
10481 (In PC-Alpine, color is always enabled so there is no option to turn on.)
10482 This screen lets you add, delete, modify, or change the order of the rules
10483 that cause the lines in the MESSAGE INDEX to be displayed in different
10484 colors.
10486 Each rule has a &quot;Pattern&quot;,
10487 which is used to decide which of the rules is used; and the color that
10488 is used if the Pattern matches a particular message.
10490 <H2>Index Color Patterns</H2>
10492 In order to determine whether or not a message matches an Index Color Rule
10493 the message is compared with the rule's Pattern.
10494 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10495 Scoring, Other Rules, and Search Rules, so are described in only one place,
10496 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10499 If none of the Index Color rules is a match for a particular index line,
10500 then the color used is set using
10501 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10503 <H2>Index Line Color</H2>
10505 This is the color that index lines are colored when there is a matching
10506 Pattern.
10507 This colors the whole index line, except possibly the status letters,
10508 which may be colored separately using
10509 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10511 <H2>Command Descriptions</H2>
10513 <H3>Add</H3>
10515 The Add command is used to add a new rule definition to your set of
10516 rules.
10517 The new rule will be added after the highlighted rule.
10519 <H3>Delete</H3>
10521 The Delete command deletes the currently highlighted rule.
10523 <H3>Change</H3>
10525 The Change command lets you edit the nickname, Pattern,
10526 and Index Line Color of the currently highlighted rule.
10528 <H3>Shuffle</H3>
10530 The Shuffle command allows you to change the order of the rules.
10531 You may move the currently highlighted rule up or down in the list.
10532 The order of the rules is important since the rules are tested for a
10533 match starting with the first rule and continuing until a match is found.
10534 You should place the rules with more specific Patterns near the beginning
10535 of the list, and those with more general Patterns near the end so that
10536 the more specific matches will happen when appropriate.
10538 <H3>Replicate</H3>
10540 The Replicate command is used to copy an existing rule definition and modify it.
10541 The new rule will be added after the highlighted rule.
10543 <H3>IncludeFile</H3>
10545 The IncludeFile command allows you to add a rules file to your configuration.
10546 Usually, your rules will be contained in your Alpine configuration file.
10547 If you wish, some or all of your rules may be stored in a separate file.
10548 If a rules file already exists (maybe it was made by somebody else using
10549 Alpine), you may insert it before the currently highlighted rule.
10550 You may also insert an empty file or a file that does not yet exist.
10551 Once you have an empty rules file in your configuration, you may use
10552 the Shuffle command to move rules into it.
10553 In fact, that's the only way to get the initial rule into the file.
10555 <H3>eXcludeFile</H3>
10557 The eXcludeFile command removes a rules file from your rules configuration.
10558 A limitation of the program is that in order to exclude a rules file
10559 that file must have at least one rule
10560 in it, otherwise you won't be able to highlight a line in the file.
10561 So you may have to add a dummy rule to the file in order to exclude the file.
10562 <P><UL>
10563 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10564 </UL>
10566 &lt;End of help on this topic&gt;
10567 </BODY>
10568 </HTML>
10569 ===== h_rules_filter =====
10570 <HTML>
10571 <HEAD>
10572 <TITLE>SETUP FILTERING SCREEN</TITLE>
10573 </HEAD>
10574 <BODY>
10575 <H1>SETUP FILTERING SCREEN</H1>
10576 <H2>SETUP FILTERING COMMANDS</H2>
10577 <!--chtml if pinemode="function_key"-->
10578 <PRE>
10579 Available  Commands -- Group 1         Available Commands -- Group 2   
10580 -------------------------------        ------------------------------  
10581 F1  Show Help Text                      F1  Show Help Text             
10582 F2  See commands in next group          F2  See commands in next group
10583 F3  Back to MAIN Alpine menu
10584 F4  Change configuration for filter
10585 F5  Move to previous filter             F5  Include file in filter config
10586 F6  Move to next filter                 F6  Exclude file from config
10587 F7  Previous page of filters
10588 F8  Next page of filters
10589 F9  Add new filter                      F9  Replicate existing filter
10590 F10 Delete existing filter
10591 F11 Shuffle the order of filters
10592 F12 Whereis (search filter nicknames)
10593 </PRE>
10594 <!--chtml else-->
10595 <PRE>
10596 Navigation                     General Alpine Commands
10597 -------------------------      -----------------------
10598  P  Prev Filter                   ?  Display this help text
10599  N  Next Filter                   E  Back to MAIN Alpine menu
10600  -  Previous page
10601 Spc (space bar) Next page
10602  W  WhereIs (search for word in filter nicknames)
10604 Setup Filters Commands
10605 ------------------------------------------------
10606  A  Add new filter                $  Shuffle the order of filters
10607  D  Delete existing filter        C  Change configuration for highlighted filter
10608  R  Replicate existing filter
10609  I  Include file in filter config X  Exclude file from filter config
10610 </PRE>
10611 <!--chtml endif-->
10613 <H2>Description of the Setup Filtering Screen</H2>
10615 This screen lets you add, delete, modify, or change the order of the rules
10616 that determine the filtering Alpine does on folders you view.
10618 The software that actually delivers mail (the stuff that happens
10619 before Alpine is involved) for you is in a better position to do mail filtering
10620 than Alpine itself.
10621 If possible, you may want to look into using that sort of mail filtering to
10622 deliver mail to different folders, delete it, or forward it.
10623 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
10625 Filtering is a way to automatically move certain messages from one folder
10626 to another or to delete messages.
10627 It can also be used to set message status (Important, Deleted, New,
10628 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
10629 Alpine doesn't have the ability to forward mail to another address or
10630 to deliver vacation messages.
10632 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
10633 When a folder is opened, when new mail arrives in an open folder, or
10634 when mail is Expunged from a folder; each
10635 message is compared with the Patterns of your filtering rules.
10636 The comparisons start with the first rule and keep going until there
10637 is a match.
10638 If a match is found, the message may be deleted or moved, depending on
10639 the setting of the Filter Action.
10640 If the message is not deleted, it may have its status altered.
10643 <EM>NOTE:</EM>
10644 When setting up a Pattern used to delete messages,
10645 it is recommended that you test the Pattern first with a &quot;Move&quot;
10646 folder specified in
10647 case unintended matches occur.  Messages that are deleted will be removed 
10648 from the folder and <EM>unrecoverable</EM> from within Alpine after the
10649 next Expunge command or once the folder being filtered has been closed.
10651 <H2>Filter Patterns</H2>
10653 In order to determine whether or not a message matches a filter the message is
10654 compared with the Filter's Pattern.
10655 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10656 Scoring, Other Rules, and Search Rules, so are described in only one place,
10657 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10659 Since filtering is a potentially destructive action, if you have a filtering
10660 Pattern with nothing other than Current Folder Type set, that filtering
10661 rule is ignored.
10663 <H2>Filter Actions</H2>
10665 Once a filter match is found for a particular message, there are some actions
10666 that may be taken.
10667 First, the message may have its status changed.
10668 This is the same message status that you can manipulate manually using the
10669 <a href="h_common_flag">Flag Command</a>.
10670 There are always four elements of message status that you can control.
10671 You can set or clear the Important status, the New status, the Deleted
10672 status, and the Answered status.
10673 Of course, if the filter is going to delete the message,
10674 then there is no point in setting message status.
10675 You may also be able to set user-defined keywords for a message.
10676 Read a little about keywords in the help text for the
10677 <A HREF="h_common_flag">Flag</A> command.
10679 Second, the filter may delete or move the message.
10680 Deleting the message marks it Deleted and removes it from view.
10681 It is effectively gone forever (though it technically is still there until
10682 the next expunge command, which may happen implicitly).
10683 Moving the message moves it from the open folder into the folder
10684 listed on the &quot;Folder List&quot; line of the filter configuration.
10685 If you list more than one folder name (separated by commas) then the message
10686 will be copied to each of those folders.
10687 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
10688 message is removed from the current folder.
10689 If you just want to set the messages status without deleting it from
10690 the folder, then set the filter action to
10691 &quot;Just Set Message Status&quot;.
10693 (There is no way to do a Copy instead of a Move, due to the difficulties
10694 involved in keeping track of whether or not a message has
10695 already been copied.)
10697 <H2>Command Descriptions</H2>
10699 <H3>Add</H3>
10701 The Add command is used to add a new filter definition to your set of
10702 filters.
10703 The new filter will be added after the highlighted filter.
10705 <H3>Delete</H3>
10707 The Delete command deletes the currently highlighted filter.
10709 <H3>Change</H3>
10711 The Change command lets you edit the nickname, Pattern,
10712 and Folder of the currently highlighted filter.
10714 <H3>Shuffle</H3>
10716 The Shuffle command allows you to change the order of the filters.
10717 You may move the currently highlighted filter up or down in the list.
10718 The order of the filters is important since the filters are tested for a
10719 match starting with the first filter and continuing until a match is found.
10720 You should place the filters with more specific Patterns near the beginning
10721 of the list, and those with more general Patterns near the end so that
10722 the more specific matches will happen when appropriate.
10724 <H3>Replicate</H3>
10726 The Replicate command is used to copy an existing filter and modify it.
10727 The new filter will be added after the highlighted filter.
10729 <H3>IncludeFile</H3>
10731 The IncludeFile command allows you to add a filters file to your configuration.
10732 Usually, your filters will be contained in your Alpine configuration file.
10733 If you wish, some or all of your filters may be stored in a separate file.
10734 If a filters file already exists (maybe it was made by somebody else using
10735 Alpine), you may insert it before the currently highlighted filter.
10736 You may also insert an empty file or a file that does not yet exist.
10737 Once you have an empty filters file in your configuration, you may use
10738 the Shuffle command to move filters into it.
10739 In fact, that's the only way to get the initial filter into the file.
10741 <H3>eXcludeFile</H3>
10743 The eXcludeFile command removes a filters file from your filters configuration.
10744 A limitation of the program is that in order to exclude a filters file
10745 that file must have at least one filter
10746 in it, otherwise you won't be able to highlight a line in the file.
10747 So you may have to add a dummy filter to the file in order to exclude the file.
10748 <P><UL>
10749 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10750 </UL>
10752 <H3>Performance Considerations</H3>
10753 The number and type of patterns being tested can 
10754 adversely effect performance.  Issues to be aware
10755 of include:
10757 <UL>
10758   <LI> The more filters you have defined the longer it will take to run down
10759 the list.  Deleting unused filters is a good idea.
10760   <LI> Filtering in newsgroups served by an NNTP server will be slow
10761 if your patterns include tests other than &quot;From:&quot;
10762 or &quot;Subject:&quot;.
10763 </UL>
10765 &lt;End of help on this topic&gt;
10766 </BODY>
10767 </HTML>
10768 ===== h_rules_score =====
10769 <HTML>
10770 <HEAD>
10771 <TITLE>SETUP SCORING SCREEN</TITLE>
10772 </HEAD>
10773 <BODY>
10774 <H1>SETUP SCORING SCREEN</H1>
10775 <H2>SETUP SCORING COMMANDS</H2>
10776 <!--chtml if pinemode="function_key"-->
10777 <PRE>
10778 Available  Commands -- Group 1         Available Commands -- Group 2   
10779 -------------------------------        ------------------------------  
10780 F1  Show Help Text                      F1  Show Help Text             
10781 F2  See commands in next group          F2  See commands in next group
10782 F3  Back to MAIN Alpine menu
10783 F4  Change configuration for rule
10784 F5  Move to previous rule               F5  Include file in rule config
10785 F6  Move to next rule                   F6  Exclude file from config
10786 F7  Previous page of rules
10787 F8  Next page of rules
10788 F9  Add new rule                        F9  Replicate existing rule
10789 F10 Delete existing rule
10790 F11 Shuffle the order of rules
10791 F12 Whereis (search rule nicknames)
10792 </PRE>
10793 <!--chtml else-->
10794 <PRE>
10795 Navigation                     General Alpine Commands
10796 -------------------------      -----------------------
10797  P  Prev rule                     ?  Display this help text
10798  N  Next rule                     E  Back to MAIN Alpine menu
10799  -  Previous page
10800 Spc (space bar) Next page
10801  W  WhereIs (search for word in rule nicknames)
10803 Setup Scoring Commands
10804 ------------------------------------------------
10805  A  Add new rule                  $  Shuffle the order of rules
10806  D  Delete existing rule          C  Change configuration for highlighted rule
10807  R  Replicate existing rule
10808  I  Include file in rule config   X  Exclude file from rule config
10809 </PRE>
10810 <!--chtml endif-->
10812 <H2>Description of the Setup Scoring Screen</H2>
10814 Most people will not use scores at all, but if you do use them, here's how
10815 they work in Alpine.
10816 Using this screen, you may define Scoring rules.
10817 The score for a message is calculated by looking at every Score rule defined
10818 and adding up the Score Values for the ones that match the message.
10819 If there are no matches for a message, it has a score of zero.
10820 Message scores may be used a couple of ways in Alpine.
10822 <H3>Sorting by Score</H3>
10824 One of the methods you may use to sort message indexes is to sort by
10825 score.
10826 The scores of all the messages in a folder will be calculated and then
10827 the index will be ordered by placing the messages in order of ascending or
10828 descending score.
10830 <H3>Scores for use in Patterns</H3>
10832 The Patterns used for Roles, Index Line Coloring, and Filtering have a
10833 category labeled &quot;Score Interval&quot;.
10834 When a message is being compared with a Pattern to check for a match, if
10835 the Score Interval is set only messages that have a score somewhere in
10836 the interval are a match.
10838 <H2>Scoring Rule Patterns</H2>
10840 In order to determine whether or not a message matches a scoring rule
10841 the message is compared with the rule's Pattern.
10842 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10843 Scoring, Other Rules, and Search Rules, so are described in only one place,
10844 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10847 Actually, Scoring rule Patterns are slightly different from the other types of
10848 Patterns because Scoring rule Patterns don't contain a Score Interval.
10849 In other words, when calculating the score for a message, which is done
10850 by looking at the Scoring rule Patterns, scores aren't used.
10852 <H2>Score Value</H2>
10854 This is the value that will be added to the score for a message if the
10855 rule's Pattern is a match.
10856 Each individual Score Value is an integer between -100 and 100, and the
10857 values from matching rules are added together to get a message's score.
10858 There is also a way to extract the value from a particular header of each
10859 message. See the help text for Score Value for further information.
10861 <H2>Command Descriptions</H2>
10863 <H3>Add</H3>
10865 The Add command is used to add a new scoring rule definition.
10866 The new rule will be added after the highlighted rule.
10868 <H3>Delete</H3>
10870 The Delete command deletes the currently highlighted scoring rule.
10872 <H3>Change</H3>
10874 The Change command lets you edit the nickname, Pattern,
10875 and Score Value of the currently highlighted scoring rule.
10877 <H3>Shuffle</H3>
10879 The Shuffle command allows you to change the order of the scoring rules.
10880 You may move the currently highlighted rule up or down in the list.
10881 The order of the rules is important since the rules are tested for a
10882 match starting with the first rule and continuing until a match is found.
10883 You should place the rules with more specific Patterns near the beginning
10884 of the list, and those with more general Patterns near the end so that
10885 the more specific matches will happen when appropriate.
10887 <H3>Replicate</H3>
10889 The Replicate command is used to copy an existing rule and modify it.
10890 The new rule will be added after the highlighted rule.
10892 <H3>IncludeFile</H3>
10894 The IncludeFile command allows you to add a rules file to your configuration.
10895 Usually, your rules will be contained in your Alpine configuration file.
10896 If you wish, some or all of your rules may be stored in a separate file.
10897 If a rules file already exists (maybe it was made by somebody else using
10898 Alpine), you may insert it before the currently highlighted rule.
10899 You may also insert an empty file or a file that does not yet exist.
10900 Once you have an empty rules file in your configuration, you may use
10901 the Shuffle command to move rules into it.
10902 In fact, that's the only way to get the initial rule into the file.
10904 <H3>eXcludeFile</H3>
10906 The eXcludeFile command removes a rules file from your rules configuration.
10907 A limitation of the program is that in order to exclude a rules file
10908 that file must have at least one rule
10909 in it, otherwise you won't be able to highlight a line in the file.
10910 So you may have to add a dummy rule to the file in order to exclude the file.
10911 <P><UL>
10912 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10913 </UL>
10915 &lt;End of help on this topic&gt;
10916 </BODY>
10917 </HTML>
10918 ===== h_direct_config =====
10919 <HTML>
10920 <HEAD>
10921 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
10922 </HEAD>
10923 <BODY>
10924 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
10925 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
10926 <!--chtml if pinemode="function_key"-->
10927 <PRE>
10928 Available  Commands                        
10929 -------------------------------            
10930 F1  Show Help Text                         
10931 F3  Back to MAIN Alpine menu                 
10932 F4  Change configuration for directory server  
10933 F5  Move to previous directory server          
10934 F6  Move to next directory server              
10935 F7  Previous page of directory servers         
10936 F8  Next page of directory servers
10937 F9  Add new directory server
10938 F10 Delete existing directory server
10939 F11 Shuffle the order of directory servers
10940 F12 Whereis (search directory server titles)   
10941 </PRE>
10942 <!--chtml else-->
10943 <PRE>
10944 Navigation                     General Alpine Commands
10945 -------------------------      -----------------------
10946  P  Prev Directory Server         ?  Display this help text
10947  N  Next Directory Server         E  Back to MAIN Alpine menu
10948  -  Previous page
10949 Spc (space bar) Next page
10950  W  WhereIs (search for word in directory server titles)
10952 Setup LDAP Directory Server Commands
10953 ------------------------------------------------
10954  A  Add new directory server      $  Shuffle the order of directory servers
10955  D  Delete existing dir server    C  Change configuration for highlighted server
10956 </PRE>
10957 <!--chtml endif-->
10959 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
10961 This screen lets you add, delete, modify, or change the order of your
10962 directory servers. You may also set some optional behavior for each server.
10963 The &quot;Add Dir&quot; command brings up a blank form to 
10964 fill in. You will have to supply at least the name of the LDAP server.
10965 You will often have to supply a search base to be used with that server,
10966 as well. Once the form has been brought up on your screen, there is help
10967 available for each of the options you may set.
10969 The &quot;Del Dir&quot; command allows you to remove a directory server
10970 from your configuration.
10972 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
10973 The difference is that instead of bringing up a form for a new server
10974 configuration, you are changing the configuration of an existing entry.
10975 For example, you might want to correct a typing error, change a
10976 nickname, or change one of the options set for that server.
10978 The &quot;Shuffle&quot; command is used to change the order of directory
10979 servers.
10980 <P><UL>
10981 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10982 </UL>
10984 &lt;End of help on this topic&gt;
10985 </BODY>
10986 </HTML>
10987 ============= h_address_display ========================
10988 <HTML>
10989 <HEAD>
10990 <TITLE>SEARCH RESULTS INDEX</TITLE>
10991 </HEAD>
10992 <BODY>
10993 <H1>SEARCH RESULTS INDEX</H1>
10994 This screen shows the results, if any, of your Directory Server search.  
10995 Commands (besides those for screen navigation) are:
10996 <DL>
10997 <DT>View
10998 <!--chtml if pinemode="function_key"-->
10999 (F4)
11000 <!--chtml else-->
11002 <!--chtml endif-->
11003 </DT>
11004 <DD>See the full information for the selected entry.
11006 <DT>Compose
11007 <!--chtml if pinemode="function_key"-->
11008 (F9)
11009 <!--chtml else-->
11011 <!--chtml endif--></DT>
11012 <DD>Compose a message with the selected entry as the recipient.
11014 <DT>Role
11015 <!--chtml if pinemode="function_key"-->
11016 (F2)
11017 <!--chtml else-->
11019 <!--chtml endif--></DT>
11020 <DD>Compose a message with the selected entry as the recipient. This differs
11021 from Compose in that you may select a role before beginning your composition.
11023 <DT>Forward
11024 <!--chtml if pinemode="function_key"-->
11025 (F10)
11026 <!--chtml else-->
11028 <!--chtml endif--></DT>
11029 <DD>Send the full information for the selected entry as an 
11030 email message to someone else.
11032 <DT>Save
11033 <!--chtml if pinemode="function_key"-->
11034 (F11)
11035 <!--chtml else-->
11037 <!--chtml endif-->
11038 </DT>
11039 <DD>Save to your address book:
11040 <UL>
11041 <LI>the result of the search (as just found through your query) for the 
11042 selected entry; or 
11043 <LI>the selected entry for repeated Directory Server searching when used 
11044 in the future.
11045 </UL>
11046 or<BR>
11047 Export to a file (external to Alpine):
11048 <UL>
11049 <LI>the full information for the selected entry; or
11050 <LI>the email address from the selected entry; or
11051 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
11052 </UL>
11053 <DT>WhereIs
11054 <!--chtml if pinemode="function_key"-->
11055 (F12)
11056 <!--chtml else-->
11058 <!--chtml endif-->
11059 </DT>
11060 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
11061 displayed text, not the full records for each entry.)  
11062 </DL>
11063 &lt;End of help on this topic&gt;
11064 </BODY>
11065 </HTML>
11066 ============= h_address_select ========================
11067 <HTML>
11068 <HEAD>
11069 <TITLE>SEARCH RESULTS INDEX</TITLE>
11070 </HEAD>
11071 <BODY>
11072 <H1>SEARCH RESULTS INDEX</H1>
11073 This screen shows the results, if any, of your Directory Server search.  
11074 Commands (besides those for screen navigation) are:
11075 <DL>
11076 <DT>Select
11077 </DT>
11078 <DD>Select this entry for use.
11080 <DT>ExitSelect
11081 <DD>Exit without selecting any of the entries.
11083 <DT>WhereIs
11084 </DT>
11085 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
11086 displayed text, not the full records for each entry.)  
11087 </DL>
11088 &lt;End of help on this topic&gt;
11089 </BODY>
11090 </HTML>
11091 ===== h_folder_maint =====
11092 <HTML>
11093 <HEAD>
11094 <TITLE>Help for Folder List</TITLE>
11095 </HEAD>
11096 <BODY>
11097 <H1>FOLDER LIST COMMANDS</H1>
11098 <!--chtml if pinemode="function_key"-->
11099 <PRE>
11100 Available Commands -- Group 1        Available Commands -- Group 2
11101 -------------------------------      ------------------------------
11102 F1  Show Help Text                    F1  Show Help Text               
11103 F2  See commands in next group        F2  See commands in next group  
11104 F3  MAIN MENU Screen                  F3  Quit Alpine                    
11105 F4  Select folder and view it         F4  MAIN MENU Screen
11106 F5  Move to previous folder
11107 F6  Move to next folder               F6  Specify a folder to go to
11108 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
11109 F8  Show next screen of listing       F8  Compose a message
11110 F9  Add a new folder                  F9  Print folder listing
11111 F10 Delete selected folder
11112 F11 Rename selected folder
11113 F12 Whereis (search folder names)
11115 Available Commands -- Group 3
11116 F1  Show Help Text
11117 F2  See commands in next group
11118 F5  Go to next new message
11119     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
11120 F8  Compose a message using roles
11121 F9  Export folder to a file
11122 F10 Import the file back to a folder
11123 </PRE>
11124 <!--chtml else-->
11125 <PRE>
11126 Navigating the Folder Screen            Operations on the Selected Folder
11127 ----------------------------            ---------------------------------
11128  P   Move to previous folder              V  View Index of selected folder
11129  N   Move to next folder                  D  Delete
11130  -   Show previous page of listing        R  Rename
11131 Spc  (space bar) Show next page           E  Export to file
11132                                           U  Import from file to folder
11134 FOLDER LIST Screen Commands              General Alpine Command
11135 ---------------------------              -----------------------
11136  A  Add a folder                          O  Show all other available commands
11137  G  Specify a folder to go to             ?  Show Help text
11138  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
11139  W  Whereis (search folder names)         Q  Quit Alpine
11140  %  Print folder listing                  C  Compose a message
11141                                           #  Compose a message using roles
11142 </PRE>
11143 <!--chtml endif-->
11145 These commands are only available in the FOLDER LIST screen when the 
11146 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
11147 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
11148 <DT>Select:</DT>
11149 <DD>Select folders by certain criteria:<UL>
11150 <LI>All: of limited use, since there is no Apply command.
11151 <LI>by Property: <UL>
11152         <LI>folder contains messages not yet seen 
11153         <LI>folder contains new messages
11154         <LI>folder contains exactly as many, more, or fewer messages 
11155 than a given number
11156         </UL>
11157 <LI>by Text: <UL>
11158         <LI>contained in name of folder (Name Select)
11159         <LI>contained in messages in folder (Content Select)
11160         </UL>
11161 </UL></DD>
11163 <DT>Select current:</DT>
11164 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
11165 add one or more folders to a set created with the Select command described 
11166 above.)</DD>
11167 <DT>Zoom mode:</DT>
11168 <DD>Toggles display of only selected folders or all folders on and off.</DD>
11169 </DL>
11171 If the feature
11172 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
11173 is set then the TAB key will display the number of recent messages and
11174 the total number of messages in the highlighted folder.
11176 The &quot;Export&quot; command causes the lowest common denominator style
11177 mailbox to be written to a file.
11178 If the file already exists, you are asked if you want to delete it.
11179 If you say No, then the operation is aborted.
11180 Export might be a reasonable way to store a backup or an archival copy of
11181 a folder.
11182 The exported-to file is a local file on the system where you are running Alpine.
11183 The &quot;Import&quot; command is the opposite of the Export command.
11184 It reads a file created by Export and asks where it should save it in your
11185 folders.
11186 This could be a new folder or an existing folder.
11187 If the folder already exists, the messages from the exported file will be
11188 appended to the folder.
11190 <CENTER>Description of the FOLDER LIST Screen</CENTER>
11192 The purpose of the FOLDER LIST screen is to help you browse and manage
11193 the folders and directories (also known as &quot;hierarchy&quot;)
11194 contained within a collection.
11197 Folders and directories are arranged alphabetically across lines of
11198 the screen.  Directories, if present, are denoted by a special
11199 character at the end of the name known as the hierarchy delimiter
11200 (typically, &quot;/&quot;).  By default, folders and directories are
11201 mixed together.  The
11202 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
11203 configuration option can be used to group directories toward the 
11204 beginning or end of the list.
11207 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
11208 commands change the &quot;selected&quot; (i.e., highlighted) folder or
11209 directory, and the View Fldr/Dir commands will &quot;open&quot; the
11210 selected item.  Folder and directory management is provided via the
11211 Rename, Delete and Add commands.
11213 <P><CENTER>About Folders</CENTER>
11214 What are Folders?<P>
11216 Folders are simply files where messages are kept.  Every message has to be
11217 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
11218 folder for sent mail and a folder for saved messages.<P>
11220 You may create as many other folders as you wish.  They must be given
11221 names that can be filenames on the filesystem.  
11224 You can move messages from one folder to another by opening the original
11225 folder and saving messages into the other folder just as you can save
11226 message from your INBOX to any other folder.<P>
11228 Folders are typically just files in the filesystem.  However, the files
11229 that are
11230 folders have some special formatting in them (so that Alpine knows where one
11231 message ends and another begins) and should <EM>not</EM> be edited outside of
11232 Alpine.  If you want copies of your messages in text files that you can edit
11233 or otherwise manipulate, use the Export command to copy them from Alpine into
11234 your regular file area.
11237 FOR MORE INFORMATION: See the section on
11238 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11240 <CENTER>About Directories</CENTER>
11242 A directory is simply a container used to group folders within a
11243 folder list.  You can create as many directories as you like.  And 
11244 directories can even contain directories themselves.
11247 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
11248 to note that not all IMAP servers support directories.  If you find that
11249 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
11250 then it's likely that directories are not supported by the server serving
11251 in that collection.
11254 Similarly, servers that do provide for directories may not do so in
11255 the same way.  On some servers, for example, each folder name you
11256 create is at the same time capable of being a directory.  When this
11257 happens, Alpine will display both the folder name and the name of the
11258 directory (with trailing hierarchy delimiter) in the folder list.
11261 Another issue with IMAP access, though with a much smaller set of servers,
11262 is that not all servers accept the request to list out the available
11263 folders and directories in the same way.  If you find yourself having
11264 trouble viewing folders on your server, you might investigate the
11265 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
11266 feature.
11268 <UL>
11269 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11270 </UL>
11272 &lt;End of help on this topic&gt;
11273 </BODY>
11274 </HTML>
11275 ========= h_valid_folder_names ========
11276 <HTML>
11277 <HEAD>
11278 <TITLE>Explanation of Valid Folder Names</TITLE>
11279 </HEAD>
11280 <BODY>
11281 <H1>Folder Name Syntax Explained</H1>
11283 Once your folder collections are defined, you can usually refer to
11284 folders by their simple (unqualified) name, or pick from a FOLDER LIST
11285 display.  However, understanding the complete syntax for folder names,
11286 both local and remote, is handy when using the Goto command and when
11287 you are adding new folder collections via the Setups/collectionList screen.
11289 An Alpine folder name looks like
11292 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
11295 The square brackets ([]) mean that the part is optional.
11298 If there is no remote-specification, then the folder name is interpreted
11299 locally on the computer running Alpine.
11300 Local folder names depend on the operating system used by the computer 
11301 running Alpine, as well as the configuration of that system.  For example,
11302 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
11303 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
11304 system running Unix.
11307 Alpine users have the option of using folders that are stored on some other
11308 computer.  Alpine accesses remote folders via IMAP (the Internet Message
11309 Access Protocol), or in the case of news, via NNTP (the Network News
11310 Transport Protocol).  To be able to access remote folders in Alpine, the
11311 remote host must be running the appropriate server software (imapd or
11312 nntpd) and you must correctly specify the name of the folder to Alpine,
11313 including the domain name of the remote machine. For example,
11315 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
11317 could be a remote folder specification, and so could
11319 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
11322 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
11324 Note that in the case of remote folders, the directory/file path in the specification is 
11325 determined by the operating system of the remote computer, <B>not</B> by
11326 the operating system of the computer on which you are running Alpine.
11328 As you can tell, the name of the computer is in &#123;} brackets
11329 followed immediately by the name of the folder.  (In each of these cases the
11330 optional namespace is missing.)  If, as in these
11331 examples, there is no remote access protocol specified, then IMAP is
11332 assumed.  Check
11333 <A HREF="h_folder_server_syntax">here</A>
11334 for a more detailed look at what options can be placed between the brackets.
11335 If there are no brackets at all, then the folder name is interpreted locally
11336 on the computer on which you are running Alpine.
11339 To the right of the brackets when a server name is present, or at the
11340 start of the foldername if no server is present, the sharp sign,
11341 &quot;#&quot;, holds special meaning.  It indicates a folder name
11342 outside the area reserved for your personal folders.  In fact, it's
11343 used to indicate both the name of the folder, and a special phrase
11344 telling Alpine how to interpret the name that follows.
11347 So, for example, Alpine can be used to access a newsgroup that might be 
11348 available on your computer using:
11350 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11352 The sharp sign indicates the folder name is outside your personal
11353 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
11354 interpret the remainder of the name as a newsgroup.
11357 Similarly, to access a newsgroup on your IMAP server, you might
11358 use something like:
11360 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
11363 There are a number of such special phrases (or &quot;namespaces&quot;)
11364 available.  For a more detailed explanation read about
11365 <A HREF="h_folder_name_namespaces">Namespaces</A>.
11368 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
11369 names.  The name INBOX refers to your &quot;principal incoming
11370 message folder&quot; and will be mapped to the actual file name used for your
11371 INBOX on any given host.  Therefore, a name like
11372 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
11373 store incoming mail for you on that particular host.
11376 &lt;End of help on this topic&gt;
11377 </BODY>
11378 </HTML>
11379 ======= h_folder_name_namespaces =======
11380 <HTML>
11381 <HEAD>
11382 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
11383 </HEAD>
11384 <BODY>
11385 <H1>Folder Name Namespaces Explained</H1>
11387 An Alpine folder name looks like
11390 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
11393 The local part of a folder name has an optional &quot;Namespace&quot; which
11394 tells Alpine how to interpret the rest of the name.
11396 <P> 
11397 By default the folder name is interpreted as defining a section of your personal
11398 folder area.  This area and how you specify it are defined by the
11399 server, if one is specified, or, typically, the home
11400 directory, if no server is defined.
11403 If a namespace is specified, it begins with the
11404 sharp, &quot;#&quot;, character followed by the name of the namespace
11405 and then the namespace's path-element-delimiter.  Aside from the
11406 path's format, namespaces can also imply access rights, content
11407 policy, audience, location, and, occasionally, access methods.
11410 Each server exports its own set (possibly of size one) of 
11411 namespaces.  Hence, it's likely communication with your server's
11412 administrator will be required for specific configurations.  Some of
11413 the more common namespaces, however, include:
11415 <DL>
11416 <DT>#news.</DT>
11417 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
11418 names are hierarchically defined with each level delimited by a period.
11420 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11422 </DD>
11423 <DT>#public/</DT>
11424 <DD>This specifies a folder area that the server may export to the general
11425 public.
11426 </DD>
11427 <DT>#shared/</DT>
11428 <DD>This specifies a folder area that the server may export to groups
11429 of users.
11430 </DD>
11431 <DT>#ftp/</DT>
11432 <DD>This specifies a folder area that is the same as that it may have 
11433 exported via the &quot;File Transfer Protocol&quot;.
11434 </DD>
11435 <DT>#mh/</DT>
11436 <DD>This specifies the personal folder area associated with folders
11437 and directories that were created using the MH message handling system.
11438 </DD>
11439 <DT>#move/</DT>
11440 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
11442 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
11444 The #move namespace is followed by two folder names separated by a delimiter
11445 character.
11446 The delimiter character may be any character that does not appear in
11447 the MailDropFolder name.
11448 The meaning of #move is that mail will be copied from the MailDropFolder to
11449 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
11450 Periodic checks at frequency
11451 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
11452 time between checks set by
11453 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
11454 are made for new mail arriving in the MailDropFolder.
11455 An example that copies mail from a POP inbox to a local folder follows
11457 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
11459 To you it appears that mail is being delivered to the local folder when it
11460 is copied from the MailDropFolder, and you read mail from the local folder.
11462 Note that if the DestinationFolder does not exist then the messages are not
11463 copied from the MailDropFolder.
11464 A #move folder may only be used as an
11465 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
11466 an Inbox.
11467 When you are in the FOLDER LIST of Incoming Message Folders (after turning
11468 on the
11469 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
11470 option)
11471 the Add command has a subcommand &quot;Use Mail Drop&quot;
11472 which may be helpful for defining the folder in your Alpine configuration.
11473 The same is true when you edit the
11474 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
11475 option in Setup/Config.
11476 Each of these configuration methods will also create the DestinationFolder
11477 if it doesn't already exist.
11478 If you are having problems, make sure the DestinationFolder exists.
11479 You may find some more useful information about Mail Drops at
11480 <A HREF="h_maildrop">What is a Mail Drop?</A>.
11481 </DD>
11482 </DL>
11485 In addition, the server may support access to other user's folders,
11486 provided you have suitable permissions.  Common methods use a prefix
11487 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
11488 indicate the root of the other user's folder area.
11491 No, nothing's simple.
11494 &lt;End of help on this topic&gt;
11495 </BODY>
11496 </HTML>
11497 ============= h_whatis_vcard ========================
11498 <HTML>
11499 <HEAD>
11500 <TITLE>VCARD EXPLAINED</TITLE>
11501 </HEAD>
11502 <BODY>
11503 <H1>What is the vCard format?</H1>
11504 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
11505 information about and among people and organizations electronically.  
11506 More information about vCard can be found (as of May 1998) on the WWW site 
11507 of the Internet Mail Consortium at the URL:
11509 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
11511 &lt;End of help on this topic&gt;
11512 </BODY>
11513 </HTML>
11514 ===== h_folder_open =====
11515 <HTML>
11516 <HEAD>
11517 <TITLE>Explanation of Folder Selection</TITLE>
11518 </HEAD>
11519 <BODY>
11520 <BR>
11521 <BR>
11522 This screen is designed to allow you to quickly and easily survey your
11523 folders and select one to open.
11524 <!--chtml if pinemode="function_key"-->
11525 <PRE>
11526 Navigating the List of Folders             General Alpine Commands
11527 ------------------------------             -----------------------
11528  P   Move to previous folder               ?   Show this help text
11529  N   Move to next folder
11530  -   Show previous screen of folders
11531 Spc  (space bar) Show next screen
11532  W   WhereIs (search folder names)
11534 Folder Selection Commands
11535 -------------------------
11536  E   Exit the Folder Select menu (without selecting a folder)
11537  S   Select the currently highlighted folder
11538 </PRE>
11539 <!--chtml else-->
11540 <PRE>
11541 Navigating the List of Folders             General Alpine Commands
11542 ------------------------------             -----------------------
11543 F5   Move to previous folder               F1  Show this help text
11544 F6   Move to next folder
11545 F7   Show previous screen of folders
11546 F8   Show next screen of folders
11547 F12  WhereIs (search folder names)
11549 Folder Selection Commands
11550 -------------------------
11551 F3   Exit the Folder Select menu (without selecting a folder)
11552 F4   Select the currently highlighted folder
11553 </PRE>
11554 <!--chtml endif-->
11556 FOR MORE INFORMATION: See the section on
11557 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11559 &lt;End of help on this topic&gt;
11560 </BODY>
11561 </HTML>
11562 ===== h_folder_subscribe =====
11563 <HTML>
11564 <HEAD>
11565 <TITLE>Newsgroup Subcribe Screen explained</TITLE>
11566 </HEAD>
11567 <BODY>
11568 <H1>FOLDER SUBSCRIBE HELP</H1>
11570 This screen is designed to help you subscribe to newsgroups you are
11571 not currently subscribed to.  The screen display is a list of all
11572 available newsgroups (or possibly a partial list if you specified a
11573 partial name when entering the screen).  Groups you have already
11574 subscribed to have the letters &quot;SUB&quot; next to them.  You may
11575 select a single new group to subscribe to by moving the cursor to that
11576 group and pressing &quot;S&quot; or carriage return.  Alternatively,
11577 you may change into ListMode with the &quot;ListMode&quot; command.
11578 The display will change slightly so that each group has a checkbox in
11579 front of it.  Use the cursor and the Set/Unset command to place an
11580 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
11583 When you are finished marking groups, the &quot;Subscribe&quot;
11584 command will subscribe you to those groups you have marked.  Note, you
11585 may not unsubscribe to groups with this command.  Instead of the
11586 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
11587 UnSbscrbe command.
11590 <!--chtml if pinemode="function_key"-->
11591 <PRE>
11592 Navigating the List of Newsgroups          General Alpine Commands
11593 ---------------------------------          -----------------------
11594 F5   Move to previous group                F1   Show this help text
11595 F6   Move to next group
11596 F7   Show previous screen of groups
11597 F8   Show next screen of groups
11598 F12  WhereIs (search group names)
11599 F9   Use ListMode
11601 Group Selection Commands
11602 -------------------------
11603 F3  Exit the News Subscribe menu (without selecting any groups)
11604 F4  Subscribe to the currently highlighted newsgroup
11605 </PRE>
11606 <!--chtml else-->
11607 <PRE>
11608 Navigating the List of Newsgroups          General Alpine Commands
11609 ---------------------------------          -----------------------
11610  P   Move to previous group                ?   Show this help text
11611  N   Move to next group
11612  -   Show previous screen of groups
11613 Spc  (space bar) Show next screen
11614  W   WhereIs (search group names)
11615  L   Use ListMode
11617 Group Selection Commands
11618 -------------------------
11619  E   Exit the News Subscribe menu (without selecting any groups)
11620  S   Subscribe to the currently highlighted newsgroup
11621 </PRE>
11622 <!--chtml endif-->
11624 When in ListMode, there is an additional command for marking groups to
11625 subscribe to:
11627 <!--chtml if pinemode="function_key"-->
11628 <PRE>
11629 ListMode Commands
11630 -------------------------
11631 F9  Set or unset the highlighted group
11632 </PRE>
11633 <!--chtml else-->
11634 <PRE>
11635 ListMode Commands
11636 -------------------------
11637 X   Set or unset the highlighted group
11638 </PRE>
11639 <!--chtml endif-->
11641 &lt;End of help on this topic&gt;
11642 </BODY>
11643 </HTML>
11644 ===== h_folder_postnews =====
11645 <HTML>
11646 <HEAD>
11647 <TITLE>Newsgroup selecting for Posting explained</TITLE>
11648 </HEAD>
11649 <BODY>
11650 This screen is designed to allow you to quickly and easily survey
11651 the available newsgroups and select one to post news to.
11653 <!--chtml if pinemode="function_key"-->
11654 <PRE>
11655 Navigating the List of Newsgroups          General Alpine Commands
11656 ---------------------------------          -----------------------
11657 F5   Move to previous group                F1  Show this help text
11658 F6   Move to next group
11659 F7   Show previous screen of groups
11660 F8   Show next screen of groups
11661 F12  WhereIs (search group names)
11663 Group Selection Commands
11664 -------------------------
11665 F3   Exit the Selection menu (without selecting a group)
11666 F4   Select the currently highlighted newsgroup
11667 </PRE>
11668 <!--chtml else-->
11669 <PRE>
11670 Navigating the List of Newsgroups          General Alpine Commands
11671 ---------------------------------          -----------------------
11672  P   Move to previous group                ?  Show this help text
11673  N   Move to next group
11674  -   Show previous screen of groups
11675 Spc  (space bar) Show next screen of groups
11676  W   WhereIs (search group names)
11678 Group Selection Commands
11679 -------------------------
11680  E   Exit the Selection menu (without selecting a group)
11681  S   Select the currently highlighted newsgroup
11682 </PRE>
11683 <!--chtml endif-->
11685 &lt;End of help on this topic&gt;
11686 </BODY>
11687 </HTML>
11688 ===== h_folder_save =====
11689 <HTML>
11690 <HEAD>
11691 <TITLE>Folder Select for Save Explained</TITLE>
11692 </HEAD>
11693 <BODY>
11694 This screen is designed to allow you to quickly and easily survey your
11695 folders and select one to use for saving the current message.
11698 <!--chtml if pinemode="function_key"-->
11699 <PRE>
11700 Navigating the List of Folders             General Alpine Commands
11701 ------------------------------             -----------------------
11702 F5   Move to previous folder               F1  Show this help text
11703 F6   Move to next folder
11704 F7   Show previous screen of folders
11705 F8   Show next screen of folders
11706 F12  WhereIs (search folder names)
11708 Folder Selection Commands
11709 -------------------------
11710 F3   Exit the Folder Select menu (without selecting a folder)
11711 F4   Select the currently highlighted folder
11712 F11  AddNew folder (just like Select, but you type in a new folder name)
11713 </PRE>
11714 <!--chtml else-->
11715 <PRE>
11716 Navigating the List of Folders             General Alpine Commands
11717 ------------------------------             -----------------------
11718  P   Move to previous folder               ?  Show this help text
11719  N   Move to next folder
11720  -   Show previous screen of folders
11721 Spc  (space bar) Show next screen of folders
11722  W   WhereIs (search folder names)
11724 Folder Selection Commands
11725 -------------------------
11726  E   Exit the Folder Select menu (without selecting a folder)
11727  S   Select the currently highlighted folder
11728  A   AddNew folder (just like Select, but you type in a new folder name)
11729 </PRE>
11730 <!--chtml endif-->
11732 FOR MORE INFORMATION: See the section on
11733 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11735 &lt;End of help on this topic&gt;
11736 </BODY>
11737 </HTML>
11738 ===== h_folder_fcc =====
11739 <HTML>
11740 <HEAD>
11741 <TITLE>Folder Select for Fcc Explained</TITLE>
11742 </HEAD>
11743 <BODY>
11744 This screen is designed to allow you to quickly and easily survey your
11745 folders and select one to use as the file carbon copy (fcc) for the
11746 current message.
11749 <!--chtml if pinemode="function_key"-->
11750 <PRE>
11751 Navigating the List of Folders             General Alpine Commands
11752 ------------------------------             -----------------------
11753 F5   Move to previous folder               F1  Show this help text
11754 F6   Move to next folder
11755 F7   Show previous screen of folders
11756 F8   Show next screen of folders
11757 F12  WhereIs (search folder names)
11759 Folder Selection Commands
11760 -------------------------
11761 F3   Exit the Folder Select menu (without selecting a folder)
11762 F4   Select the currently highlighted folder
11763 F11  AddNew folder (just like Select, but you type in a new folder name)
11764 </PRE>
11765 <!--chtml else-->
11766 <PRE>
11767 Navigating the List of Folders             General Alpine Commands
11768 ------------------------------             -----------------------
11769  P   Move to previous folder               ?  Show this help text
11770  N   Move to next folder
11771  -   Show previous screen of folders
11772 Spc  (space bar) Show next screen of folders
11773  W   WhereIs (search folder names)
11775 Folder Selection Commands
11776 -------------------------
11777  E   Exit the Folder Select menu (without selecting a folder)
11778  S   Select the currently highlighted folder
11779  A   AddNew folder (just like Select, but you type in a new folder name)
11780 </PRE>
11781 <!--chtml endif-->
11783 FOR MORE INFORMATION: See the section on
11784 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11786 &lt;End of help on this topic&gt;
11787 </BODY>
11788 </HTML>
11789 ===== h_folder_pattern_roles =====
11790 <HTML>
11791 <HEAD>
11792 <TITLE>Folder Select for Current Folder Explained</TITLE>
11793 </HEAD>
11794 <BODY>
11795 This screen is designed to allow you to quickly and easily survey your
11796 folders and select one to use as the specific Current Folder
11797 in a Pattern.
11800 <!--chtml if pinemode="function_key"-->
11801 <PRE>
11802 Navigating the List of Folders             General Alpine Commands
11803 ------------------------------             -----------------------
11804 F5   Move to previous folder               F1  Show this help text
11805 F6   Move to next folder
11806 F7   Show previous screen of folders
11807 F8   Show next screen of folders
11808 F12  WhereIs (search folder names)
11810 Folder Selection Commands
11811 -------------------------
11812 F3   Exit the Folder Select menu (without selecting a folder)
11813 F4   Select the currently highlighted folder
11814 F11  AddNew folder (just like Select, but you type in a new folder name)
11815 </PRE>
11816 <!--chtml else-->
11817 <PRE>
11818 Navigating the List of Folders             General Alpine Commands
11819 ------------------------------             -----------------------
11820  P   Move to previous folder               ?  Show this help text
11821  N   Move to next folder
11822  -   Show previous screen of folders
11823 Spc  (space bar) Show next screen of folders
11824  W   WhereIs (search folder names)
11826 Folder Selection Commands
11827 -------------------------
11828  E   Exit the Folder Select menu (without selecting a folder)
11829  S   Select the currently highlighted folder
11830  A   AddNew folder (just like Select, but you type in a new folder name)
11831 </PRE>
11832 <!--chtml endif-->
11834 FOR MORE INFORMATION: See the section on
11835 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11837 &lt;End of help on this topic&gt;
11838 </BODY>
11839 </HTML>
11840 ===== h_folder_stayopen_folders =====
11841 <HTML>
11842 <HEAD>
11843 <TITLE>Folder Select Explained</TITLE>
11844 </HEAD>
11845 <BODY>
11846 This screen is designed to allow you to quickly and easily survey your
11847 folders and select one to use as a Stay-Open folder.
11850 <!--chtml if pinemode="function_key"-->
11851 <PRE>
11852 Navigating the List of Folders             General Alpine Commands
11853 ------------------------------             -----------------------
11854 F5   Move to previous folder               F1  Show this help text
11855 F6   Move to next folder
11856 F7   Show previous screen of folders
11857 F8   Show next screen of folders
11858 F12  WhereIs (search folder names)
11860 Folder Selection Commands
11861 -------------------------
11862 F3   Exit the Folder Select menu (without selecting a folder)
11863 F4   Select the currently highlighted folder
11864 F11  AddNew folder (just like Select, but you type in a new folder name)
11865 </PRE>
11866 <!--chtml else-->
11867 <PRE>
11868 Navigating the List of Folders             General Alpine Commands
11869 ------------------------------             -----------------------
11870  P   Move to previous folder               ?  Show this help text
11871  N   Move to next folder
11872  -   Show previous screen of folders
11873 Spc  (space bar) Show next screen of folders
11874  W   WhereIs (search folder names)
11876 Folder Selection Commands
11877 -------------------------
11878  E   Exit the Folder Select menu (without selecting a folder)
11879  S   Select the currently highlighted folder
11880  A   AddNew folder (just like Select, but you type in a new folder name)
11881 </PRE>
11882 <!--chtml endif-->
11884 FOR MORE INFORMATION: See the section on
11885 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11887 &lt;End of help on this topic&gt;
11888 </BODY>
11889 </HTML>
11890 ===== h_folder_action_roles =====
11891 <HTML>
11892 <HEAD>
11893 <TITLE>Folder Select Explained</TITLE>
11894 </HEAD>
11895 <BODY>
11896 This screen is designed to allow you to quickly and easily survey your
11897 folders and select one to use as the folder into which messages
11898 matching this filter will be moved.
11901 <!--chtml if pinemode="function_key"-->
11902 <PRE>
11903 Navigating the List of Folders             General Alpine Commands
11904 ------------------------------             -----------------------
11905 F5   Move to previous folder               F1  Show this help text
11906 F6   Move to next folder
11907 F7   Show previous screen of folders
11908 F8   Show next screen of folders
11909 F12  WhereIs (search folder names)
11911 Folder Selection Commands
11912 -------------------------
11913 F3   Exit the Folder Select menu (without selecting a folder)
11914 F4   Select the currently highlighted folder
11915 F11  AddNew folder (just like Select, but you type in a new folder name)
11916 </PRE>
11917 <!--chtml else-->
11918 <PRE>
11919 Navigating the List of Folders             General Alpine Commands
11920 ------------------------------             -----------------------
11921  P   Move to previous folder               ?  Show this help text
11922  N   Move to next folder
11923  -   Show previous screen of folders
11924 Spc  (space bar) Show next screen of folders
11925  W   WhereIs (search folder names)
11927 Folder Selection Commands
11928 -------------------------
11929  E   Exit the Folder Select menu (without selecting a folder)
11930  S   Select the currently highlighted folder
11931  A   AddNew folder (just like Select, but you type in a new folder name)
11932 </PRE>
11933 <!--chtml endif-->
11935 FOR MORE INFORMATION: See the section on
11936 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11938 &lt;End of help on this topic&gt;
11939 </BODY>
11940 </HTML>
11941 ===== h_abook_config =====
11942 <HTML>
11943 <HEAD>
11944 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
11945 </HEAD>
11946 <BODY>
11947 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
11948 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
11949 <!--chtml if pinemode="function_key"-->
11950 <PRE>
11951 Available  Commands                        
11952 -------------------------------            
11953 F1  Show Help Text                         
11954 F3  Back to MAIN Alpine menu                 
11955 F4  Change configuration for address book  
11956 F5  Move to previous address book          
11957 F6  Move to next address book              
11958 F7  Previous page of address books         
11959 F8  Next page of address books             
11960 F9  Add new address book                   
11961 F10 Delete existing address book           
11962 F11 Shuffle the order of address books     
11963 F12 Whereis (search address book titles)   
11964 </PRE>
11965 <!--chtml else-->
11966 <PRE>
11967 Navigation                     General Alpine Commands
11968 -----------------------        -----------------------
11969  P  Prev Address Book           ?  Display this help text
11970  N  Next Address Book           E  Back to MAIN Alpine menu
11971  -  Previous page
11972 Spc (space bar) Next page
11973  W  WhereIs (search for word in address book titles)
11975 Setup Address Books Commands
11976 ------------------------------------------------
11977  A  Add new address book          $  Shuffle the order of address books
11978  D  Delete existing address book  C  Change configuration for address book
11979 </PRE>
11980 <!--chtml endif-->
11982 <H2>Description of the Setup Address Books Screen</H2>
11984 This screen lets you add, delete, modify, or change the order of your
11985 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
11986 fill in.  If you are adding a remote address book on an IMAP server
11987 you should fill in the name of the IMAP server.  Otherwise, leave
11988 that field blank.  (Note that remote IMAP address books are an Alpine
11989 concept and are unlikely to interoperate with other mail clients.)
11990 For a remote address book, fill in the name of the remote folder
11991 in the Folder field.  This should be a folder that is used only for
11992 this one purpose, not a general purpose folder you expect to store
11993 messages in.
11994 <P>If you are adding a local address book, fill in the
11995 Folder Name field with a local file name (e.g., .addressbook).
11997 <B>Please note:</B> Remote address books stored on an IMAP server are 
11998 of an entirely different format (namely, a special-purpose 
11999 &quot;mail folder&quot;) than that of the local addressbook familiar 
12000 to Alpine users.  Therefore, 
12001 you cannot use &quot;add a remote address book&quot; to make an existing 
12002 Alpine .addressbook file you may have on a remote IMAP server accessible to 
12003 Alpine running on a different host.  
12006 The &quot;Del Abook&quot; command allows you to remove an address book
12007 from your configuration.  It will also ask you if you wish to remove
12008 the data for that address book, which would erase all traces of the
12009 address book if you answer Yes.
12012 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
12013 The difference is that instead of adding a new address book to your
12014 configuration, you are changing the configuration of an existing entry.
12015 For example, you might want to correct a typing error or change a
12016 nickname.  The &quot;Change&quot; command is not a move command.  If you
12017 change the folder name or server name the data will not be moved for you.
12020 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
12021 an address book toward another address book in the same group then
12022 the order of those two address books will be swapped.  If you shuffle
12023 the last Personal address book down towards the Global address book
12024 section, it will become a Global address book.  If you shuffle
12025 the first Global address book up it will become a Personal address
12026 book.  The main difference between Personal and Global address
12027 books is that Global address books are forced read-only.
12028 <P><UL>
12029 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12030 </UL>
12032 &lt;End of help on this topic&gt;
12033 </BODY>
12034 </HTML>
12035 ===== h_abook_top =====
12036 <HTML>
12037 <HEAD>
12038 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
12039 </HEAD>
12040 <BODY>
12041 <H1>ADDRESS BOOK LIST COMMANDS</H1>
12042 <!--chtml if pinemode="function_key"-->
12043 <PRE>
12044 Available  Commands -- Group 1         Available Commands -- Group 2
12045 -------------------------------        ------------------------------
12046 F1  Show Help Text                      F1  Show Help Text
12047 F2  See commands in next group          F2  See commands in next group
12048 F3  Exit to MAIN MENU                   F3  Quit Alpine
12049 F4  View/Edit selected address book
12050 F5  Move to previous address book       F5  FOLDER LIST screen
12051 F6  Move to next address book           F6  Specify a folder to go to
12052 F7  Previous page                       F7  MESSAGE INDEX screen
12053 F8  Next page                           F9  Print list of address books
12054 F12 Whereis (search for word)
12055 </PRE>
12056 <!--chtml else-->
12057 <PRE>
12058 Navigation                       General Alpine Commands
12059 -----------------------          -----------------------
12060  P  Previous Entry                ?  Display this help text
12061  N  Next Entry                    O  Show all other available commands
12062  -  Previous page                 &lt;  Back to MAIN Alpine menu
12063 Spc (space bar) Next page         Q  Quit Alpine
12064  W  WhereIs (search for word)     L  FOLDER LIST screen
12065                                   G  Specify a folder to go to
12066 Address Book Commands             I  MESSAGE INDEX screen
12067 ------------------------------------------------
12068  &gt;  View/Edit selected address book
12069               or
12070  &gt;  Search on selected directory server
12072  %  Print list of address books and directory servers
12073 </PRE>
12074 <!--chtml endif-->
12076 <H2>Description of the Address Book List Screen</H2>
12078 From this screen you may choose which address book you wish to view
12079 or edit. For more information on address books, view one of your
12080 address books (with
12081 <!--chtml if pinemode="function_key"-->
12083 <!--chtml else-->
12084 &quot;&gt;&quot;
12085 <!--chtml endif-->)
12086 and see the Help Text there.<P>
12088 You may also choose a directory server on which to search for entries.
12089 You do that by highlighting the directory server line and using
12090 <!--chtml if pinemode="function_key"-->
12092 <!--chtml else-->
12093 &quot;&gt;&quot;
12094 <!--chtml endif-->.<P>
12096 If you wish to define new address books or directory servers go to the Main
12097 menu and choose Setup. You may then either choose to setup AddressBooks or
12098 Directory (among other things). It's possible that the Directory option
12099 will not be there if the Alpine you are using does not contain LDAP directory
12100 lookup functionality.
12102 <P><UL>
12103 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12104 </UL><P>
12105 &lt;End of help on this topic&gt;
12106 </BODY>
12107 </HTML>
12108 ===== h_abook_opened =====
12109 <HTML>
12110 <HEAD>
12111 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
12112 </HEAD>
12113 <BODY>
12114 <H1>THE ALPINE ADDRESS BOOK</H1>
12115 <H2>ADDRESS BOOK COMMANDS</H2>
12116 <PRE>
12117 <!--chtml if pinemode="function_key"-->
12118 Available  Commands -- Group 1         Available Commands -- Group 2   
12119 -------------------------------        ------------------------------  
12120 F1  Show Help Text                      F1  Show Help Text             
12121 F2  See commands in next group          F2  See commands in next group
12122 F3  Exit this screen                    F3  Quit Alpine                  
12123 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
12124 F5  Move to previous entry              F5  FOLDER LIST screen         
12125 F6  Move to next entry                  F6  Specify a folder to go to  
12126 F7  Previous page of address book       F7  MESSAGE INDEX screen        
12127 F8  Next page of address book           F8  Compose to entry using roles
12128 F9  Add new entry to address book       F9  Print address book         
12129 F10 Delete selected entry               F10 TakeAddr to another addrbook
12130 F11 Compose to selected entry           F11 Save or Export addrbook selections
12131 F12 Whereis (search address book)       F12 Forward entry by mail       
12133 Available Commands -- Group 3                                           
12134 ------------------------------                                          
12135 F3  Select                              F6  Zoom (or unZoom)            
12136 F5  Select Current                      F7  Apply Command to Selection  
12137 <!--chtml else-->
12138 Address Book Navigation        General Alpine Commands
12139 -----------------------        -----------------------
12140  P  Prev Address                  ?  Display this help text
12141  N  Next Address                  O  Show all other available commands
12142  -  Previous page of address book M  Back to MAIN MENU
12143 Spc (space bar) Next page         Q  Quit Alpine
12144  W  WhereIs (search for word      C  Compose message to selected addr
12145      or name in address book)     #  Compose to addr using roles
12146  &lt;  To List of Address Books if   L  FOLDER LIST screen
12147      more than one, else to MAIN  G  Specify a folder to go to
12148                                   I  MESSAGE INDEX screen
12150 Address Book Commands
12151 ----------------------------------------------------
12152  &gt;  View/Update selected entry    D  Delete selected entries
12153  %  Print address book            S  Save or Export address book selections
12154  F  Forward entries by mail       @  Add new entry to address book
12156  ;  Select command                Z  Toggle Zoom Mode
12157  :  Select highlighted entry      A  Apply command to selected entries
12159 <!--chtml endif-->
12160 </PRE>
12161 Note:  The presence or absence of the final four commands above is
12162 controlled by the option 
12163 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
12166 <H2>Description of the Address Book Screen</H2>
12168 This screen lets you edit and manage entries in your address book.  It
12169 also acts as a short-cut for composing messages to people in the address
12170 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
12171 message starts &quot;pre-addressed&quot; to whatever address book entry is
12172 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
12173 role to use in your composition.
12175 Alpine's address book helps you keep a list of addresses you send email to so
12176 you do not have to remember addresses that are often complex.  Each entry
12177 in the address book has five fields, all of them optional.  The three
12178 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
12180         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
12181         This is what you type in as you are addressing the message in the
12182         composer.  If there is a matching entry in your address book(s),
12183         Alpine will extract the corresponding FullName and Address fields to
12184         generate the actual address for your message.
12186         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
12187 of the
12188         person or organization.  Usually the full names are put in last
12189         name first so they sort nicely in alphabetical order.  Whatever
12190         you put as the name here will appear on the message when it is
12191         finally delivered.  Examples:<PRE>
12192            Garcia Marquez, Gabriel
12193            Henscheid, Eckhard
12194            Alpine-Info mailing list
12195            Library materials renewal requests
12196            Kim An-guk
12197            &quot;George III, King of Great Britain, 1738-1820&quot;
12198 </PRE>
12199 (In the second-to-last example, no comma is used in the name so that 
12200 the family name appears first in the address book and when the entry is 
12201 used in the composer.
12202 In the last example, retaining the commas is intended; 
12203 double-quotation marks surround the name to 
12204 prevent the transposition of its parts when the entry is used in 
12205 the composer.)
12207         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
12208         a valid Internet address that conforms to the Internet message
12209         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
12211 The two fields that aren't usually visible are:<DL>
12213   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
12214         message to this address to be saved in.  If this field is set, and
12215         this address is the first one in the message's To: header, then
12216         Alpine will use this folder name for the FCC in lieu of the normal
12217         FCC folder name.
12219   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
12220         </DL>
12222 Due to screen width limitations, these last two fields do not show up in
12223 the normal ADDRESS BOOK display.  You may select the 
12224 &quot;View/Update&quot; command to
12225 view or modify them.  You may use the configuration variable
12226 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
12227 to add these fields to your ADDRESS BOOK 
12228 display, or to modify the format of the display.
12230 <H2>Sorting the Address book</H2>
12232 By default, address book entries are sorted alphabetically on the full
12233 name with distribution lists sorted to the end.  Sorting can be changed by
12234 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
12235 --assuming you have &quot;write&quot; permission for the address book file.
12237 Unlike the sorting of folders (which only changes presentation), sorting an
12238 address book actually changes the file as it is kept on the computer.  For
12239 this reason you won't be able to sort a shared or system-wide address
12240 book.
12242 <H2>Adding New Entries</H2>
12244 The easiest way to add new entries to your address book is to use the
12245 &quot;TakeAddr&quot; command when viewing a message.
12246 This command allows you to take addresses from the header and body of the
12247 message and put them into your address book, without having to type
12248 them in.
12251 To manually add a new entry from within the address book screen, use the AddNew
12252 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
12253 Use this command both for adding a simple alias and for adding a
12254 distribution list.
12256 <H2>Distribution Lists</H2>
12258 Address book entries can be simple cases of aliases (a single nickname is linked
12259 to a single email address) or distribution lists (a single nickname
12260 pointing at more than one email address).  Each distribution list has a
12261 nickname, a full name and a list of addresses.  The addresses may be
12262 actual addresses or they may be other nicknames in your address book.
12263 They may even refer to other distribution lists.
12264 There's really no difference between a simple alias and a distribution list,
12265 other than the number of addresses.
12266 Therefore, you can turn a simple alias with one address into a distribution
12267 list simply by adding more addresses.
12268 To add entries to an existing list or alias
12269 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
12270 a single address from the list if the cursor is placed on the address;
12271 it will delete the entire distribution list if the cursor is on the
12272 nickname/fullname line.  View/Update may also be used to delete addresses
12273 from a list.
12275 Address field entries in distribution lists may take any one of three
12276 forms: a nickname existing in any of the defined address books, a normal
12277 address of the form &quot;jsmith@art.example.com&quot;, or a complete
12278 fullname/address combination, e.g. &quot;John Smith
12279 &lt;jsmith@art.example.com&gt;&quot;.
12281 Distribution lists in Alpine address books can only be used by the person or
12282 people who have access to that address book.  They are not usually used to
12283 implement discussion groups, but can be used to facilitate small
12284 discussion groups if all the participants have access to the same shared
12285 address book.
12287 <H2>FCC and Comments</H2>
12289 As mentioned above, each entry in the address book also has two other optional
12290 fields, Fcc and Comments.  The command to look at or change either of these
12291 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
12292 Comments field is just for your own use.  The Fcc field overrides the
12293 default Fcc if this address is the first one on the To line.  The WhereIs
12294 command may be used to search for particular strings in the address book,
12295 including fields that are not visible (like Comment and Fcc by default).
12297 <H2>Aggregate Operations</H2>
12299 If the feature
12300 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
12301 is turned on (the default), then the four commands &quot;Select&quot;,
12302 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
12303 are available.  The two selection commands allow you to mark a set of
12304 address book entries as being selected.  If you have more than one address
12305 book, the selections may be in more than one of those address books.
12306 The &quot;Zoom&quot; command will toggle between displaying only the selected
12307 entries and all of the entries.  The &quot;Apply&quot; command allows you to
12308 apply one of the regular address book commands to all of the selected
12309 entries.  Usually the address book commands apply to only the entry
12310 highlighted by the cursor.  The &quot;Apply&quot; command works with the
12311 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
12312 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
12314 <H2>Exporting and Forwarding Address book entries</H2>
12316 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
12317 address book entry is placed in a plain text file in your home directory
12318 <!--chtml if pinemode="running"-->
12319 (which, in the present configuration of your system, is
12320  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12321 <!--chtml endif-->
12322 or current working directory
12323 <!--chtml if pinemode="running"-->
12324 (which, at least for your current Alpine &quot;session,&quot; 
12325 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12326 <!--chtml endif-->, depending on the 
12327 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12328 configuration setting.  If you have some entries selected and use the
12329 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
12330 placed in the text file.
12332 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
12333 address book entry is placed in a special attachment and you are put into
12334 the composer.  You can fill in some comments in the body of the message,
12335 if you'd like, and send it to somebody else who uses Alpine.  The recipient
12336 may use the TakeAddr command on that message to insert the address book
12337 entry you sent in their own address book.  If you have some entries
12338 selected and use the Apply Forward command all of the selected entries
12339 will be forwarded in a single message.  You may
12340 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.
12341 The recipient must be using Alpine in order to receive this correctly.
12342 One way for the recipient to handle this might be to create an empty
12343 address book and then &quot;Take&quot; your forwarded address book entries into
12344 that empty address book.
12346 <H2>Multiple and/or Site-Wide Address books</H2>
12348 You may have more than one personal address book.  In addition, there may
12349 be one or more global address books.  This capability allows you to have
12350 multiple personal address books (some of which may be shared) and it also
12351 allows system administrators to implement site-wide address books that
12352 contain entries for users on multiple machines within the organization.
12353 <P><DL>
12354 <DT>Searching
12355   <DD> If you enter a nickname when composing a message, your
12356   personal address books will be searched through in order, and then the
12357   global address book(s) searched. If more than one address book has an entry
12358   for the nickname, Alpine uses the first one that it finds, so an entry in
12359   your personal address book would override a global address book entry. If
12360   after searching all the address books there is still no match, (Unix) Alpine
12361   then searches the local host password file on the assumption that you have
12362   entered a local user name rather than an address book nickname.
12363   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
12364   command, but global address books are always searched after personal
12365   address books.
12367   <P><DT>Tab completion
12368   <DD> If the
12369   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
12370   feature is turned on (the default) then the Tab key may be used
12371   in the composer to complete partially typed nicknames in the To
12372   or Cc lines. You type the first few letters of a nickname and then
12373   press the Tab key. It there is only one nickname that matches it will
12374   be filled in by Alpine. If there is more than one the unambiguous part
12375   of the nicknames will be filled in. For example, if your address book or
12376   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
12377   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
12378   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
12379   If you then type a second Tab character you will be presented with a list
12380   of matching nicknames to select from. Alternatively, you could type another
12381   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
12382   in the entire &quot;barbecue&quot; entry.
12384   <P><DT>Defining
12385   <DD> You define multiple personal address books in the 
12386   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
12387   from the MAIN MENU.  
12388   You may add as many as you like.  Global address books are usually
12389   site-wide address books defined by the System administrator, but
12390   you may define global address books of your own just like you define
12391   personal address books.
12393   <P><DT>Creating and updating
12394   <DD> Personal address books are normally created empty
12395   and populated by explicit additions from within Alpine, e.g. via the
12396   TakeAddr command.  Unlike personal address books, global address books may
12397   not be modified/updated from within Alpine; that is, they are Read-Only.
12398   Thus, global address books are created, populated and updated outside of
12399   Alpine. They might be hand-edited, generated by a program from another
12400   database, or by copying an existing address book.  They might also be
12401   some other user's personal address book, and so be modified normally by
12402   that user but accessed Read-Only by you.  See the Alpine Technical
12403   Notes document (included in the Alpine distribution) for more information on
12404   this.
12406   <P><DT>Accessing
12407   <DD>There are two different types of address books in Alpine.
12408   A local address book is stored in a regular file and the normal file
12409   access permissions apply.  A remote address book is stored on an IMAP
12410   server in a special folder that contains only messages pertaining to
12411   that address book.  The last message in the remote folder contains a
12412   copy of the address book data, and that data is copied to a local cache
12413   file in your home directory.  From there it is accessed just like a local
12414   address book.  The name of the cache file is kept track of in a special
12415   file called the
12416   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
12417   the name of which is stored in
12418   your Alpine configuration file the first time you use a remote address book.
12419   Just as local Alpine address books use a format that only Alpine understands,
12420   remote Alpine address books do the same and other mail reading programs
12421   are unlikely to be able to understand them.<P>
12422   While global address books are explicitly intended to be shared, there is
12423   nothing to prevent you from sharing a personal address book with other
12424   Alpine users. This might be useful in the case of a small workgroup.
12425   However, it is recommended that updates to shared personal address books
12426   be done when other Alpine users are not accessing the address book. Alpine
12427   does not do any file-locking to manage concurrent updates to the
12428   addressbook, but it does check to see if the file has been modified before
12429   making any changes.  Consequently, inadvertent concurrent updates will
12430   only cause other Alpine users to have to restart their address book
12431   operation, which will cause Alpine to reopen the updated file.
12433   <P><DT>Converting to Remote
12434   <DD>The easiest way to convert an existing local
12435   address book into a remote address book is to create an empty new remote
12436   personal address book by typing &quot;A&quot; to execute the
12437   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
12438   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
12439   address book.
12440   After you have added the empty
12441   remote address book, go into the screen for the address book you wish
12442   to copy and &quot;Select&quot; &quot;All&quot;.
12443   This selects every entry in that
12444   address book.  Then type the command &quot;Apply Save&quot;.
12445   You will be asked for the address book to save to.  You may use ^P and ^N
12446   to get to the new empty address book, then hit RETURN and the addresses
12447   will be copied.
12448   At this point you'll probably want to unselect all the entries in the local
12449   address book before proceeding. You do that with
12450   &quot;Select&quot; &quot;unselect All&quot;.
12452 </DL>
12453 <UL>
12454 <LI><A HREF="h_address_format">Explanation of Address formats</A>
12455 </UL>
12456 <P><UL>
12457 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12458 </UL>
12460 &lt;End of help on this topic&gt;
12461 </BODY>
12462 </HTML>
12463 ===== h_abook_select_addr =====
12464 <HTML>
12465 <HEAD>
12466 <TITLE>Addressbook Selection Explained</TITLE>
12467 </HEAD>
12468 <BODY>
12469 <H1>SELECT ADDRESS</H1>
12470 <!--chtml if pinemode="function_key"-->
12471 <PRE>
12472 Navigating the List of Messages               General Alpine Commands
12473 -------------------------------               -----------------------
12474 F5   Move to previous entry                   F1  Show this help text
12475 F6   Move to next entry
12476 F7   Show previous screen of address book
12477 F8   Show next screen of address book
12478 F12  WhereIs (search through address book)
12480 Address Selection Commands
12481 --------------------------
12482 F3   Exit the Address Select screen (without selecting an address)
12483 F4   Select the currently highlighted entry
12484 </PRE>
12485 <!--chtml else-->
12486 <PRE>
12487 Navigating the List of Messages               General Alpine Commands
12488 -------------------------------               -----------------------
12489  P   Move to previous entry                    ?  Show this help text
12490  N   Move to next entry
12491  -   Show previous screen of address book
12492 Spc  (space bar) Show next screen of address book
12493  W   WhereIs (search through address book)
12495 Address Selection Commands
12496 --------------------------
12497  E   Exit the Address Select screen (without selecting an address)
12498  S   Select the currently highlighted entry
12499 </PRE>
12500 <!--chtml endif-->
12503 This screen is designed to let you easily scan your address book(s) in
12504 order to select an entry for the message you are composing.  You cannot
12505 edit your address book in any way at this time, for address book
12506 maintenance, select the address book command when not composing a message.
12509 If you are composing a message and know the nickname of the person/list you
12510 want, you can bypass this screen by simply typing in the nickname on the
12511 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12512 selecting an entry does not cancel your message.
12515 FOR MORE INFORMATION on addressing see
12516 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12517 <A HREF="h_abook_opened">Address Book Screen's</A>
12518 help text.
12520 &lt;End of help on this topic&gt;
12521 </BODY>
12522 </HTML>
12523 ===== h_abook_select_top =====
12524 <HTML>
12525 <HEAD>
12526 <TITLE>Addressbook Selection Navigation Explained</TITLE>
12527 </HEAD>
12528 <BODY>
12529 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
12530 <!--chtml if pinemode="function_key"-->
12531 <PRE>
12532 Navigating the List of Address Books       General Alpine Commands
12533 ------------------------------------       -----------------------
12534 F4   View the highlighted address book
12535 F5   Move to previous address book         F1  Show this help text
12536 F6   Move to next address book
12537 F7   Show previous screen of address books
12538 F8   Show next screen of address books
12539 F12  WhereIs (search through address books)
12541 Address Selection Commands
12542 --------------------------
12543 F3   Exit the Address Select screen (without selecting an address)
12544 F4   Select the currently selected entries (if using ListMode)
12545 F9   Change to ListMode
12546 </PRE>
12547 <!--chtml else-->
12548 <PRE>
12549 Navigating the List of Address Books       General Alpine Commands
12550 ------------------------------------       -----------------------
12551  &gt;   View the highlighted address book
12552  P   Move to previous address book         ?  Show this help text
12553  N   Move to next address book
12554  -   Show previous screen of address books
12555 Spc  (space bar) Show next screen of address books
12556  W   WhereIs (search through address books)
12558 Address Selection Commands
12559 --------------------------
12560  E   Exit the Address Select screen (without selecting an address)
12561  S   Select the currently selected entries (if using ListMode)
12562  L   Change to ListMode
12563 </PRE>
12564 <!--chtml endif-->
12567 This screen is designed to let you easily scan your address book(s) in
12568 order to select entries for the message you are composing.  You cannot
12569 edit your address book in any way at this time.  For address book
12570 maintenance, select the address book command when not composing a message.
12573 If you are composing a message and know the nickname of the person/list you
12574 want, you can bypass this screen by simply typing in the nickname on the
12575 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12576 selecting an entry does not cancel your message.
12579 The ListMode command will add a column at the left edge of the screen.
12580 You mark the entries that you wish to select with the &quot;X&quot; command.
12581 This allows you to choose more than one entry at a time.
12584 An alternative method of composing a message to entries in your
12585 address book(s) is to first use the &quot;Select&quot; command from
12586 the address book maintenance screen and then the &quot;Apply&quot;
12587 &quot;ComposeTo&quot; command to start the composer composing to the
12588 selected entries.
12591 FOR MORE INFORMATION on addressing see
12592 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12593 <A HREF="h_abook_opened">Address Book Screen's</A>
12594 help text.
12596 &lt;End of help on this topic&gt;
12597 </BODY>
12598 </HTML>
12599 ===== h_abook_select_listmode =====
12600 <HTML>
12601 <HEAD>
12602 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
12603 </HEAD>
12604 <BODY>
12605 <H1>COMPOSER: SELECT ADDRESSES</H1>
12606 <!--chtml if pinemode="function_key"-->
12607 <PRE>
12608 Navigating the List of Messages                 General Alpine Commands
12609 -------------------------------                 -----------------------
12610 F5   Move to previous entry                     F1  Show this help text
12611 F6   Move to next entry
12612 F7   Show previous screen of address book
12613 F8   Show next screen of address book
12614 F12  WhereIs (search through address book)
12616 Address Selection Commands
12617 --------------------------
12618 F3   Exit the Address Select screen (without selecting an address)
12619 F4   Select the currently highlighted entry
12620 F9   Change to ListMode
12621 </PRE>
12622 <!--chtml else-->
12623 <PRE>
12624 Navigating the List of Messages                 General Alpine Commands
12625 -------------------------------                 -----------------------
12626  P   Move to previous entry                     ?  Show this help text
12627  N   Move to next entry
12628  -   Show previous screen of address book
12629 Spc  (space bar) Show next screen of address book
12630  W   WhereIs (search through address book)
12632 Address Selection Commands
12633 --------------------------
12634  E   Exit the Address Select screen (without selecting an address)
12635  S   Select the currently highlighted entry
12636  L   Change to ListMode
12637 </PRE>
12638 <!--chtml endif-->
12641 This screen is designed to let you easily scan your address book(s) in
12642 order to select entries for the message you are composing.  You cannot
12643 edit your address book in any way at this time, for address book
12644 maintenance, select the address book command when not composing a message.
12647 If you are composing a message and know the nickname of the person/list you
12648 want, you can bypass this screen by simply typing in the nickname on the
12649 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12650 selecting an entry does not cancel your message.
12653 The ListMode command will add a column at the left edge of the screen.
12654 You mark the entries that you wish to select with the &quot;X&quot; command.
12655 This allows you to choose more than one entry at a time.
12658 An alternative method of composing a message to entries in your
12659 address book(s) is to first use the &quot;Select&quot; command from
12660 the address book maintenance screen and then the &quot;Apply&quot;
12661 &quot;ComposeTo&quot; command to start the composer composing to the
12662 selected entries.
12665 FOR MORE INFORMATION on addressing see
12666 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12667 <A HREF="h_abook_opened">Address Book Screen's</A>
12668 help text.
12670 &lt;End of help on this topic&gt;
12671 </BODY>
12672 </HTML>
12673 ===== h_abook_select_checks =====
12674 <HTML>
12675 <HEAD>
12676 <TITLE>Address Selection from Composer Explained</TITLE>
12677 </HEAD>
12678 <BODY>
12679 <H1>COMPOSER: SELECT ADDRESSES</H1>
12680 <!--chtml if pinemode="function_key"-->
12681 <PRE>
12682 Navigating the List of Messages                 General Alpine Commands
12683 -------------------------------                 -----------------------
12684 F5   Move to previous entry                     F1  Show this help text
12685 F6   Move to next entry
12686 F7   Show previous screen of address book
12687 F8   Show next screen of address book
12688 F12  WhereIs (search through address book)
12690 Address Selection Commands
12691 --------------------------
12692 F3   Exit the Address Select screen (without selecting an address)
12693 F4   Select the currently highlighted entry
12694 F8   Either Sets or Unsets all entries in this address book
12695 F9   Set or Unset the highlighted entry
12696 </PRE>
12697 <!--chtml else-->
12698 <PRE>
12699 Navigating the List of Messages                 General Alpine Commands
12700 -------------------------------                 -----------------------
12701  P   Move to previous entry                     ?  Show this help text
12702  N   Move to next entry
12703  -   Show previous screen of address book
12704 Spc  (space bar) Show next screen of address book
12705  W   WhereIs (search through address book)
12707 Address Selection Commands
12708 --------------------------
12709  E   Exit the Address Select screen (without selecting an address)
12710  S   Select the currently highlighted entry
12711  X   Set or Unset the highlighted entry
12712  A   Either Sets or Unsets all entries in this address book
12713 </PRE>
12714 <!--chtml endif-->
12717 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
12718 command.  Type &quot;S Select&quot; to select all of the entries you
12719 have marked, just as if you had typed them in by hand.
12722 An alternative method of composing a message to entries in your
12723 address book(s) is to first use the &quot;Select&quot; command from
12724 the address book maintenance screen and then the &quot;Apply&quot;
12725 &quot;ComposeTo&quot; command to start the composer composing to the
12726 selected entries.
12729 FOR MORE INFORMATION on addressing see
12730 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12731 <A HREF="h_abook_opened">Address Book Screen's</A>
12732 help text.
12734 &lt;End of help on this topic&gt;
12735 </BODY>
12736 </HTML>
12737 ===== h_abook_select_nicks_take =====
12738 <HTML>
12739 <HEAD>
12740 <TITLE>Take Address Nickname Selection Explained</TITLE>
12741 </HEAD>
12742 <BODY>
12743 <H1>TAKEADDR: SELECT NICKNAME</H1>
12744 <!--chtml if pinemode="function_key"-->
12745 <PRE>
12746 Navigating the List of Messages                 General Alpine Commands
12747 -------------------------------                 -----------------------
12748 F5   Move to previous entry                     F1  Show this help text
12749 F6   Move to next entry
12750 F7   Show previous screen of address book
12751 F8   Show next screen of address book
12752 F12  WhereIs (search through address book)
12754 Message Selection Commands
12755 --------------------------
12756 F3   Exit the Nickname Select screen (without selecting an address)
12757 F4   Select the currently highlighted entry
12758 </PRE>
12759 <!--chtml else-->
12760 <PRE>
12761 Navigating the List of Messages                 General Alpine Commands
12762 -------------------------------                 -----------------------
12763  P   Move to previous entry                     ?  Show this help text
12764  N   Move to next entry
12765  -   Show previous screen of address book
12766 Spc  (space bar) Show next screen of address book
12767  W   WhereIs (search through address book)
12769 Message Selection Commands
12770 --------------------------
12771  E   Exit the Nickname Select screen (without selecting an address)
12772  S   Select the currently highlighted entry
12773 </PRE>
12774 <!--chtml endif-->
12777 This screen is designed to let you modify or add to an existing
12778 address book entry.  You have already selected the name(s) and
12779 address(es) through &quot;Take Address&quot;.  This screen simply lets
12780 you scan your address books and select the nickname to be
12781 changed/augmented.  If you want to add a new entry, then you are in
12782 the wrong place-- Select &quot;Exit&quot; command.
12785 FOR MORE INFORMATION on addressing see
12786 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12787 <A HREF="h_abook_opened">Address Book Screen's</A>
12788 help text.
12790 &lt;End of help on this topic&gt;
12791 </BODY>
12792 </HTML>
12793 ===== h_abook_select_nick =====
12794 <HTML>
12795 <HEAD>
12796 <TITLE>Nickname Selection Explained</TITLE>
12797 </HEAD>
12798 <BODY>
12799 <H1>SELECT NICKNAME</H1>
12800 <!--chtml if pinemode="function_key"-->
12801 <PRE>
12802 Navigating the List of Messages                 General Alpine Commands
12803 -------------------------------                 -----------------------
12804 F5   Move to previous entry                     F1  Show this help text
12805 F6   Move to next entry
12806 F7   Show previous screen of address book
12807 F8   Show next screen of address book
12808 F12  WhereIs (search through address book)
12810 Message Selection Commands
12811 --------------------------
12812 F3   Exit the Nickname Select screen (without selecting an address)
12813 F4   Select the currently highlighted entry
12814 </PRE>
12815 <!--chtml else-->
12816 <PRE>
12817 Navigating the List of Messages                 General Alpine Commands
12818 -------------------------------                 -----------------------
12819  P   Move to previous entry                     ?  Show this help text
12820  N   Move to next entry
12821  -   Show previous screen of address book
12822 Spc  (space bar) Show next screen of address book
12823  W   WhereIs (search through address book)
12825 Message Selection Commands
12826 --------------------------
12827  E   Exit the Nickname Select screen (without selecting an address)
12828  S   Select the currently highlighted entry
12829 </PRE>
12830 <!--chtml endif-->
12833 This screen is designed to let you look at the nicknames in your address
12834 books before choosing a new one.
12837 FOR MORE INFORMATION on addressing see
12838 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12839 <A HREF="h_abook_opened">Address Book Screen's</A>
12840 help text.
12842 &lt;End of help on this topic&gt;
12843 </BODY>
12844 </HTML>
12845 ===== h_takeaddr_screen =====
12846 <HTML>
12847 <HEAD>
12848 <TITLE>Take Address Screen Explained</TITLE>
12849 </HEAD>
12850 <BODY>
12851 <H1>TAKE ADDRESS COMMANDS</H1>
12852 <!--chtml if pinemode="function_key"-->
12853 <PRE>
12854 Navigating the List of Addresses       Address Selection Commands        
12855 --------------------------------       --------------------------        
12856  F5  Move to previous entry            F3  Exit without taking address
12857  F6  Move to next entry                F4  Take current address(es)
12858  F7  Show previous page of address list
12859  F8  Show next page of address list
12860  F2  WhereIs (search list)
12861                                --------------
12862 Mode Toggle            F9  Set/Unset current address
12863 -----------            F10 Set all
12864  F12 Toggle between List and single mode       F11 Unset all
12865 </PRE>
12866 <!--chtml else-->
12867 <PRE>
12868 Navigating the List of Addresses       Address Selection Commands
12869 --------------------------------       --------------------------
12870  P  Move to previous entry              &lt;  Exit without taking address
12871  N  Move to next entry                  T  Take address
12872  -  Show previous page of address list
12873 Spc (space bar) Show next page of address list
12874  W  WhereIs (search list)              List Mode
12875                                        ---------
12876 Single Mode                             X  Set/Unset current address
12877 -----------                             A  Set all addresses
12878  L  Switch to list mode                 U  Unset all addresses
12879                                         S  Switch to single mode
12880 </PRE>
12881 <!--chtml endif-->
12883 <H2>Description of the Take Address Screen</H2>
12885 This screen is designed to let you select one or more address/name
12886 combinations from the current message and put them into your address book.
12887 The cursor is initially placed on the line with the message author.
12888 Other lines include the names of people and/or mailing lists who also
12889 received the message.  Other people &quot;involved&quot; in the
12890 message (e.g. the person named as Reply-To:) are also listed here.
12893 The simple case is adding a new, single entry into your address book. To
12894 do this, simply highlight the correct line and press 
12895 <!--chtml if pinemode="function_key"-->
12897 <!--chtml else-->
12898 &quot;T&quot;.
12899 <!--chtml endif-->
12900 To create a new list or add to an existing list, switch the screen display
12901 into List Mode by pressing
12902 <!--chtml if pinemode="function_key"-->
12903 F12.
12904 <!--chtml else-->
12905 &quot;L&quot;.
12906 <!--chtml endif-->
12907 In List Mode, you select the
12908 group of addresses you wish to manipulate by marking them with an
12909 &quot;X&quot;.
12910 The Set/Unset
12911 <!--chtml if pinemode="function_key"-->
12912 (F9)
12913 <!--chtml else-->
12914 (&quot;X&quot;)
12915 <!--chtml endif-->
12916 command will turn the &quot;X&quot; on for the
12917 highlighted address if it was off or turn it off if it was previously on.
12918 The SetAll command will select all of the addresses, and the UnSetAll
12919 command will turn off all the selections.  Once you've gotten the
12920 selection the way you want it, you may create a new list by pressing
12921 <!--chtml if pinemode="function_key"-->
12923 <!--chtml else-->
12924 &quot;T&quot;.
12925 <!--chtml endif-->
12928 In both the simple and list cases, after choosing to take the address,
12929 you will be asked for the nickname of the entry.  Typing in a new name
12930 creates the new entry/list.  Entering an existing nickname will replace
12931 the entry (simple case) or add to the list (list case).  Alternatively,
12932 you can press Ctrl-T at the nickname prompt and select an existing
12933 nickname from your address book.
12936 You will normally start in Single Mode, unless you used the Apply command
12937 to startup the TakeAddr screen, in which case you will start in List Mode.
12938 You may switch between the two modes at any time.  If you've already
12939 selected several addresses in List Mode, those will be remembered when you
12940 switch to Single Mode and then back to List Mode.  The set of addresses
12941 that are pre-selected when you start in List Mode are the From addresses
12942 of all of the messages you are operating on.  You may, of course, easily
12943 erase those selections with the UnSetAll command.
12946 If you have more than one writable address book, you will be prompted for
12947 the name of the address book you wish to add the new entry to before
12948 anything else. You can use ^N and ^P to choose among the defined address
12949 books, or type in the address book name.
12952 FOR MORE INFORMATION on addressing see
12953 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12954 <A HREF="h_abook_opened">Address Book Screen's</A>
12955 help text.
12957 &lt;End of help on this topic&gt;
12958 </BODY>
12959 </HTML>
12960 ===== h_takeexport_screen =====
12961 <HTML>
12962 <HEAD>
12963 <TITLE>Take Export Screen Explained</TITLE>
12964 </HEAD>
12965 <BODY>
12966 <H1>TAKE EXPORT COMMANDS</H1>
12967 <!--chtml if pinemode="function_key"-->
12968 <PRE>
12969 Navigating the List of Addresses       Address Selection Commands        
12970 --------------------------------       --------------------------        
12971  F5  Move to previous entry            F3  Exit without taking address
12972  F6  Move to next entry                F4  Take current address(es)
12973  F7  Show previous page of address list
12974  F8  Show next page of address list
12975  F2  WhereIs (search list)
12976                                --------------
12977 Mode Toggle            F9  Set/Unset current address
12978 -----------            F10 Set all
12979  F12 Toggle between List and single mode       F11 Unset all
12980 </PRE>
12981 <!--chtml else-->
12982 <PRE>
12983 Navigating the List of Addresses       Address Selection Commands
12984 --------------------------------       --------------------------
12985  P  Move to previous entry              &lt;  Exit without taking address
12986  N  Move to next entry                  T  Take address
12987  -  Show previous page of address list
12988 Spc (space bar) Show next page of address list
12989  W  WhereIs (search list)              List Mode
12990                                        ---------
12991 Single Mode                             X  Set/Unset current address
12992 -----------                             A  Set all addresses
12993  L  Switch to list mode                 U  Unset all addresses
12994                                         S  Switch to single mode
12995 </PRE>
12996 <!--chtml endif-->
12998 <H2>Description of the Take Export Screen</H2>
13000 This screen is designed to let you select one or more addresses
13001 from the current message and put them into a file.
13002 Only the user@domain_name part of each address is put into the file.
13005 To put a single entry into a file simply highlight the correct line and press 
13006 <!--chtml if pinemode="function_key"-->
13008 <!--chtml else-->
13009 &quot;T&quot;.
13010 <!--chtml endif-->
13011 To put more than one entry into a file
13012 switch the screen display
13013 into List Mode by pressing
13014 <!--chtml if pinemode="function_key"-->
13015 F12.
13016 <!--chtml else-->
13017 &quot;L&quot;.
13018 <!--chtml endif-->
13019 In List Mode, you select the
13020 group of addresses you wish to manipulate by marking them with an
13021 &quot;X&quot;.
13022 The Set/Unset
13023 <!--chtml if pinemode="function_key"-->
13024 (F9)
13025 <!--chtml else-->
13026 (&quot;X&quot;)
13027 <!--chtml endif-->
13028 command will turn the &quot;X&quot; on for the
13029 highlighted address if it was off or turn it off if it was previously on.
13030 The SetAll command will select all of the addresses, and the UnSetAll
13031 command will turn off all the selections.  Once you've gotten the
13032 selection the way you want it, you may put the addresses in a file by typing
13033 <!--chtml if pinemode="function_key"-->
13035 <!--chtml else-->
13036 &quot;T&quot;.
13037 <!--chtml endif-->
13040 You will be asked for the name of a file to put the addresses in.
13041 If the file already exists, you will be asked whether you want to Overwrite
13042 (replace) the contents of the file or Append to the contents of the file.
13045 &lt;End of help on this topic&gt;
13046 </BODY>
13047 </HTML>
13048 ============= h_abook_view ========================
13049 <HTML>
13050 <HEAD>
13051 <TITLE>Address Book View Explained</TITLE>
13052 </HEAD>
13053 <BODY>
13054 This function allows you to view the contents of an address book entry. You
13055 can only view one entry at a time.
13057 <DL>
13058 <DT>Help
13059 <!--chtml if pinemode="function_key"-->
13060 (F1)
13061 <!--chtml else-->
13063 <!--chtml endif-->
13064 </DT>
13065 <DD>
13066 Display this help text.
13068 <DT>Abook
13069 <!--chtml if pinemode="function_key"-->
13070 (F3)
13071 <!--chtml else-->
13072 (&lt;)
13073 <!--chtml endif-->
13074 </DT>
13075 <DD>
13076 Go back to index of address book entries.
13078 <DT>Update
13079 <!--chtml if pinemode="function_key"-->
13080 (F4)
13081 <!--chtml else-->
13083 <!--chtml endif-->
13084 </DT>
13085 <DD>
13086 Update (modify) this entry.
13088 <DT>ComposeTo
13089 <!--chtml if pinemode="function_key"-->
13090 (F5)
13091 <!--chtml else-->
13093 <!--chtml endif-->
13094 </DT>
13095 <DD>Compose a message to the address(es) in this entry.
13097 <DT>Role
13098 <!--chtml if pinemode="function_key"-->
13099 (F6)
13100 <!--chtml else-->
13102 <!--chtml endif-->
13103 </DT>
13104 <DD>Compose a message to the address(es) in this entry using roles.
13106 <DT>Prev Page
13107 <!--chtml if pinemode="function_key"-->
13108 (F7)
13109 <!--chtml else-->
13111 <!--chtml endif-->
13112 </DT>
13113 <DD>
13114 Show the previous page of the current entry.
13116 <DT>Next Page
13117 <!--chtml if pinemode="function_key"-->
13118 (F8)
13119 <!--chtml else-->
13120 (Space)
13121 <!--chtml endif-->
13122 </DT>
13123 <DD>
13124 Show the next page of the current entry.
13126 <DT>Print
13127 <!--chtml if pinemode="function_key"-->
13128 (F9)
13129 <!--chtml else-->
13131 <!--chtml endif-->
13132 </DT>
13133 <DD>Print the current entry.  You can select the
13134 printer or the print command via the &quot;Setup&quot; command
13135 on the MAIN MENU.
13137 <DT>WhereIs
13138 <!--chtml if pinemode="function_key"-->
13139 (F10)
13140 <!--chtml else-->
13142 <!--chtml endif-->
13143 </DT>
13144 <DD>Search the entry for a string of letters.  If it is
13145 found, move to it.  The string can be one word or a phrase.
13146 If there are multiple occurrences, the cursor moves to the
13147 first occurrence beyond the current cursor position.
13149 <DT>Fwd Email
13150 <!--chtml if pinemode="function_key"-->
13151 (F11)
13152 <!--chtml else-->
13154 <!--chtml endif-->
13155 </DT>
13156 <DD>Begin composition of a new mail message with the displayed
13157 text already inserted in the message body.
13159 </DL>
13161 &lt;End of help on this topic&gt;
13162 </BODY>
13163 </HTML>
13164 ============= h_ldap_view ========================
13165 <HTML>
13166 <HEAD>
13167 <TITLE>LDAP Response View Explained</TITLE>
13168 </HEAD>
13169 <BODY>
13170 This function allows you to view the contents of a directory entry. You
13171 can only view one entry at a time.
13173 <DL>
13174 <DT>Help
13175 <!--chtml if pinemode="function_key"-->
13176 (F1)
13177 <!--chtml else-->
13179 <!--chtml endif-->
13180 </DT>
13181 <DD>
13182 Display this help text.
13184 <DT>Results Index
13185 <!--chtml if pinemode="function_key"-->
13186 (F3)
13187 <!--chtml else-->
13188 (&lt;)
13189 <!--chtml endif-->
13190 </DT>
13191 <DD>Go back to index of search results.
13193 <DT>ComposeTo
13194 <!--chtml if pinemode="function_key"-->
13195 (F5)
13196 <!--chtml else-->
13198 <!--chtml endif-->
13199 </DT>
13200 <DD>Compose a message to the address(es) in this entry.
13202 <DT>Role
13203 <!--chtml if pinemode="function_key"-->
13204 (F6)
13205 <!--chtml else-->
13207 <!--chtml endif-->
13208 </DT>
13209 <DD>Compose a message to the address(es) in this entry using roles.
13211 <DT>Prev Page
13212 <!--chtml if pinemode="function_key"-->
13213 (F7)
13214 <!--chtml else-->
13216 <!--chtml endif-->
13217 </DT>
13218 <DD>
13219 Show the previous page of the current entry.
13221 <DT>Next Page
13222 <!--chtml if pinemode="function_key"-->
13223 (F8)
13224 <!--chtml else-->
13225 (Space)
13226 <!--chtml endif-->
13227 </DT>
13228 <DD>
13229 Show the next page of the current entry.
13231 <DT>Print
13232 <!--chtml if pinemode="function_key"-->
13233 (F9)
13234 <!--chtml else-->
13236 <!--chtml endif-->
13237 </DT>
13238 <DD>Print the current entry on paper.  You can select the
13239 printer or the print command via the &quot;Setup&quot; command
13240 on the MAIN MENU.
13242 <DT>WhereIs
13243 <!--chtml if pinemode="function_key"-->
13244 (F10)
13245 <!--chtml else-->
13247 <!--chtml endif-->
13248 </DT>
13249 <DD>Search the entry for a string of letters.  If it is
13250 found, move to it.  The string can be one word or a phrase.
13251 If there are multiple occurrences, the cursor moves to the
13252 first occurrence beyond the current cursor position.
13254 <DT>Fwd Email
13255 <!--chtml if pinemode="function_key"-->
13256 (F11)
13257 <!--chtml else-->
13259 <!--chtml endif-->
13260 </DT>
13261 <DD>Begin composition of a new mail message with the displayed
13262 text already inserted in the message body.
13264 <DT>Save
13265 <!--chtml if pinemode="function_key"-->
13266 (F12)
13267 <!--chtml else-->
13269 <!--chtml endif-->
13270 </DT>
13271 <DD>Save the displayed entry to one of your address books or export
13272 it to a file.
13273 </DL>
13275 &lt;End of help on this topic&gt;
13276 </BODY>
13277 </HTML>
13278 ===== h_attachment_screen =====
13279 <HTML>
13280 <HEAD>
13281 <TITLE>Attachment Index Screen Explained</TITLE>
13282 </HEAD>
13283 <BODY>
13284 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
13285 message's attachments, and allows various operations on them.  The
13286 first attachment is usually the message text, but does not include the
13287 header portion of the message.
13289 Available commands include:
13291 <DL>
13293 <DT>Help</DT>
13294 <DD>Show this help text.
13296 <DT>Msg #<I>num</I></DT>
13297 <DD>Leave this screen without displaying or saving any attachments.
13299 <DT>View</DT>
13300 <DD>View the currently selected attachment.
13302 <DT>Prev Attach</DT>
13303 <DD>Move to previous attachment.
13305 <DT>Next Attach</DT>
13306 <DD>Move to next attachment.
13308 <DT>Prev Page</DT>
13309 <DD>Previous page of the listed attachments.
13311 <DT>Next Page</DT>
13312 <DD>Next page of the listed attachments.
13314 <DT>Delete</DT>
13315 <DD>Mark the currently selected attachment for Deletion.
13316 This does not modify the current message by deleting the attachment from
13317 it, but instead the delete flag <EM>only</EM> has an effect when saving
13318 the message to a folder.
13319 Attachments marked for deletion are not copied to the destination folder
13320 along with the rest of the message when it is saved.
13321 It is ok for the destination folder to be the same as the current folder.
13322 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
13324 <DT>Undelete</DT>
13325 <DD>Turn off the Delete flag for the selected attachment.
13327 <DT>Save</DT>
13328 <DD>Save the selected attachment to a file.  If the attachment is of
13329 type &quot;RFC822/Message&quot;, then the attachment will be saved to
13330 the specified mail folder.
13332 <DT>Export</DT>
13333 <DD>If the attachment is of
13334 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13335 copy the message to a file in the same way this command works on 
13336 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13338 <DT>Pipe</DT>
13339 <DD>Pipe the attachment contents into a UNIX command (if enabled).
13340 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
13342 <DT>WhereIs</DT>
13343 <DD>Find a matching string in the attachment list.
13345 <DT>AboutAttch</DT>
13346 <DD>Examine various aspects of the selected attachment.
13348 <DT>Print</DT>
13349 <DD>Print the selected attachment.
13351 <DT>Forward</DT>
13352 <DD>Forward the selected attachment as an attachment.
13353 </DL>
13357 All attachments can be saved or piped into a UNIX command, but some may
13358 not be readily displayed by either Alpine or an external tool.  In such
13359 cases, the reason why the message cannot be displayed is displayed on
13360 Alpine's message line.
13362 &lt;End of help on this topic&gt;
13363 </BODY>
13364 </HTML>
13365 ============= h_mail_text_att_view ========================
13366 <HTML>
13367 <HEAD>
13368 <TITLE>Attachment View Screen Explained</TITLE>
13369 </HEAD>
13370 <BODY>
13371 This function allows you to view the contents of a text attachment. You
13372 can only view one attachment at a time.
13374 Available commands include:
13376 <DL>
13378 <DT>Help</DT>
13379 <DD>Display this help text
13381 <DT>AttchIndex</DT>
13382 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
13384 <DT>Prev Page</DT>
13385 <DD>Show the previous page of the current attachment.
13387 <DT>Next Page</DT>
13388 <DD>Show the next page of the current attachment by pressing the space bar.
13390 <DT>Delete</DT>
13391 <DD>Mark the viewed attachment for Deletion.  The delete
13392 flag <EM>only</EM> has affect when saving the message to a folder.
13393 Attachments marked for deletion are exluded from the messsage when
13394 it is saved.  In addition, the delete mark <EM>only</EM> applies to
13395 this Alpine session.
13397 <DT>Undelete</DT>
13398 <DD>Turn off the Delete flag for the selected attachment.
13400 <DT>Save</DT>
13401 <DD>Copy the current attachment to a file.  If you just enter
13402 a filename, the attachment will be saved with that name in
13403 your home directory 
13404 <!--chtml if pinemode="running"-->
13405 (which, in the present configuration of your system, is
13406  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13407 <!--chtml endif-->
13408 or current working directory
13409 <!--chtml if pinemode="running"-->
13410 (which, at least for your current Alpine &quot;session,&quot; 
13411 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13412 <!--chtml endif-->, depending on the
13413 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13414 configuration setting.  You may enter the full
13415 path and filename to save it in another directory instead.
13417 <DT>Export</DT>
13418 <DD>If the attachment is of
13419 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13420 copy the message to a file in the same way this command works on 
13421 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13422 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
13423 defined, they may affect the contents of the exported file.)
13425 <DT>Pipe</DT>
13426 <DD>Pipe the attachment contents into a UNIX command (if enabled)
13428 <DT>WhereIs</DT>
13429 <DD>Search the attachment for a string of letters.  If it is
13430 found, move to it.  The string can be one word or a phrase.
13431 If there are multiple occurrences, the cursor moves to the
13432 first occurrence beyond the current cursor position.
13434 <DT>Print</DT>
13435 <DD>Print the current attachment on paper.  You can select the
13436 printer or the print command via the &quot;Setup&quot; command
13437 on the MAIN MENU.
13439 <DT>Forward</DT>
13440 <DD>Forward the selected attachment as an attachment.
13441 </DL>
13443 &lt;End of help on this topic&gt;
13444 </BODY>
13445 </HTML>
13446 ============= h_journal ==============
13447 <HTML>
13448 <HEAD>
13449 <TITLE>Recent Message Journal 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 text 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 text 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_debugjournal ==============
13506 <HTML>
13507 <HEAD>
13508 <TITLE>Debug Journal Explained</TITLE>
13509 </HEAD>
13510 <BODY>
13512 The following commands are available on this screen:
13514 <DL>
13515 <DT>Help</DT>
13516 <DD>Show this help text
13518 <DT>Exit</DT>
13519 <DD>Exit Viewer, and go back to mail processing
13521 <DT>Timestamps</DT>
13522 <DD>Turn on or off timestamps.
13524 <DT>DebugView</DT>
13525 <DD>Set the level of debugging you want to see. The level may be any number
13526 in the range 0-9. Higher numbers show more debugging detail. Note that the
13527 debugging information has already been captured. This setting just causes the
13528 debugging information that you see to be filtered. If you set this to
13529 the number &quot;5&quot; then you will be shown all of the debugging information
13530 at levels 5 and below.
13531 It's actually a bit more complicated than that. A fixed amount of memory
13532 is used to store the debug information.
13533 Since the amount of memory used is limited the debugging information
13534 has to be trimmed back when it gets too large.
13536 <DT>Prev Page</DT>
13537 <DD>Show the previous page text
13539 <DT>Next Page</DT>
13540 <DD>Show the next page of text by pressing the space bar
13542 <DT>Print</DT>
13543 <DD>Print the displayed text on paper.  You can select the
13544 printer or the print command via the &quot;Setup&quot; command
13545 on the MAIN MENU.
13547 <DT>Fwd Email</DT>
13548 <DD>Begin composition of a new mail message with the displayed
13549 text already inserted in the message body.
13551 <DT>Save</DT>
13552 <DD>Copy the displayed text to a file.  If you just enter
13553 a filename, the text will be saved with that name in
13554 your 
13555 home directory 
13556 <!--chtml if pinemode="running"-->
13557 (which, in the present configuration of your system, is
13558  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13559 <!--chtml endif-->
13560 or current working directory
13561 <!--chtml if pinemode="running"-->
13562 (which, at least for your current Alpine &quot;session,&quot; 
13563 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13564 <!--chtml endif-->, depending on the
13565 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13566 configuration setting.   You may enter the full
13567 path and filename to save it in another directory instead.
13569 <DT>WhereIs</DT>
13570 <DD>Search the text for a string of letters.  If it is
13571 found, move to it.  The string can be one word or a phrase.
13572 If there are multiple occurrences, the cursor moves to the
13573 first occurrence beyond the current cursor position.
13574 </DL>
13576 &lt;End of help on this topic&gt;
13577 </BODY>
13578 </HTML>
13579 ============= h_simple_text_view ==============
13580 <HTML>
13581 <HEAD>
13582 <TITLE>Simple Text View Screen Explained</TITLE>
13583 </HEAD>
13584 <BODY>
13586 The following commands are available on this screen:
13588 <DL>
13589 <DT>Help</DT>
13590 <DD>Show this help text
13592 <DT>Exit</DT>
13593 <DD>Exit Viewer, and go back to mail processing
13595 <DT>Prev Page</DT>
13596 <DD>Show the previous page text
13598 <DT>Next Page</DT>
13599 <DD>Show the next page of text by pressing the space bar
13601 <DT>Print</DT>
13602 <DD>Print the displayed text on paper.  You can select the
13603 printer or the print command via the &quot;Setup&quot; command
13604 on the MAIN MENU.
13606 <DT>Fwd Email</DT>
13607 <DD>Begin composition of a new mail message with the displayed
13608 text already inserted in the message body.
13610 <DT>Save</DT>
13611 <DD>Copy the displayed text to a file.  If you just enter
13612 a filename, the attachment will be saved with that name in
13613 your 
13614 home directory 
13615 <!--chtml if pinemode="running"-->
13616 (which, in the present configuration of your system, is
13617  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13618 <!--chtml endif-->
13619 or current working directory
13620 <!--chtml if pinemode="running"-->
13621 (which, at least for your current Alpine &quot;session,&quot; 
13622 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13623 <!--chtml endif-->, depending on the
13624 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13625 configuration setting.   You may enter the full
13626 path and filename to save it in another directory instead.
13628 <DT>WhereIs</DT>
13629 <DD>Search the attachment for a string of letters.  If it is
13630 found, move to it.  The string can be one word or a phrase.
13631 If there are multiple occurrences, the cursor moves to the
13632 first occurrence beyond the current cursor position.
13633 </DL>
13635 &lt;End of help on this topic&gt;
13636 </BODY>
13637 </HTML>
13638 ======= h_pine_for_windows ========
13639 <HTML>
13640 <HEAD>
13641 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
13642 </HEAD>
13643 <BODY>
13644 <H1>Getting Help In PC-Alpine</H1>
13647 PC-Alpine offers general and specific help text. From the <A
13648 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
13649 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
13650 specific help for that screen is available from the toolbar Help menu or
13651 with the 
13652 <!--chtml if pinemode="function_key"-->
13653 &quot;F1&quot; key.
13654 <!--chtml else-->
13655 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
13656 typing &quot;?&quot; would be mistaken as entering text.
13657 <!--chtml endif-->
13660 Although this version of Alpine is for Microsoft Windows, it is not
13661 considered a full &quot;Graphical User Interface&quot; application. 
13662 Yet, many of the controls that Windows users are accustomed to seeing, 
13663 such as scrollbars and toolbars, are available.
13666 PC-Alpine offers considerable mouse support.  You can view what is
13667 &quot;click-able&quot; by dragging your mouse over any screen; when the
13668 arrow cursor changes into a hand, you found something. Mouse-click
13669 possibilities include navigating between screens and folders and
13670 double-clicking on hyperlinks to open your Web browser.
13671 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
13672 screen.  Examples of right-click options include &quot;copy&quot; after
13673 selecting text to copy and &quot;View in New Window&quot; when you click
13674 on a particular message in the Message Index. The menu choices available
13675 to you will vary based upon what screen is open, where on the screen your
13676 cursor is located, and even what action you have already taken.
13679 &lt;End of help on this topic&gt;
13680 </BODY>
13681 </HTML>
13682 ===== h_composer =====
13683 <HTML>
13684 <HEAD>
13685 <TITLE>COMPOSER COMMANDS</TITLE>
13686 </HEAD>
13687 <BODY>
13688 <H1>COMPOSER COMMANDS</H1>
13690 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>
13691 &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>
13692 &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>
13693 &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>
13694 &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>
13695 &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>
13696 &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>
13697 &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>
13698 &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>
13699 &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>
13700 ---------------------------------------|&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>
13701 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>
13702 &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>
13703 &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>
13704 &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>
13707 NOTE:
13708 <OL>
13709  <LI>For help on a particular command, highlight the bold text associated
13710 with it above and hit Return.
13711  <LI> The availability of certain commands
13712 is determined by Alpine configuration files and system capabilities.
13713 At some sites, certain commands may not be available due to security or
13714 support concerns.
13715  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13716 Ctrl-&#92;, ESC.
13717  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13718 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13719 </OL>
13722 HINT: To move rapidly to the bottom of a message you are composing,
13723 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
13724 with the Mark and Cut commands to eliminate large amounts of unwanted
13725 text in a Reply.
13727 <H2>Description of Composer</H2>
13729 Alpine has a built-in editing program that allows you to compose messages
13730 without having to leave Alpine.  The editor is designed to be very simple to
13731 use so that you can get started writing email right away.
13734 Messages are usually just text, about 80 columns wide.  Using upper and
13735 lower case is encouraged.  On some systems the size limit of the message
13736 is about 100,000 characters, which is about 2,000 lines.  You can include
13737 punctuation and special characters found on most keyboards, but you can't
13738 include characters with diacritical marks and certain special symbols.
13741 Text automatically wraps as you type past the end of a line so you do not
13742 have to hit return.  Using the
13743 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
13744 you can also reformat text explicitly, perhaps after you have
13745 deleted some text.
13748 You can include other text files with the 
13749 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
13750 which will prompt you for the name of the file to insert at the
13751 current cursor postion.
13754 <UL>
13755 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13756 </UL>
13758 &lt;End of help on this topic&gt;
13759 </BODY>
13760 </HTML>
13761 ====== h_composer_browse =====
13762 <HTML>
13763 <HEAD>
13764 <TITLE>BROWSER</TITLE>
13765 </HEAD>
13766 <BODY>
13767 <H1>BROWSER</H1>
13768 This screen lets you browse your files and directories.  To go to another 
13769 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
13770 choose &quot;Select&quot; (the default choice on the menu); 
13771 or choose &quot;Goto&quot; and enter the name of the directory.
13772 <!--chtml if pinemode="os_windows"-->
13773 <!--chtml else--> 
13774 In Unix Alpine, you may use 
13775 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
13776 to another's home directory.  
13777 <!--chtml endif--><P>
13778 To select a file, move the cursor to it and 
13779 choose &quot;Select&quot; (the default choice on the menu).  
13781 <UL>
13782 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
13783 inclusion in the 
13784 message body (that is, you chose &quot;Read File&quot; with the cursor under 
13785 the 
13786 &quot;----- Message Text -----&quot; line
13787 while composing, then &quot;To Files&quot;):  Since the file 
13788 selected will become part of the message text, it must be in a format 
13789 suitable for that (Alpine does not check!), such as a plain text file.
13790 Files of other formats (for example, graphics, databases, software 
13791 programs) should be 
13792 <B>attached</B> to the message instead --
13793 by moving the cursor in the COMPOSE MESSAGE screen into the 
13794 message header area and pressing 
13795 <!--chtml if pinemode="function_key"-->
13797 <!--chtml else-->
13798 Ctrl-J.
13799 <!--chtml endif--> 
13801 <P><LI>
13802 Note <B>if</B> you are currently using the BROWSER for saving a message 
13803 attachment, or exporting a message, to a file: You can use the Add command to 
13804 provide the name for a new file to save/export to, and then select that name 
13805 to use it for the save/export operation.  Back at the prompt 
13806 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
13807 either Overwrite or Append (it doesn't make a difference, since the file is 
13808 so far empty).  Note: If you cancel the 
13809 operation at that point, the file created with the Add command will remain 
13810 0 bytes in size.
13812 </UL>
13813 <P><UL>
13814 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13815 </UL>
13817 &lt;End of help on this topic&gt;
13818 </BODY>
13819 </HTML>
13820 ====== h_composer_ins =====
13821 <HTML>
13822 <HEAD>
13823 <TITLE>INSERT TEXT FILE</TITLE>
13824 </HEAD>
13825 <BODY>
13826 <H1>INSERT TEXT FILE</H1>
13828 Use this function to insert a text file. The file name
13829 given can be an absolute file path name for your system
13830 <!--chtml if pinemode="os_windows"-->
13831 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
13832 with a relative pathname, or simply a file name without
13833 drive or directory specification.  
13834 <!--chtml else-->
13835 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
13836 a file in your home directory, or a file path relative to your 
13837 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
13838 your home directory or &quot;~user&quot; to refer to another
13839 account's home directory.
13840 <!--chtml endif-->
13842 No wild card characters may be used.  
13843 The file must reside on the system running Alpine.
13845 If the 
13846 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13847 feature is set, names are relative to your current working directory 
13848 <!--chtml if pinemode="running"-->
13849 (which, at least for your current Alpine &quot;session,&quot; 
13850 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13851 <!--chtml endif-->
13852 rather than your home directory
13853 <!--chtml if pinemode="running"-->
13854 (which, in the present configuration of your system, is
13855  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13856 <!--chtml endif-->
13858 <P><UL>
13859 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13860 </UL>
13862 &lt;End of help on this topic&gt;
13863 </BODY>
13864 </HTML>
13865 ====== h_composer_ins_m =====
13866 <HTML>
13867 <HEAD>
13868 <TITLE>INSERT MESSAGE</TITLE>
13869 </HEAD>
13870 <BODY>
13871 <H1>INSERT MESSAGE</H1>
13873 Type in the number of a message in the currently open folder to insert it
13874 into your message.
13875 <P><UL>
13876 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13877 </UL>
13879 &lt;End of help on this topic&gt;
13880 </BODY>
13881 </HTML>
13882 ====== h_composer_search =====
13883 <HTML>
13884 <HEAD>
13885 <TITLE>Explanation of Composer Whereis Command </TITLE>
13886 </HEAD>
13887 <BODY>
13888 <H1>Help For Whereis Command</H1>
13890 Whereis is used to search the message for a word or part of a word.
13891 When searching in the composer, only the message part of your mail is
13892 searched, and the cursor is put on the first occurrence appearing
13893 after the location of the cursor.  The search will wrap to the
13894 beginning of the message when it no longer finds matches in the
13895 remainder of the message.
13897 To search for the same string a second time, press 
13898 <!--chtml if pinemode="function_key"-->
13899 &quot;F6&quot;
13900 <!--chtml else-->
13901 &quot;^W&quot;
13902 <!--chtml endif-->
13903 to begin search and then just press RETURN to accept the previous
13904 search string shown in square brackets rather than entering a new
13905 search string.<P>
13907 The &quot;Search&quot; prompt has several sub-command available:
13909 <DL>
13910 <DT>Get Help</DT>
13911 <DD> Takes you to this help page.
13913 <DT>Cancel</DT>
13914 <DD> Cancels the prompt.  No search takes place.
13916 <DT>First Line</DT>
13917 <DD> Takes you back to the composer with the cursor on the first character
13918 of the first line of text.
13920 <DT>Last Line</DT>
13921 <DD> Takes you back to the composer with the cursor on the last character
13922 of the last line of text.
13924 <DT>Replace (Optional)</DT>
13925 <DD> This sub-command is enabled by the 
13926 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13927 feature (which is on by default); see its help screen for details on how replacing works.
13929 </DL>
13931 &lt;End of help on this topic&gt;
13932 </BODY>
13933 </HTML>
13934 ====== h_sigedit_search =====
13935 <HTML>
13936 <HEAD>
13937 <TITLE>Explanation of Whereis Command </TITLE>
13938 </HEAD>
13939 <BODY>
13940 <H1>Help For Whereis Command</H1>
13942 Whereis is used to search for a word or part of a word.
13943 When searching the cursor is put on the first occurrence appearing
13944 after the location of the cursor.  The search will wrap to the
13945 beginning of the signature when it no longer finds matches in the
13946 remainder of the signature.
13948 To search for the same string a second time, press 
13949 <!--chtml if pinemode="function_key"-->
13950 &quot;F6&quot;
13951 <!--chtml else-->
13952 &quot;^W&quot;
13953 <!--chtml endif-->
13954 to begin search and then just press RETURN to accept the previous
13955 search string shown in square brackets rather than entering a new
13956 search string.<P>
13958 The &quot;Search&quot; prompt has several sub-command available:
13960 <DL>
13961 <DT>Get Help</DT>
13962 <DD> Takes you to this help page.
13964 <DT>Cancel</DT>
13965 <DD> Cancels the prompt.  No search takes place.
13967 <DT>First Line</DT>
13968 <DD> Takes you back to the composer with the cursor on the first character
13969 of the first line of text.
13971 <DT>Last Line</DT>
13972 <DD> Takes you back to the composer with the cursor on the last character
13973 of the last line of text.
13975 <DT>Replace (Optional)</DT>
13976 <DD> This sub-command is enabled by the 
13977 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
13978 feature (which is on by default); see its help screen for details on how replacing works.
13980 </DL>
13982 &lt;End of help on this topic&gt;
13983 </BODY>
13984 </HTML>
13985 ======= h_composer_to ====
13986 <HTML>
13987 <HEAD>
13988 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
13989 </HEAD>
13990 <BODY>
13991 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
13993 <H2>The &quot;To:&quot; field</H2>
13994 The address you enter here must be a valid email address that is reachable
13995 from your site. 
13997 <H2>Email Address Format</H2>
13998 You may enter a full name and email address, 
13999 <!--chtml if pinemode="os_windows"-->
14000 <!--chtml else-->
14001 a local (meaning, on the same 
14002 host as the one you are running Alpine on) username that Alpine will
14003 complete for you, 
14004 <!--chtml endif-->
14005 the nickname of someone in a 
14006 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
14007 mail alias defined by your system administrator.  When you move the cursor
14008 out of this field, the nicknames will be expanded to the addresses in your
14009 address book, and the local usernames will be expanded to include the 
14010 persons' actual names.  You may enter as many addresses as you wish, but they 
14011 must be separated by commas.  You can move around this and other header fields
14012 with the arrow keys and use many of the usual composer editing keys.
14014 <UL>
14015 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14016 </UL>
14019 <H2>MESSAGE HEADER COMMANDS</H2>
14020 <!--chtml if pinemode="function_key"-->
14021 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
14022 ^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>
14023 ^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>
14024 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
14025 ^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>
14026 ^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>
14027 ^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>
14028 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>
14029 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>
14030 ^@&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>
14031 ----------------------------------------|<BR>
14032 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
14033 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>
14034 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>
14035 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>
14036 <!--chtml else-->
14037 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
14038 ^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>
14039 ^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>
14040 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
14041 ^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>
14042 ^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>
14043 ^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>
14044 ^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>
14045 ^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>
14046 ^@&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>
14047 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
14048 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>
14049 ^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>
14050 ^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>
14051 ^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>
14052 <!--chtml endif-->
14055 NOTE:
14056 <OL>
14057  <LI>For help on a particular command, highlight the bold text associated
14058 with it above and hit Return.
14059  <LI> The availability of certain commands 
14060 is determined by Alpine configuration files and system capabilities.
14061 At some sites, certain commands may not be available due to security or
14062 support concerns.
14063 </OL>
14066 <UL>   
14067 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14068 </UL><P>
14069 &lt;End of help on this topic&gt;
14070 </BODY>
14071 </HTML>
14072 ======= h_composer_cc ====
14073 <HTML>
14074 <HEAD>
14075 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
14076 </HEAD>
14077 <BODY>
14078 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
14079 The Cc: field is just like the To: field, except it is used for addressees
14080 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
14081 not directly meant directly &quot;for&quot; these recipients, but you wanted 
14082 them to see the message.  The only difference the recipients see is that their 
14083 name is in the Cc: field, rather than the To: field.
14085 For help with Cc: field editing
14086 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14088 <UL>
14089 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14090 </UL>
14092 <UL>   
14093 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14094 </UL><P>
14095 &lt;End of help on this topic&gt;
14096 </BODY>
14097 </HTML>
14098 ======= h_composer_bcc ====
14099 <HTML>
14100 <HEAD>
14101 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
14102 </HEAD>
14103 <BODY>
14104 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
14105 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
14106 a copy of the message to one or more people whose addresses you do not
14107 wish disclosed, either to reduce clutter or for confidentiality.
14109 The format of the Bcc: field is just the same as the To: and Cc: fields in
14110 the way the addresses are entered.  The recipients listed here will
14111 receive a copy of the message, but --assuming your site's mail transport
14112 software is properly configured-- their addresses will not show up in the
14113 headers of the message, as delivered to all of the recipients.  The To:
14114 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
14116 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
14117 will automatically generate and place in the To: field a pseudo-address of 
14118   &quot;undisclosed-recipients: ;&quot;
14119 or whatever string has been specified in the 
14120 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14121 variable.
14123 The reason for this is to avoid embarrassment caused by some Internet
14124 mail transfer software that interprets a &quot;missing&quot; To: header as 
14125 an error and replaces it with an Apparently-to: header that may contain
14126 the addresses you entered on the Bcc: line.  In addition, it may be
14127 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
14129 You can manipulate what text ends up on the (originally) empty To:
14130 field.  Just remember to put a colon and semicolon at the end of the
14131 field, which is a special notation denoting that it is not a real address.
14133 For information on message header editing
14134 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14136 <UL>
14137 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14138 </UL>
14140 <UL>   
14141 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14142 </UL><P>
14143 &lt;End of help on this topic&gt;
14144 </BODY>
14145 </HTML>
14146 ======= h_composer_lcc ====
14147 <HTML>
14148 <HEAD>
14149 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
14150 </HEAD>
14151 <BODY>
14152 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
14153 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
14154 you wish to send a message to a list of people but avoid having all
14155 of their addresses visible, in order to reduce clutter when the
14156 message is received.
14158 It is similar to the 
14159 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
14160 in that individual
14161 addressees are hidden, but Lcc is designed to work specifically with
14162 distribution lists you have created in your 
14163 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
14164 the nickname of the list on the Lcc line will result in the full name of
14165 your Alpine Address Book list being placed on the To: line of the message,
14166 using a special notation that distinguishes it from a real address. You
14167 must leave the To: line blank for your list name to appear there.
14169 For example, if you have this list entered in your Address Book:<PRE>
14171         largo         Key Largo List       DISTRIBUTION LIST:
14172                                            bogie@mgm.com
14173                                            lauren@mgm.com
14174                                            walter@mgm.com</PRE>
14177 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
14178 the result is:<PRE>
14180         To      : Key Largo List: ;
14181         Cc      :
14182         Bcc     :
14183         Fcc     : sent-mail
14184         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
14185                   lauren@mgm.com,
14186                   walter@mgm.com
14187         Subject :</PRE>
14189 Each recipient listed on the Lcc: line receives a copy of the message
14190 without their address being visible (as though they were listed on the
14191 Bcc: line). The colon-semicolon notation used to put the full-name of the
14192 list on the To: line is a special address format that doesn't specify any
14193 actual addressees, but does give some information to the recipients of the
14194 message.
14196 Note: if after entering an LCC, you delete the list name that is placed
14197 on the To: line, then recipients will see <PRE>
14198        To: undisclosed-recipients: ;</PRE>
14200 (or whatever string is defined in the 
14201 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14202 variable) just as in the BCC case. 
14204 For help with Lcc: field editing
14205 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14207 <UL>
14208 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14209 </UL>
14211 <UL>   
14212 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14213 </UL><P>
14214 &lt;End of help on this topic&gt;
14215 </BODY>
14216 </HTML>
14217 ======= h_composer_from =======
14218 <HTML>
14219 <HEAD>
14220 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
14221 </HEAD>
14222 <BODY>
14223 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
14225 This header carries your return address.  It is the address toward which
14226 replies (and often, future unrelated correspondence) will be directed,
14227 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
14228 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
14229 sure this address is correct.
14231 For help with message header editing
14232 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14234 <UL>
14235 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14236 </UL>
14238 <UL>   
14239 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14240 </UL><P>
14241 &lt;End of help on this topic&gt;
14242 </BODY>
14243 </HTML>
14244 ======= h_composer_reply_to =======
14245 <HTML>
14246 <HEAD>
14247 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
14248 </HEAD>
14249 <BODY>
14250 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
14252 Most people should not need this header. The Reply-To: header is used in
14253 cases where you would like replies to your messages to be directed to an
14254 address other than your normal &quot;From:&quot; address.  This is atypical, 
14255 but can happen when you use multiple machines and do not have the same account
14256 name on each one, or when you wish to direct certain replies to accounts
14257 or folders designated for specific classes of correspondence.
14259 For help with message header editing
14260 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14262 <UL>
14263 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14264 </UL>
14267 <UL>   
14268 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14269 </UL><P>
14270 &lt;End of help on this topic&gt;
14271 </BODY>
14272 </HTML>
14273 ======= h_composer_custom_addr ====
14274 <HTML>
14275 <HEAD>
14276 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14277 </HEAD>
14278 <BODY>
14279 <H1>CUSTOMIZED HEADER FIELD</H1>
14280 This is a customized header, i.e. not one that is part of Alpine's normal
14281 set of Compose headers.
14283 For help with message header editing
14284 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14286 <UL>
14287 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14288 </UL>
14290 <UL>   
14291 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14292 </UL><P>
14293 &lt;End of help on this topic&gt;
14294 </BODY>
14295 </HTML>
14296 ======= h_composer_custom_free ====
14297 <HTML>
14298 <HEAD>
14299 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14300 </HEAD>
14301 <BODY>
14302 <H1>CUSTOMIZED HEADER FIELD</H1>
14303 This is a customized header, i.e. not one that is part of Alpine's normal
14304 set of Compose headers.
14306 This field consists of arbitrary text.
14308 For help with message header editing
14309 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14311 <UL>   
14312 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14313 </UL><P>
14314 &lt;End of help on this topic&gt;
14315 </BODY>
14316 </HTML>
14317 ====== h_composer_news =====
14318 <HTML>
14319 <HEAD>
14320 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
14321 </HEAD>
14322 <BODY>
14323 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
14324 Use the newsgroups line to specify any and all USENET newsgroups to which
14325 your message should be posted.  When composing a message from scratch, this
14326 line may be hidden.  If so, just press the rich headers command
14327 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
14328 to make it visible.
14330 <EM>Be aware</EM> that when you post to a newsgroup thousands of
14331 people will be reading your message.  Also, you or your system manager
14332 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
14333 in order for you to be able to post.
14335 For help with message header editing
14336 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14337 <P><UL>
14338 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14339 </UL>
14341 &lt;End of help on this topic&gt;
14342 </BODY>
14343 </HTML>
14344 ======= h_composer_fcc ====
14345 <HTML>
14346 <HEADER>
14347 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
14348 </HEADER>
14349 <BODY>
14350 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
14351 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
14352 each outgoing message.  The default value can be configured with the
14353 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
14354 the file carbon copy on any message you send by editing the FCC header.<p>
14356 You may type ^T to get a list of all your folders and select one to use as
14357 the FCC for this message.<P>
14359 For help with message header editing
14360 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14362 <UL>   
14363 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14364 </UL><P>
14365 &lt;End of help on this topic&gt;
14366 </BODY>
14367 </HTML>
14368 ======= h_composer_subject ====
14369 <HTML>
14370 <HEADER>
14371 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
14372 </HEADER>
14373 <BODY>
14374 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
14376 The subject header provides a place to enter a few words that summarize
14377 the topic of the message you are sending.  You may leave this line blank,
14378 but it is considered a courtesy to use a meaningful subject.<p>
14380 For help with message header editing
14381 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14383 <UL>   
14384 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14385 </UL><P>
14386 &lt;End of help on this topic&gt;
14387 </BODY>
14388 </HTML>
14389 ======= h_composer_attachment ====
14390 <HTML>
14391 <HEAD>
14392 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
14393 </HEAD>
14394 <BODY>
14395 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
14397 The &quot;Attchmnt:&quot; field is where you specify what file or
14398 files you'd like attached to
14399 the message you are composing.  Those files must reside on the machine
14400 running Alpine. If your file is on a PC or Mac and you run Alpine with an
14401 account on a Unix machine, you'll have to transfer it before attaching it.
14402 Contact local computer support people for assistance with transferring.
14405 The file name
14406 given can be an absolute file path name for your system
14407 <!--chtml if pinemode="os_windows"-->
14408 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14409 with a relative pathname, or simply a file name without
14410 drive or directory specification.  
14411 <!--chtml else-->
14412 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14413 a file in your home directory, or a file path relative to your 
14414 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14415 your home directory or &quot;~user&quot; to refer to another
14416 account's home directory.
14417 <!--chtml endif--><P>
14418 No wild card characters may be used.
14419 <P>If the 
14420 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14421 feature is set, names are relative to your current working directory 
14422 <!--chtml if pinemode="running"-->
14423 (which, at least for your current Alpine &quot;session,&quot; 
14424 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14425 <!--chtml endif-->
14426 rather than your home directory
14427 <!--chtml if pinemode="running"-->
14428 (which, in the present configuration of your system, is
14429  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14430 <!--chtml endif-->
14433 Alpine uses MIME encoding for attachments, so binaries and files of any
14434 length can safely be delivered to any MIME-capable mail reading program.
14435 If you send an attachment to someone who does not have a MIME-capable mail
14436 reading program yet, then the main message text will be readable, but
14437 attachments (even attachments that are just plain text) are not.
14440 Typing the filename on the Attchmnt: line achieves the same
14441 result as using the 
14442 <!--chtml if pinemode="function_key"-->
14444 <!--chtml else-->
14445 Ctrl-J
14446 <!--chtml endif--> command.
14449 If you Forward a message with attachments, you may delete them from your
14450 Forwarded message by editing the Attchmnt header line.
14453 For help with message header editing
14454 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14456 <UL>   
14457 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14458 </UL><P>
14459 &lt;End of help on this topic&gt;
14460 </BODY>
14461 </HTML>
14462 ======= h_composer_ctrl_j ====
14463 <HTML>
14464 <HEAD>
14465 <TITLE>COMPOSER ATTACH</TITLE>
14466 </HEAD>
14467 <BODY>
14468 After the
14469 <!--chtml if pinemode="function_key"-->
14471 <!--chtml else-->
14472 Ctrl-J
14473 <!--chtml endif--> command:
14474 At the &quot;File to attach:&quot; prompt, enter the name of the 
14475 existing file to attach to your message.  
14476 When the feature
14477 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
14478 is set
14479 you need only enter the beginning of the filename (enough of it to uniquely 
14480 identify the file) and press TAB to complete it.
14482 Or, press ^T to use the BROWSER screen for 
14483 selecting the file.  <P>
14484 For more information on attaching files, see the help screen for the 
14485 composer's 
14486 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
14487 but can be revealed using the 
14488 <!--chtml if pinemode="function_key"-->
14490 <!--chtml else-->
14491 Ctrl-R
14492 <!--chtml endif--> 
14493 command with the cursor positioned above the
14494 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
14496 &lt;End of help on this topic&gt;
14497 </BODY>
14498 </HTML>
14499 ======= h_edit_nav_cmds =========
14500 <HTML>
14501 <HEAD>
14502 <TITLE>Composer Editing Commands Explained</TITLE>
14503 </HEAD>
14504 <BODY>
14505 <H1>EDITING and NAVIGATION COMMANDS</H1>
14506 <!--chtml if pinemode="function_key"-->
14507 <PRE>
14508 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14509 ^B (Left Arrow)    Back character       | ^D       Delete current character
14510 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14511 ^P (Up Arrow)      Previous line        |
14512 ^N (Down Arrow)    Next line            | F9       Cut marked text or
14513 ^A                 Beginning of line    |            delete current line
14514 ^E                 End of line          | F10      Undelete line(s)
14515 F7                 Previous page        |
14516 F8                 Next page            |-------------------------------------
14517 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14518 ----------------------------------------|
14519 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
14520 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
14521 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
14522 </PRE>
14523 <!--chtml else-->
14524 <PRE>
14525 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14526 ^B (Left Arrow)    Back character       | ^D       Delete current character
14527 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14528 ^P (Up Arrow)      Previous line        |
14529 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
14530 ^A                 Beginning of line    |            delete current line
14531 ^E                 End of line          | ^U       Undelete line(s)
14532 ^Y                 Previous page        |
14533 ^V                 Next page            |-------------------------------------
14534 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14535 ----------------------------------------|
14536 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
14537 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
14538 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
14539 </PRE>
14540 <!--chtml endif-->
14541 &lt;End of help on this topic&gt;
14542 </BODY>
14543 </HTML>
14544 ===== h_composer_sigedit =====
14545 <HTML>
14546 <HEAD>
14547 <TITLE>Signature Editor Commands Explained</TITLE>
14548 </HEAD>
14549 <BODY>
14550 <H1>SIGNATURE EDITOR COMMANDS</H1>
14551 <!--chtml if pinemode="function_key"-->
14552 <PRE>
14553 CURSOR MOTION KEYS                     |EDITING KEYS
14554   ^B (Left Arrow)   Back character     | ^D       Delete current character
14555   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14556   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14557   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14558   ^A                Beginning of line  |           delete current line
14559   ^E                End of line        | F10       Paste text, undelete lines
14560   F7                Previous page      |           cut with ^K, or unjustify
14561   F8                Next page          |-------------------------------------
14562   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14563 ---------------------------------------| F6       Whereis (search for string)
14564 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14565  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14566                  |  ^Z    Suspend      | ^L       Redraw Screen
14567  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14568 </PRE>
14569 <!--chtml else-->
14570 <PRE>
14571 CURSOR MOTION KEYS                     |EDITING KEYS
14572   ^B (Left Arrow)   Back character     | ^D       Delete current character
14573   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14574   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14575   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14576   ^A                Beginning of line  |           delete current line
14577   ^E                End of line        | ^U        Paste text, undelete lines
14578   ^Y                Previous page      |           cut with ^K, or unjustify
14579   ^V                Next page          |-------------------------------------
14580   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14581 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14582 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14583  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14584                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14585  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14586 </PRE>
14587 <!--chtml endif-->
14589 NOTE: The presence or absence of the following commands is determined
14590 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14591 some of these commands may be administratively disabled by your system
14592 manager; if they don't work, please check with your local help desk
14593 before reporting a bug.
14595 <UL>
14596  <LI>Suspend (suspends Alpine and gives a system prompt)
14597  <LI>Alternate editor (allows you to compose with your own editor)
14598 </UL>
14601 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14602 Ctrl-&#92;, ESC
14605 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14606 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14608 &lt;End of help on this topic&gt;
14609 </BODY>
14610 </HTML>
14611 ===== h_composer_commentedit =====
14612 <HTML>
14613 <HEAD>
14614 <TITLE>Comment Editor Commands Explained</TITLE>
14615 </HEAD>
14616 <BODY>
14617 <H1>COMMENT EDITOR COMMANDS</H1>
14618 <!--chtml if pinemode="function_key"-->
14619 <PRE>
14620 CURSOR MOTION KEYS                     |EDITING KEYS
14621   ^B (Left Arrow)   Back character     | ^D       Delete current character
14622   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14623   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14624   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14625   ^A                Beginning of line  |           delete current line
14626   ^E                End of line        | F10       Paste text, undelete lines
14627   F7                Previous page      |           cut with ^K, or unjustify
14628   F8                Next page          |-------------------------------------
14629   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14630 ---------------------------------------| F6       Whereis (search for string)
14631 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14632  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14633                  |  ^Z    Suspend      | ^L       Redraw Screen
14634  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14635 </PRE>
14636 <!--chtml else-->
14637 <PRE>
14638 CURSOR MOTION KEYS                     |EDITING KEYS
14639   ^B (Left Arrow)   Back character     | ^D       Delete current character
14640   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14641   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14642   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14643   ^A                Beginning of line  |           delete current line
14644   ^E                End of line        | ^U        Paste text, undelete lines
14645   ^Y                Previous page      |           cut with ^K, or unjustify
14646   ^V                Next page          |-------------------------------------
14647   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14648 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14649 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14650  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14651                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14652  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14653 </PRE>
14654 <!--chtml endif-->
14656 NOTE: The presence or absence of the following commands is determined
14657 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14658 some of these commands may be administratively disabled by your system
14659 manager; if they don't work, please check with your local help desk
14660 before reporting a bug.
14662 <UL>
14663  <LI>Suspend (suspends Alpine and gives a system prompt)
14664  <LI>Alternate editor (allows you to compose with your own editor)
14665 </UL>
14668 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14669 Ctrl-&#92;, ESC
14672 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14673 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14675 &lt;End of help on this topic&gt;
14676 </BODY>
14677 </HTML>
14678 ======= h_composer_abook_nick =======
14679 <HTML>
14680 <HEAD>
14681 <TITLE>Addressbook Nickname Explained</TITLE>
14682 </HEAD>
14683 <BODY>
14684 This is a short nickname for this address book entry.  If it is used in
14685 place of an address from the composer, the composer will fill in the
14686 address(es) for the entry that matches the nickname. 
14689 Look <A HREF="h_edit_nav_cmds">here</A>
14690 to see the available Editing and Navigation commands.
14692 &lt;End of help on this topic&gt;
14693 </BODY>
14694 </HTML>
14695 ======= h_composer_abook_full =======
14696 <HTML>
14697 <HEAD>
14698 <TITLE>Addressbook Fullname Explained</TITLE>
14699 </HEAD>
14700 <BODY>
14701 This is the full name field for this entry.  If this is going to be a
14702 distribution list (more than one address), it should be a descriptive
14703 phrase describing the list.  It will be included in the mail header if you
14704 put the list in the To: or CC: field, or in the To: line if you put the
14705 list in the Lcc: field.  It's OK to leave this field blank (and OK to
14706 leave any of the other fields blank, too). If this address book entry is
14707 going to be a simple entry with just one address, then this field is the
14708 person's name. When you send mail to this entry, this is the field to the
14709 left of the brackets. That is, it is the most readable part of the 
14710 address. For example, in the sample address:
14711 <PRE>
14712        John Doe &lt;jdoe@some.domain&gt;
14713 </PRE>
14714 "John Doe" is the full name field. If you are sorting your address book
14715 with one of the options that uses full names, then it might be useful to
14716 enter the full name as "Last, First", for example:
14717 <PRE>
14718        Doe, John
14719 </PRE>
14720 so that it will be sorted using Doe instead of John. This will be changed
14721 back into John Doe when you use it.
14723 Look <A HREF="h_edit_nav_cmds">here</A>
14724 to see the available Editing and Navigation commands.
14726 &lt;End of help on this topic&gt;
14727 </BODY>
14728 </HTML>
14729 ======= h_composer_abook_fcc =======
14730 <HTML>
14731 <HEAD>
14732 <TITLE>Addressbook Fcc Explained</TITLE>
14733 </HEAD>
14734 <BODY>
14735 If this entry is the first one in the To: line of an outgoing message,
14736 this field will be used for the Fcc (File Carbon Copy) instead of whatever
14737 you would normally get (which depends on which
14738 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
14739 you've chosen). 
14741 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
14742 that you don't want any Fcc associated with this entry.
14744 Look <A HREF="h_edit_nav_cmds">here</A>
14745 to see the available Editing and Navigation commands.
14747 &lt;End of help on this topic&gt;
14748 </BODY>
14749 </HTML>
14750 ====== h_config_combined_abook_display =====
14751 <HTML>
14752 <HEAD>
14753 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
14754 </HEAD>
14755 <BODY>
14756 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
14758 This feature affects the address book display screens.
14759 Normally, expanding an address book from the ADDRESS BOOK LIST screen
14760 will cause the remaining address books and directory servers to disappear
14761 from the screen, leaving only the entries of the expanded address book.
14762 If this feature is set, then the other address books will remain on the screen,
14763 so that all of the address books can be present at once.
14766 The way that commands work won't be changed.
14767 For example, the Select All command will select all of the entries in the
14768 current address book, not all of the entries in all of the address books.
14769 The WhereIs command will change a little.
14770 It will search through all of the text on the screen plus all of the entries
14771 from expanded address books.
14774 When this feature is set, the setting of the feature
14775 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
14776 has an effect.
14778 &lt;End of help on this topic&gt;
14779 </BODY>
14780 </HTML>
14781 ====== h_config_titlebar_color_style =====
14782 <HTML>
14783 <HEAD>
14784 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
14785 </HEAD>
14786 <BODY>
14787 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
14789 This option affects the colors used to display the titlebar (the top
14790 line on the screen) when viewing a message.
14793 The available options include:
14796 <DL>
14797 <DT>default</DT>
14798 <DD>The color of the titlebar will be the color you set for the
14799 <A HREF="h_config_title_color">Title Color</A>.
14800 The Title Color may be set by using the
14801 <A HREF="h_color_setup">Setup Kolor</A> screen.
14802 </DD>
14804 <DT>indexline</DT>
14805 <DD>The color of the titlebar will be the same as the color of the
14806 index line corresponding to the message being viewed.
14807 The rules that determine what color the index line will be may be set
14808 up by going to the Setup/Rules/Indexcolor screen.
14809 If the index line for a message is not colored explicitly by the
14810 Indexcolor rules, then the titlebar will be colored the same as for
14811 the &quot;default&quot; option above (which is not the same color that
14812 the index line itself will have).
14813 </DD>
14815 <DT>reverse-indexline</DT>
14816 <DD>This is similar to the &quot;indexline&quot; option except the
14817 foreground and background colors from the corresponding index line will
14818 be reversed.
14819 For example, if the index line color is red letters on a white background,
14820 then the titlebar will be white letters on a red background.
14821 If the index line for a message is not colored explicitly by the
14822 Indexcolor rules, then the titlebar will be colored the same as for
14823 the &quot;default&quot; option above (which is not the same color that
14824 the index line itself will have).
14825 </DD>
14826 </DL>
14830 <UL>   
14831 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14832 </UL><P>
14833 &lt;End of help on this topic&gt;
14834 </BODY>
14835 </HTML>
14836 ====== h_config_index_color_style =====
14837 <HTML>
14838 <HEAD>
14839 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
14840 </HEAD>
14841 <BODY>
14842 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
14844 This option affects the colors used to display the current line in the
14845 MESSAGE INDEX screen.
14846 If you do not have Index Color Rules defined, then this option will
14847 have no effect in the index.
14848 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
14850 If the option
14851 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
14852 is turned on and the
14853 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
14854 is set to something other than the default, then
14855 this option also affects the color used to display the current folder
14856 in the Incoming FOLDER LIST screen.
14859 The available options include:
14862 <DL>
14863 <DT>flip-colors</DT>
14864 <DD>This is the default.
14865 If an index line is colored because it matches one of your
14866 Index Color Rules, then its colors will be reversed when it is the currently
14867 highlighted line.
14868 For example, if the line is normally red text on a blue background, then
14869 when it is the current line it will be drawn as blue text on a red background.
14871 The rest of the option values all revert to this flip-colors behavior if
14872 there is no Reverse Color defined.
14873 </DD>
14875 <DT>reverse</DT>
14876 <DD>With this option the Reverse color is always used to highlight the
14877 current line.
14878 </DD>
14880 <DT>reverse-fg</DT>
14881 <DD>The foreground part of the Reverse Color is used to highlight
14882 the current line.
14883 If this would cause the text to be unreadable (because the foreground and
14884 background colors are the same) or if it would cause no change in the
14885 color of the index line, then the colors are flipped instead.
14887 Some people think this works particularly well if you use different
14888 background colors to emphasize &quot;interesting&quot; lines,
14889 but always with the same Normal foreground color,
14890 and you use a different foreground color for the Reverse Color.
14891 </DD>
14893 <DT>reverse-fg-no-ambiguity</DT>
14894 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
14895 the resulting color will be exactly the same as the regular Reverse
14896 Color.
14897 That can lead to some possible confusion because an
14898 &quot;interesting&quot;
14899 line that is the current line will be displayed exactly the same as a
14900 non-interesting line that is current.
14901 You can't tell whether the line is just a regular current line or if it is
14902 an &quot;interesting&quot; current line by looking at the color.
14903 Setting the option to this value removes that ambiguity.
14904 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
14905 interesting current line would look just like a non-interesting current line.
14906 In that case, the interesting line's colors are simply flipped (like in the
14907 default behavior).
14909 As an alternative way to preserve the line's interestingness in this case,
14910 you may find that using both a different foreground and a different
14911 background color for the interesting line will help.
14912 </DD>
14914 <DT>reverse-bg</DT>
14915 <DD>The background part of the Reverse Color is used to highlight
14916 the current line.
14917 If this would cause the text to be unreadable (because the foreground and
14918 background colors are the same) or if it would cause no change in the
14919 color of the index line, then the colors are flipped instead.
14921 Some people think this works particularly well if you use different
14922 foreground colors to emphasize &quot;interesting&quot; lines,
14923 but always with the same Normal background color,
14924 and you use a different background color for the Reverse Color.
14925 </DD>
14927 <DT>reverse-bg-no-ambiguity</DT>
14928 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
14929 rule may also result in a color that is exactly the same as the regular
14930 Reverse Color.
14931 Setting the option to this value removes that ambiguity.
14932 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
14933 current line has the same color as the Reverse Color.
14934 In that case, the interesting line's colors are simply flipped (like in the
14935 default behavior).
14936 </DD>
14937 </DL>
14941 <UL>   
14942 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14943 </UL><P>
14944 &lt;End of help on this topic&gt;
14945 </BODY>
14946 </HTML>
14947 ====== h_config_expanded_addrbooks =====
14948 <HTML>
14949 <HEAD>
14950 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
14951 </HEAD>
14952 <BODY>
14953 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
14955 If multiple address books (either personal or global) are defined, and you
14956 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
14957 screen, then set this feature. This feature will have no effect unless the
14958 feature
14959 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
14960 is also set.
14962 &lt;End of help on this topic&gt;
14963 </BODY>
14964 </HTML>
14965 ====== h_config_combined_folder_display =====
14966 <HTML>
14967 <HEAD>
14968 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
14969 </HEAD>
14970 <BODY>
14971 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
14973 This feature affects the folder list display screens.
14974 Normally, each folder list is viewed within its collection only.  This
14975 command allows folder lists to be viewed within a single screen that
14976 combines the contents of all collections.
14979 The way that commands work won't be changed.
14980 For example, the Select All command will select all of the folders in the
14981 current collection, not all of the entries in all of the collections.
14982 The WhereIs command will change a little.
14983 It will search through all of the folders in the current collection as well
14984 as all the folder in any other expanded collection.
14987 When this feature is set, the setting of the feature
14988 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
14989 has an effect.
14991 &lt;End of help on this topic&gt;
14992 </BODY>
14993 </HTML>
14994 ====== h_config_combined_subdir_display =====
14995 <HTML>
14996 <HEAD>
14997 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
14998 </HEAD>
14999 <BODY>
15000 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
15002 This feature affects the Folder List screen when
15004 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
15005 feature is enabled.  Normally, selecting a directory from the Folder
15006 List takes you into a new screen displaying only the contents of
15007 that directory.
15010 Enabling this feature will cause the contents of the selected
15011 directory to be
15012 displayed within the boundaries of the &quot;Collection&quot; it
15013 is a part of.  All previously displayed collections will remain
15014 in the screen.
15017 The way that commands work won't be changed.
15018 For example, the Select All command will select all of the folders in the
15019 directory, as opposed to all of the entries in all of the collections.
15020 The WhereIs command will change a little.
15021 It will search through all of the folders in the current collection as well
15022 as all the folder in any other expanded collection.
15025 &lt;End of help on this topic&gt;
15026 </BODY>
15027 </HTML>
15028 ====== h_config_separate_fold_dir_view =====
15029 <HTML>
15030 <HEAD>
15031 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
15032 </HEAD>
15033 <BODY>
15034 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
15036 This feature affects folder collections wherein a folder
15037 and directory can have the same name.  By default, Alpine displays them
15038 only once, denoting that it is both a folder and directory by appending
15039 the folder name with the hierarchy character enclosed
15040 in square brackets.
15044 Enabling this feature will cause Alpine to display such names
15045 separately marking the name representing a directory with a trailing
15046 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
15049 The feature also alters the command set slightly.  By default, the
15050 right-arrow descends into the directory, while hitting the Return key will
15051 cause the folder by that name to be opened.
15054 With this feature set, the Return key will open the highlighted folder, or
15055 enter the highlighted directory.
15058 &lt;End of help on this topic&gt;
15059 </BODY>
15060 </HTML>
15061 ====== h_config_expanded_folders =====
15062 <HTML>
15063 <HEAD>
15064 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
15065 </HEAD>
15066 <BODY>
15067 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
15069 If multiple folder collections are defined, and you
15070 wish to have them all expanded implicitly upon entering the FOLDER LIST
15071 screen, then set this feature. This feature will have no effect unless the
15072 feature
15073 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
15074 is also set.
15076 &lt;End of help on this topic&gt;
15077 </BODY>
15078 </HTML>
15079 ======= h_config_ldap_server =======
15080 <HTML>
15081 <HEAD>
15082 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
15083 </HEAD>
15084 <BODY>
15085 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
15086 This is the name of the host where an LDAP server is running.
15087 For redundancy, this may be a space-delimited set of server names, in which
15088 case the first server that answers is used.
15089 Each of the server names may be optionally followed by
15090 a colon and a port number.
15091 If this form is used then the port number configured below in the
15092 <EM>port</EM> field is not used.
15094 To find out whether your organization has its own LDAP server, 
15095 contact its computing support staff.
15096 <P><UL>
15097 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15098 </UL>
15100 &lt;End of help on this topic&gt;
15101 </BODY>
15102 </HTML>
15103 ======= h_config_ldap_base =======
15104 <HTML>
15105 <HEAD>
15106 <TITLE>LDAP OPTION: Search-Base</TITLE>
15107 </HEAD>
15108 <BODY>
15109 <H1>LDAP OPTION: Search-Base</H1>
15111 This is the search base to be used on this server.  It functions as a filter 
15112 by restricting your searches in the LDAP server database
15113 to the specified contents of the specified fields.  Without it, searches 
15114 submitted to this directory server may fail.  It might be something
15115 like:
15117 <PRE>
15118       O = &lt;Your Organization Name&gt;, C = US
15119 </PRE>
15120 or it might be blank.  
15121 (Some LDAP servers actually ignore anything specified here.)
15123 If in doubt what parameters you should specify here, 
15124 contact the maintainers of the LDAP server.
15125 <P><UL>
15126 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15127 </UL>
15129 &lt;End of help on this topic&gt;
15130 </BODY>
15131 </HTML>
15132 ======= h_config_ldap_port =======
15133 <HTML>
15134 <HEAD>
15135 <TITLE>LDAP OPTION: Port</TITLE>
15136 </HEAD>
15137 <BODY>
15138 <H1>LDAP OPTION: Port</H1>
15140 This is the TCP port number to be used with this LDAP server. If you leave
15141 this blank port 389 will be used.
15143 &lt;End of help on this topic&gt;
15144 </BODY>
15145 </HTML>
15146 ======= h_config_ldap_nick =======
15147 <HTML>
15148 <HEAD>
15149 <TITLE>LDAP OPTION: Nickname</TITLE>
15150 </HEAD>
15151 <BODY>
15152 <H1>LDAP OPTION: Nickname</H1>
15154 This is a nickname to be used in displays. If you don't supply a
15155 nickname the server name
15156 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
15157 will be used instead.  This option is strictly for your convenience.
15159 &lt;End of help on this topic&gt;
15160 </BODY>
15161 </HTML>
15162 ======= h_config_ldap_binddn =======
15163 <HTML>
15164 <HEAD>
15165 <TITLE>LDAP OPTION: Bind-DN</TITLE>
15166 </HEAD>
15167 <BODY>
15168 <H1>LDAP OPTION: Bind-DN</H1>
15170 You may need to authenticate to the LDAP server before you are able to use it.
15171 This is the Distinguished Name to bind to when authenticating to this server.
15172 Try leaving this blank until you know you need it.
15174 Alpine only knows about LDAP Simple authentication.
15175 It does not attempt LDAP SASL authentication.
15176 The DN and password will be sent in the clear unless TLS encryption is
15177 being used on this connection.
15178 Because of this, you may want to set the LDAP feature
15179 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
15180 or the feature
15181 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15182 if you are going to be providing a password.
15183 <P><UL>
15184 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15185 </UL>
15187 &lt;End of help on this topic&gt;
15188 </BODY>
15189 </HTML>
15190 ======= h_config_ldap_opts_impl =======
15191 <HTML>
15192 <HEAD>
15193 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
15194 </HEAD>
15195 <BODY>
15196 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
15198 Set this to have lookups done to this server implicitly from the composer.
15199 If an address doesn't look like a fully-qualified address, it will be looked
15200 up in your address books, and if it doesn't match a nickname there, then it
15201 will be looked up on the LDAP servers that have this feature set.
15202 The lookups will also be done when using the address completion feature
15203 (TAB command) in the composer if any of the serves have this feature set.
15204 Also see the LDAP feature
15205 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
15206 and the Setup/Config feature
15207 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15209 &lt;End of help on this topic&gt;
15210 </BODY>
15211 </HTML>
15212 ======= h_config_ldap_opts_tls =======
15213 <HTML>
15214 <HEAD>
15215 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
15216 </HEAD>
15217 <BODY>
15218 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
15220 When connecting to this server Alpine will attempt to use TLS encryption
15221 on the connection.
15222 Also see the closely related feature
15223 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15225 Note that if this option is set, then 
15226 <A HREF="h_config_ldap_opts_ldaps">
15227 &quot;Require-LDAPS-On-Connection&quot;</A>
15228 can not be enabled for this server. You must disable this feature in
15229 order to use 
15230 <A HREF="h_config_ldap_opts_ldaps">
15231 &quot;Require-LDAPS-On-Connection&quot;</A>
15233 &lt;End of help on this topic&gt;
15234 </BODY>
15235 </HTML>
15236 ======= h_config_ldap_opts_tlsmust =======
15237 <HTML>
15238 <HEAD>
15239 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
15240 </HEAD>
15241 <BODY>
15242 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
15244 When connecting to this server Alpine will attempt to use TLS encryption
15245 on the connection.
15246 If the StartTLS operation fails then the connection will not be used.
15248 Note that if this option is set, then 
15249 <A HREF="h_config_ldap_opts_ldaps">
15250 &quot;Require-LDAPS-On-Connection&quot;</A>
15251 can not be enabled for this server. You must disable this feature in
15252 order to use 
15253 <A HREF="h_config_ldap_opts_ldaps">
15254 &quot;Require-LDAPS-On-Connection&quot;</A>
15256 &lt;End of help on this topic&gt;
15257 </BODY>
15258 </HTML>
15259 ======= h_config_ldap_opts_ldaps =======
15260 <HTML>
15261 <HEAD>
15262 <TITLE>LDAP FEATURE: Require-LDAPS-On-Connection</TITLE>
15263 </HEAD>
15264 <BODY>
15265 <H1>LDAP FEATURE: Require-LDAPS-On-Connection</H1>
15267 When connecting to this server Alpine will use LDAPS (LDAP over SSL/TLS) 
15268 on the connection.
15270 This feature can not be used along with 
15271 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15272  or
15273 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>.
15274 If you want to connect using StartTLS to this server, you must disable
15275 this feature first.
15277 &lt;End of help on this topic&gt;
15278 </BODY>
15279 </HTML>
15280 ====== h_config_ldap_opts_rhs =====
15281 <HTML>
15282 <HEAD>
15283 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
15284 </HEAD>
15285 <BODY>
15286 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
15288 Normally implicit LDAP lookups from the composer are done only for the
15289 strings you type in from the composer screen. In other words, you type in
15290 something in the To or CC field and press return, then the string is looked up.
15291 First that string is looked up in your address books. If a match is found
15292 there, then the results of that match are looked up again. If you place
15293 a string in your address book that you want to have looked up on the LDAP
15294 directory server, you need to turn on this feature. If you set this feature
15295 for a server, you almost always will also want to set the
15296 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
15297 feature. An example might serve to best illustrate this feature.
15299 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
15300 entry with an
15301 address of pres@whitehouse.gov, then you might put an entry in your address
15302 book that looks like:
15304 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
15305 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
15307 Now, when you type &quot;bill&quot; into an
15308 address field in the composer Alpine will
15309 find the &quot;bill&quot; entry in your address book.
15310 It will replace &quot;bill&quot; with
15311 &quot;William Clinton&quot;.
15312 It will then search for an entry with that nickname
15313 in your address book and not find one. If this feature
15314 is set, Alpine will then attempt to lookup
15315 &quot;William Clinton&quot; on the LDAP server and find the entry with address
15316 pres@whitehouse.gov.
15318 A better way to accomplish the same thing is probably to use the feature
15319 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
15321 &lt;End of help on this topic&gt;
15322 </BODY>
15323 </HTML>
15324 ====== h_config_ldap_opts_ref =====
15325 <HTML>
15326 <HEAD>
15327 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
15328 </HEAD>
15329 <BODY>
15330 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
15332 Normally when you save the results of an LDAP directory lookup to your
15333 address book the results of the lookup are saved. If this feature is set
15334 and the entry being saved was found on this directory server, then the
15335 search criteria is saved instead of the results of the search. When this
15336 address book entry is used in the future, instead of copying the results
15337 from the address book the directory lookup will be done again. This could
15338 be useful if the copied result might become stale because the data on
15339 the directory server changes (for example, the entry's email address changes).
15340 You probably don't want to set this feature if the server is at all slow or
15341 unreliable.
15343 The way this actually works is that instead of saving the email address
15344 in your address book, Alpine saves enough information to look up the same
15345 directory entry again. In particular, it saves the server name and the
15346 distinguished name of the entry. It's possible that the server administrators
15347 might change the format of distinguished names on the server, or that the
15348 entry might be removed from the server. If Alpine notices this, you will be warned
15349 and a backup copy of the email address will be used. You may want to create
15350 a new entry in this case, since you will get the annoying warning every
15351 time you use the old entry. You may do that by Saving the entry to a new
15352 nickname in the same address book. You will be asked whether or not you
15353 want to use the backup email address.
15355 A related feature in the Setup/Config screen is
15356 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15358 &lt;End of help on this topic&gt;
15359 </BODY>
15360 </HTML>
15361 ======= h_config_ldap_opts_nosub =======
15362 <HTML>
15363 <HEAD>
15364 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
15365 </HEAD>
15366 <BODY>
15367 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
15369 Spaces in your input are normally handled specially.
15370 Each space character is replaced
15373 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
15375 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
15376 The reason this is done is so the input string
15378 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
15380 (which is converted to &quot;Greg* Donald&quot;) will match
15381 the names &quot;Greg Donald&quot;,
15382 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
15383 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
15384 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
15385 then it would also match the name &quot;Greg Donaldson&quot;.
15387 Turning on this feature will disable this substitution.
15389 &lt;End of help on this topic&gt;
15390 </BODY>
15391 </HTML>
15392 ====== h_config_ldap_searchtypes =======
15393 <HTML>
15394 <HEAD>
15395 <TITLE>LDAP OPTION: Search-Type</TITLE>
15396 </HEAD>
15397 <BODY>
15398 <H1>LDAP OPTION: Search-Type</H1>
15400 This affects the way that LDAP searches are done.
15401 In particular, this tells the server where to look for the string to be matched.
15402 If set to &quot;name&quot; then the string that is being searched for will
15403 be compared with the string in the
15404 &quot;Name&quot; field on the server
15405 (technically, it is the &quot;commonname&quot; field on the server).
15406 &quot;Surname&quot; means we're looking for a
15407 match in the &quot;Surname&quot; field on the
15408 server (actually the &quot;sn&quot; field).
15409 &quot;Givenname&quot; really is &quot;givenname&quot;
15410 and &quot;email&quot; is the electronic mail address (this is actually the field
15411 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
15412 The other three types are combinations of
15413 the types listed so far. &quot;Name-or-email&quot;
15414 means the string should appear
15415 in either the &quot;name&quot; field OR the &quot;email&quot; field.
15416 Likewise, &quot;surname-or-givenname&quot;
15417 means &quot;surname&quot; OR &quot;givenname&quot;
15418 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
15420 This search TYPE is combined with the
15421 search <A HREF="h_config_ldap_searchrules">RULE</A>
15422 to form the actual search query.
15424 The usual default value for this
15425 option is &quot;sur-or-given-or-name-or-email&quot;.
15426 This type of search may be slow on some servers.
15427 Try &quot;name-or-email&quot;, which is often
15428 faster, or just &quot;name&quot; if the performance seems to be a problem.
15430 Some servers have been configured with different attribute names for
15431 these four fields.
15432 In other words, instead of using the attribute name &quot;mail&quot;
15433 for the email address field, the server might be configured to use something
15434 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
15435 Alpine can be configured to use these different attribute names by using
15436 the four configuration options:
15437 <P><UL>
15438 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15439 </UL>
15440 <P><UL>
15441 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15442 </UL>
15443 <P><UL>
15444 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15445 </UL>
15446 <P><UL>
15447 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15448 </UL>
15450 &lt;End of help on this topic&gt;
15451 </BODY>
15452 </HTML>
15453 ====== h_config_ldap_searchrules =======
15454 <HTML>
15455 <HEAD>
15456 <TITLE>LDAP OPTION: Search-Rule</TITLE>
15457 </HEAD>
15458 <BODY>
15459 <H1>LDAP OPTION: Search-Rule</H1>
15461 This affects the way that LDAP searches are done.
15462 If set to &quot;equals&quot; then
15463 only exact matches count.
15464 &quot;Contains&quot; means that the string you type in
15465 is a substring of what you are matching against.
15466 &quot;Begins-with&quot; and &quot;ends-with&quot;
15467 mean that the string starts or ends with the string you type in.
15469 Spaces in your input are normally handled specially, but you can turn that
15470 special handling off with the
15471 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15472 feature.
15474 The usual default value for this option is &quot;begins-with&quot;.
15476 &lt;End of help on this topic&gt;
15477 </BODY>
15478 </HTML>
15479 ======= h_config_ldap_email_attr =======
15480 <HTML>
15481 <HEAD>
15482 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
15483 </HEAD>
15484 <BODY>
15485 <H1>LDAP OPTION: EmailAttribute</H1>
15487 This is the name of the attribute that is searched for when looking for
15488 an email address. The default value for this option is &quot;mail&quot; or
15489 &quot;electronicmail&quot;.
15490 If the server you are using uses a different attribute name for the email
15491 address, put that attribute name here.
15493 This will affect the search filter used if your Search-Type is one that
15494 contains a search for &quot;email&quot;.
15495 It will also cause the attribute value matching this attribute name to be used
15496 as the email address when you look up an entry from the composer.
15498 &lt;End of help on this topic&gt;
15499 </BODY>
15500 </HTML>
15501 ======= h_config_ldap_sn_attr =======
15502 <HTML>
15503 <HEAD>
15504 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
15505 </HEAD>
15506 <BODY>
15507 <H1>LDAP OPTION: SurnameAttribute</H1>
15509 This is the name of the attribute that is searched for when looking for
15510 the surname of the entry. The default value for this option is &quot;sn&quot;.
15511 If the server you are using uses a different attribute name for the surname,
15512 put that attribute name here.
15513 This will affect the search filter used if your Search-Type is one that
15514 contains a search for &quot;surname&quot;.
15516 &lt;End of help on this topic&gt;
15517 </BODY>
15518 </HTML>
15519 ======= h_config_ldap_gn_attr =======
15520 <HTML>
15521 <HEAD>
15522 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
15523 </HEAD>
15524 <BODY>
15525 <H1>LDAP OPTION: GivennameAttribute</H1>
15527 This is the name of the attribute that is searched for when looking for
15528 the given name of the entry. The default value for this option is &quot;givenname&quot;.
15529 If the server you are using uses a different attribute name for the given name,
15530 put that attribute name here.
15531 This will affect the search filter used if your Search-Type is one that
15532 contains a search for &quot;givenname&quot;.
15534 &lt;End of help on this topic&gt;
15535 </BODY>
15536 </HTML>
15537 ======= h_config_ldap_cn_attr =======
15538 <HTML>
15539 <HEAD>
15540 <TITLE>LDAP OPTION: NameAttribute</TITLE>
15541 </HEAD>
15542 <BODY>
15543 <H1>LDAP OPTION: NameAttribute</H1>
15545 This is the name of the attribute that is searched for when looking for
15546 the name of the entry. The default value for this option is &quot;cn&quot;, which
15547 stands for common name.
15548 If the server you are using uses a different attribute name for the name,
15549 put that attribute name here.
15550 This will affect the search filter used if your Search-Type is one that
15551 contains a search for &quot;name&quot;.
15553 &lt;End of help on this topic&gt;
15554 </BODY>
15555 </HTML>
15556 ======= h_config_ldap_time =======
15557 <HTML>
15558 <HEAD>
15559 <TITLE>LDAP OPTION: Timelimit</TITLE>
15560 </HEAD>
15561 <BODY>
15562 <H1>LDAP OPTION: Timelimit</H1>
15564 This places a limit on the number of seconds the LDAP search will continue.
15565 The default is 30 seconds. A value of 0 means no limit. Note that some servers
15566 may place limits of their own on searches.
15568 &lt;End of help on this topic&gt;
15569 </BODY>
15570 </HTML>
15571 ======= h_config_ldap_size =======
15572 <HTML>
15573 <HEAD>
15574 <TITLE>LDAP OPTION: Sizelimit</TITLE>
15575 </HEAD>
15576 <BODY>
15577 <H1>LDAP OPTION: Sizelimit</H1>
15579 This places a limit on the number of entries returned by the LDAP server.
15580 A value of 0 means no limit. The default is 0. Note that some servers
15581 may place limits of their own on searches.
15583 &lt;End of help on this topic&gt;
15584 </BODY>
15585 </HTML>
15586 ======= h_config_ldap_cust =======
15587 <HTML>
15588 <HEAD>
15589 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
15590 </HEAD>
15591 <BODY>
15592 <H1>LDAP OPTION: Custom-Search-Filter</H1>
15594 This one is for advanced users only! If you define this, then the
15595 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
15596 However, the feature
15597 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15598 is still in effect.
15599 That is, the space substitution will take place even in a custom filter unless
15600 you disable it.
15602 If your LDAP service stops working and you suspect it might be because
15603 of your custom filter, just delete this filter and try using the
15604 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
15605 Another option that sometimes causes trouble is the
15606 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
15608 This variable may be set to the string representation of an LDAP search
15609 filter (see RFC1960). In the places where you want the address string to be
15610 substituted in, put a '%s' in this filter string. Here are some examples:
15612 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
15613 is equivalent to the &quot;Custom-Search-Filter&quot;
15614 <PRE>
15615      (cn=%s*)
15616 </PRE>
15617 When you try to match against the string &quot;string&quot; the program replaces
15618 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
15619 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
15621 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
15622 of &quot;contains&quot; is equivalent to
15623 <PRE>
15624      (|(cn=*%s*)(mail=*%s*))
15625 </PRE>
15627 If your server uses a different attribute <EM>name</EM> than
15628 Alpine uses by default,
15629 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
15630 then you may be able to use one or more of the four attribute configuration
15631 options instead of defining a custom filter:
15632 <P><UL>
15633 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15634 </UL>
15635 <P><UL>
15636 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15637 </UL>
15638 <P><UL>
15639 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15640 </UL>
15641 <P><UL>
15642 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15643 </UL>
15645 &lt;End of help on this topic&gt;
15646 </BODY>
15647 </HTML>
15648 ======= h_composer_abook_comment =======
15649 <HTML>
15650 <HEAD>
15651 <TITLE>Addressbook Comment Explained</TITLE>
15652 </HEAD>
15653 <BODY>
15654 This is a comment to help you remember what this entry is. The WhereIs
15655 command searches comments so that it is easier to find an entry with a comment
15656 you know about attached to it. This field is not used in the outgoing message.
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_composer_abook_addrs =======
15665 <HTML>
15666 <HEAD>
15667 <TITLE>Addressbook Lists</TITLE>
15668 </HEAD>
15669 <BODY>
15670 <H1>Addressbook Lists</H1>
15672 This is a list of addresses to send to when sending to this address book
15673 entry.  Each member of the list may be an address or another nickname from
15674 any of your address books.  If it is an address, it is OK to include the
15675 full name field as well as the electronic address portion of that address.
15676 For example, the following are all legitimate entries in this field:
15678 <DL><DT>&nbsp;</DT>
15679 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
15680 <DD>jdoe@some.domain
15681 <DD>John Doe &lt;jdoe@some.domain&gt;
15682 </DL>
15684 The addresses should be listed separated by commas, just like you would
15685 enter them from the composer.
15689 The only difference between a distribution list and a simple entry with a
15690 single address, is that a distribution list has more than one address   
15691 listed in the Addresses: field, whereas a simple personal entry has just  
15692 one address.
15696 For individual address book entries, if there is a full name in the
15697 Fullname: field (filling in the Fullname: field is not required), it is
15698 used.  If the full name is specified in the Address: field and not in the
15699 Fullname: field, then the full name from the Address: field is used.
15703 If you type the nickname of a distribution list from one of your address 
15704 books in the Lcc: field, then the full name of that list is used in the  
15705 To: field.  If you put a list in the To: or Cc: fields, that list will be
15706 expanded into all of its addresses.  If the list has a full name, then
15707 that will appear at the beginning of the addresses.
15709 <DL><DT>&nbsp;</DT>
15710 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
15711 &lt;sal@here.there&gt;
15712 </DL>
15714 If the first address in the distribution list also has a full name, then
15715 the list full name and that full name are combined into something like the
15716 following:
15718 <DL><DT>&nbsp;</DT>
15719 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
15720 </DL>
15723 If you specify a list via Lcc, the full name is used in the To: line.  If
15724 you specify a list in the To: or Cc: fields, then it uses the same method
15725 as for individual entries for filling in the full name.
15729 For help with editing and navigation commands, check the Help for the
15730 Nickname: field.
15733 &lt;End of help on this topic&gt;
15734 </BODY>
15735 </HTML>
15736 ======= h_config_role_nick =======
15737 <HTML>
15738 <HEAD>
15739 <TITLE>Nickname Explained</TITLE>
15740 </HEAD>
15741 <BODY>
15742 <H1>Nickname Explained</H1>
15744 This is a nickname to help you.
15745 You should have a different nickname for each role you define.
15746 The nickname will be used in the SETUP ROLE RULES screen to allow you to
15747 pick a role to edit.
15748 It will also be used when you send a message to let you know you are
15749 sending with a different role than you use by default, and
15750 it will be useful for choosing a role when composing with the Role command
15751 or when composing with one of the Role Uses set to With Confirmation.
15752 This field is not used in the outgoing message.
15754 Look <A HREF="h_edit_nav_cmds">here</A>
15755 to see the available Editing and Navigation commands.
15757 &lt;End of help on this topic&gt;
15758 </BODY>
15759 </HTML>
15760 ======= h_config_role_comment =======
15761 <HTML>
15762 <HEAD>
15763 <TITLE>Comment Explained</TITLE>
15764 </HEAD>
15765 <BODY>
15766 <H1>Comment Explained</H1>
15768 This is a comment to help you.
15769 This comment does not play any functional role, it is simply an optional
15770 comment to help you remember what the rule is for.
15772 Look <A HREF="h_edit_nav_cmds">here</A>
15773 to see the available Editing and Navigation commands.
15775 &lt;End of help on this topic&gt;
15776 </BODY>
15777 </HTML>
15778 ======= h_config_other_nick =======
15779 <HTML>
15780 <HEAD>
15781 <TITLE>Nickname Explained</TITLE>
15782 </HEAD>
15783 <BODY>
15784 <H1>Nickname Explained</H1>
15786 This is a nickname to help you.
15787 You should have a different nickname for each rule you define.
15788 The nickname will be used in the SETUP OTHER RULES screen to allow you to
15789 pick a rule to edit.
15791 Look <A HREF="h_edit_nav_cmds">here</A>
15792 to see the available Editing and Navigation commands.
15794 &lt;End of help on this topic&gt;
15795 </BODY>
15796 </HTML>
15797 ======= h_config_score_nick =======
15798 <HTML>
15799 <HEAD>
15800 <TITLE>Nickname Explained</TITLE>
15801 </HEAD>
15802 <BODY>
15803 <H1>Nickname Explained</H1>
15805 This is a nickname to help you.
15806 You should have a different nickname for each scoring rule you define.
15807 The nickname will be used in the SETUP SCORING RULES screen to allow you to
15808 pick a rule to edit.
15810 Look <A HREF="h_edit_nav_cmds">here</A>
15811 to see the available Editing and Navigation commands.
15813 &lt;End of help on this topic&gt;
15814 </BODY>
15815 </HTML>
15816 ======= h_config_incol_nick =======
15817 <HTML>
15818 <HEAD>
15819 <TITLE>Nickname Explained</TITLE>
15820 </HEAD>
15821 <BODY>
15822 <H1>Nickname Explained</H1>
15824 This is a nickname to help you.
15825 You should have a different nickname for each color rule you define.
15826 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
15827 pick a rule to edit.
15829 Look <A HREF="h_edit_nav_cmds">here</A>
15830 to see the available Editing and Navigation commands.
15832 &lt;End of help on this topic&gt;
15833 </BODY>
15834 </HTML>
15835 ======= h_config_filt_nick =======
15836 <HTML>
15837 <HEAD>
15838 <TITLE>Nickname Explained</TITLE>
15839 </HEAD>
15840 <BODY>
15841 <H1>Nickname Explained</H1>
15843 This is a nickname to help you.
15844 You should have a different nickname for each filtering rule you define.
15845 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
15846 pick a rule to edit.
15848 Look <A HREF="h_edit_nav_cmds">here</A>
15849 to see the available Editing and Navigation commands.
15851 &lt;End of help on this topic&gt;
15852 </BODY>
15853 </HTML>
15854 ======= h_config_score_topat =======
15855 <HTML>
15856 <HEAD>
15857 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15858 </HEAD>
15859 <BODY>
15860 <H1>&quot;To:&quot; Pattern Explained</H1>
15862 Any text you enter as the &quot;To pattern&quot;
15863 will be compared to the recipients from the To: line of
15864 the message being scored.
15865 When the text you entered matches
15866 all or part of the To: line of a message, then the Score Value
15867 you have specified will be added to the score for the message.
15868 (Any other non-blank parts of the Pattern must match, too.)
15871 You may enter a complete email address, part of an address, or a
15872 list of addresses or partial addresses.
15873 For example:
15876 <PRE>
15877  To pattern = friend@public.com
15879  To pattern = rated.net
15881  To pattern = xxx@adults.com
15882               admin@msn.com
15883               fool@motleyfool.com
15884 </PRE>
15887 Each of those are valid To patterns.
15890 Messages match those patterns if any of the
15891 addresses in the To: line of the message contains the pattern.
15892 If the pattern is a list of patterns
15893 (like the last example above) then it is a match if any of the patterns in
15894 the list match any of the addresses in the To: line.
15895 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
15896 present for a match.
15897 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
15898 address2 must be present.
15899 That is exactly what using a list does.)
15902 Some messages may be &quot;bounced&quot; to you, and will
15903 have a &quot;Resent-To:&quot; header line.
15904 If the message contains a Resent-To: line
15905 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
15906 Alpine will look for
15907 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
15908 the original To: line.
15911 When entering a pattern, you may choose an address from your address book
15912 with the &quot;T&quot; command.
15915 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
15916 &quot;!&quot; &quot;toggle NOT&quot; command.
15917 This changes the meaning of the To pattern so that it has the opposite meaning.
15918 It will be considered a match if there are no matches between the
15919 addresses in the To: line and the list of To patterns.
15921 Don't make the mistake of putting the &quot;!&quot; in the data field for
15922 the pattern.
15923 For example, if you type the characters &quot;!frizzle&quot; into the To
15924 pattern, the pattern will look like:
15926 <PRE>
15927  To pattern = !frizzle
15928 </PRE>
15930 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
15931 In order to match messages that do not have &quot;frizzle&quot; in
15932 their To field, first type the characters &quot;frizzle&quot; followed
15933 by carriage return for the value of the To pattern, then negate it
15934 by typing the &quot;!&quot; command.
15935 It should end up looking like
15937 <PRE>
15938  ! To pattern = frizzle
15939 </PRE>
15941 You are not limited to using the six standard header patterns that are
15942 normally shown (To, From, Sender, Cc, News, and Subject).
15943 You may add any other header to a Pattern by
15944 using the &quot;eXtraHdr&quot; command to specify a different
15945 message header line; and then the Add or Change command to fill in
15946 a pattern for the new header line, just like you would for a standard header.
15948 A technicality: Since comma is the character used to separate multiple
15949 values in a pattern field, you have to escape comma with a backslash (&#92;) if
15950 you want to include a literal comma in the field.
15951 In other words, if you type a backslash followed by a comma it will
15952 be interpreted as a comma by Alpine, instead of as a separator between
15953 pattern values.
15954 All other backslashes are literal backslashes and should not be escaped.
15956 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
15957 for more information on Patterns.
15959 Look <A HREF="h_edit_nav_cmds">here</A>
15960 to see the available Editing and Navigation commands.
15962 &lt;End of help on this topic&gt;
15963 </BODY>
15964 </HTML>
15965 ======= h_config_incol_topat =======
15966 <HTML>
15967 <HEAD>
15968 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
15969 </HEAD>
15970 <BODY>
15971 <H1>&quot;To:&quot; Pattern Explained</H1>
15973 Any text you enter as the &quot;To pattern&quot;
15974 will be compared to the recipients from the To: lines of
15975 the messages in the index.
15976 When the text you entered matches
15977 all or part of the To: line of a message, then the Index Line Color you have
15978 specified will be used for that line in the index.
15979 (Any other non-blank parts of the Pattern must match, too.)
15982 You may enter a complete email address, part of an address, or a
15983 list of addresses or partial addresses.
15984 For example:
15987 <PRE>
15988  To pattern = friend@public.com
15989  To pattern = rated.net
15990  To pattern = xxx@adults.com
15991               admin@msn.com
15992               fool@motleyfool.com
15993 </PRE>
15996 Each of those are valid To patterns.
15999 Messages match those patterns if any of the
16000 addresses in the To: line of the message contains the pattern.
16001 If the pattern is a list of patterns
16002 (like the last example above) then it is a match if any of the patterns in
16003 the list match any of the addresses in the To: line.
16004 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16005 present for a match.
16006 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16007 address2 must be present.
16008 That is exactly what using a list does.)
16011 Some messages may be &quot;bounced&quot; to you, and will
16012 have a &quot;Resent-To:&quot; header line.
16013 If the message contains a Resent-To: line
16014 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16015 Alpine will look for
16016 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16017 the original To: line.
16020 When entering a pattern, you may choose an address from your address book
16021 with the &quot;T&quot; command.
16024 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16025 &quot;!&quot; &quot;toggle NOT&quot; command.
16026 This changes the meaning of the To pattern so that it has the opposite meaning.
16027 It will be considered a match if there are no matches between the
16028 addresses in the To: line and the list of To patterns.
16030 Don't make the mistake of putting the &quot;!&quot; in the data field for
16031 the pattern.
16032 For example, if you type the characters &quot;!frizzle&quot; into the To
16033 pattern, the pattern will look like:
16035 <PRE>
16036  To pattern = !frizzle
16037 </PRE>
16039 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16040 In order to match messages that do not have &quot;frizzle&quot; in
16041 their To field, first type the characters &quot;frizzle&quot; followed
16042 by carriage return for the value of the To pattern, then negate it
16043 by typing the &quot;!&quot; command.
16044 It should end up looking like
16046 <PRE>
16047  ! To pattern = frizzle
16048 </PRE>
16051 You are not limited to using the six standard header patterns that are
16052 normally shown (To, From, Sender, Cc, News, and Subject).
16053 You may add any other header to a Pattern by
16054 using the &quot;eXtraHdr&quot; command to specify a different
16055 message header line; and then the Add or Change command to fill in
16056 a pattern for the new header line, just like you would for a standard header.
16058 A technicality: Since comma is the character used to separate multiple
16059 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16060 you want to include a literal comma in the field.
16061 In other words, if you type a backslash followed by a comma it will
16062 be interpreted as a comma by Alpine, instead of as a separator between
16063 pattern values.
16064 All other backslashes are literal backslashes and should not be escaped.
16066 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16067 for more information on Patterns.
16069 Look <A HREF="h_edit_nav_cmds">here</A>
16070 to see the available Editing and Navigation commands.
16072 &lt;End of help on this topic&gt;
16073 </BODY>
16074 </HTML>
16075 ======= h_config_other_topat =======
16076 <HTML>
16077 <HEAD>
16078 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16079 </HEAD>
16080 <BODY>
16081 <H1>&quot;To:&quot; Pattern Explained</H1>
16083 For some of the OTHER RULES actions, there is no message that is being
16084 compared against.
16085 If that is the case, then only the Current Folder Type is checked.
16086 In particular, this To pattern is ignored.
16087 Actions that fall into this category include both
16088 Sort Order and Index Format.
16090 A technicality: Since comma is the character used to separate multiple
16091 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16092 you want to include a literal comma in the field.
16093 In other words, if you type a backslash followed by a comma it will
16094 be interpreted as a comma by Alpine, instead of as a separator between
16095 pattern values.
16096 All other backslashes are literal backslashes and should not be escaped.
16098 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16099 for more information on Patterns.
16101 Look <A HREF="h_edit_nav_cmds">here</A>
16102 to see the available Editing and Navigation commands.
16104 &lt;End of help on this topic&gt;
16105 </BODY>
16106 </HTML>
16107 ======= h_config_filt_topat =======
16108 <HTML>
16109 <HEAD>
16110 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16111 </HEAD>
16112 <BODY>
16113 <H1>&quot;To:&quot; Pattern Explained</H1>
16115 Any text you enter as the &quot;To pattern&quot;
16116 will be compared to the recipients from the To: line of
16117 messages when Alpine opens folders.
16118 When the text you entered matches
16119 all or part of the To: line of a message, then the Filter Action you have
16120 specified will be carried out.
16121 (Any other non-blank parts of the Pattern must match, too.)
16124 You may enter a complete email address, part of an address, or a
16125 list of addresses or partial addresses.
16126 For example:
16129 <PRE>
16130  To pattern = friend@public.com
16131  To pattern = rated.net
16132  To pattern = xxx@adults.com
16133               admin@msn.com
16134               fool@motleyfool.com
16135 </PRE>
16138 Each of those are valid To patterns.
16141 Messages match those patterns if any of the
16142 addresses in the To: line of the message contains the pattern.
16143 If the pattern is a list of patterns
16144 (like the last example above) then it is a match if any of the patterns in
16145 the list match any of the addresses in the To: line.
16146 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16147 present for a match.
16148 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16149 address2 must be present.
16150 That is exactly what using a list does.)
16153 Some messages may be &quot;bounced&quot; to you, and will
16154 have a &quot;Resent-To:&quot; header line.
16155 If the message contains a Resent-To: line
16156 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16157 Alpine will look for
16158 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16159 the original To: line.
16162 When entering a pattern, you may choose an address from your address book
16163 with the &quot;T&quot; command.
16166 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16167 &quot;!&quot; &quot;toggle NOT&quot; command.
16168 This changes the meaning of the To pattern so that it has the opposite meaning.
16169 It will be considered a match if there are no matches between the
16170 addresses in the To: line and the list of To patterns.
16172 Don't make the mistake of putting the &quot;!&quot; in the data field for
16173 the pattern.
16174 For example, if you type the characters &quot;!frizzle&quot; into the To
16175 pattern, the pattern will look like:
16177 <PRE>
16178  To pattern = !frizzle
16179 </PRE>
16181 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16182 In order to match messages that do not have &quot;frizzle&quot; in
16183 their To field, first type the characters &quot;frizzle&quot; followed
16184 by carriage return for the value of the To pattern, then negate it
16185 by typing the &quot;!&quot; command.
16186 It should end up looking like
16188 <PRE>
16189  ! To pattern = frizzle
16190 </PRE>
16193 You are not limited to using the six standard header patterns that are
16194 normally shown (To, From, Sender, Cc, News, and Subject).
16195 You may add any other header to a Pattern by
16196 using the &quot;eXtraHdr&quot; command to specify a different
16197 message header line; and then the Add or Change command to fill in
16198 a pattern for the new header line, just like you would for a standard header.
16200 A technicality: Since comma is the character used to separate multiple
16201 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16202 you want to include a literal comma in the field.
16203 In other words, if you type a backslash followed by a comma it will
16204 be interpreted as a comma by Alpine, instead of as a separator between
16205 pattern values.
16206 All other backslashes are literal backslashes and should not be escaped.
16208 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16209 for more information on Patterns.
16211 Look <A HREF="h_edit_nav_cmds">here</A>
16212 to see the available Editing and Navigation commands.
16214 &lt;End of help on this topic&gt;
16215 </BODY>
16216 </HTML>
16217 ======= h_config_role_topat =======
16218 <HTML>
16219 <HEAD>
16220 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16221 </HEAD>
16222 <BODY>
16223 <H1>&quot;To:&quot; Pattern Explained</H1>
16225 Any text you enter as the &quot;To pattern&quot;
16226 will be compared to the recipients from the To: line of
16227 the message being replied to or forwarded.
16228 (Any other non-blank parts of the Pattern must match, too.)
16229 In the case of the Compose command, this pattern and the other header
16230 patterns are ignored.
16233 You may enter a complete email address, part of an address, or a
16234 list of addresses or partial addresses.
16235 For example:
16238 <PRE>
16239  To pattern = friend@public.com
16240  To pattern = rated.net
16241  To pattern = xxx@adults.com
16242               admin@msn.com
16243               fool@motleyfool.com
16244 </PRE>
16247 Each of those are valid To patterns.
16250 Messages match those patterns if any of the
16251 addresses in the To: line of the message contains the pattern.
16252 If the pattern is a list of patterns
16253 (like the last example above) then it is a match if any of the patterns in
16254 the list match any of the addresses in the To: line.
16255 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16256 present for a match.
16257 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16258 address2 must be present.
16259 That is exactly what using a list does.)
16262 Some messages may be &quot;bounced&quot; to you, and will
16263 have a &quot;Resent-To:&quot; header line.
16264 If the message contains a Resent-To: line
16265 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16266 Alpine will look for
16267 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16268 the original To: line.
16271 When entering a pattern, you may choose an address from your address book
16272 with the &quot;T&quot; command.
16275 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16276 &quot;!&quot; &quot;toggle NOT&quot; command.
16277 This changes the meaning of the To pattern so that it has the opposite meaning.
16278 It will be considered a match if there are no matches between the
16279 addresses in the To: line and the list of To patterns.
16281 Don't make the mistake of putting the &quot;!&quot; in the data field for
16282 the pattern.
16283 For example, if you type the characters &quot;!frizzle&quot; into the To
16284 pattern, the pattern will look like:
16286 <PRE>
16287  To pattern = !frizzle
16288 </PRE>
16290 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16291 In order to match messages that do not have &quot;frizzle&quot; in
16292 their To field, first type the characters &quot;frizzle&quot; followed
16293 by carriage return for the value of the To pattern, then negate it
16294 by typing the &quot;!&quot; command.
16295 It should end up looking like
16297 <PRE>
16298  ! To pattern = frizzle
16299 </PRE>
16302 You are not limited to using the six standard header patterns that are
16303 normally shown (To, From, Sender, Cc, News, and Subject).
16304 You may add any other header to a Pattern by
16305 using the &quot;eXtraHdr&quot; command to specify a different
16306 message header line; and then the Add or Change command to fill in
16307 a pattern for the new header line, just like you would for a standard header.
16309 A technicality: Since comma is the character used to separate multiple
16310 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16311 you want to include a literal comma in the field.
16312 In other words, if you type a backslash followed by a comma it will
16313 be interpreted as a comma by Alpine, instead of as a separator between
16314 pattern values.
16315 All other backslashes are literal backslashes and should not be escaped.
16317 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16318 for more information on Patterns.
16320 Look <A HREF="h_edit_nav_cmds">here</A>
16321 to see the available Editing and Navigation commands.
16323 &lt;End of help on this topic&gt;
16324 </BODY>
16325 </HTML>
16326 ======= h_config_role_frompat =======
16327 <HTML>
16328 <HEAD>
16329 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
16330 </HEAD>
16331 <BODY>
16332 <H1>&quot;From:&quot; Pattern Explained</H1>
16334 This is just like the &quot;To pattern&quot; except that it is compared with
16335 the address in the From: line of the message
16336 instead of the addresses from the To: line.
16337 See the help for the To pattern for more information on header patterns.
16339 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16340 for more information on Patterns.
16342 Look <A HREF="h_edit_nav_cmds">here</A>
16343 to see the available Editing and Navigation commands.
16345 &lt;End of help on this topic&gt;
16346 </BODY>
16347 </HTML>
16348 ======= h_config_role_senderpat =======
16349 <HTML>
16350 <HEAD>
16351 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
16352 </HEAD>
16353 <BODY>
16354 <H1>&quot;Sender:&quot; Pattern Explained</H1>
16356 This is just like the &quot;To pattern&quot; except that it is compared with
16357 the address from the Sender: line of the message
16358 instead of the addresses from the To: line.
16359 See the help for the To pattern for more information on header patterns.
16361 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16362 for more information on Patterns.
16364 Look <A HREF="h_edit_nav_cmds">here</A>
16365 to see the available Editing and Navigation commands.
16367 &lt;End of help on this topic&gt;
16368 </BODY>
16369 </HTML>
16370 ======= h_config_role_ccpat =======
16371 <HTML>
16372 <HEAD>
16373 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
16374 </HEAD>
16375 <BODY>
16376 <H1>&quot;Cc:&quot; Pattern Explained</H1>
16378 This is just like the &quot;To pattern&quot; except that it is compared with
16379 the addresses from the Cc: line of the message
16380 instead of the addresses from the To: line.
16381 See the help for the To pattern for more information on header patterns.
16383 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16384 for more information on Patterns.
16386 Look <A HREF="h_edit_nav_cmds">here</A>
16387 to see the available Editing and Navigation commands.
16389 &lt;End of help on this topic&gt;
16390 </BODY>
16391 </HTML>
16392 ======= h_config_role_recippat =======
16393 <HTML>
16394 <HEAD>
16395 <TITLE>Recipient Pattern Explained</TITLE>
16396 </HEAD>
16397 <BODY>
16398 <H1>Recipient Pattern Explained</H1>
16400 This is just like the &quot;To pattern&quot; except that it is compared with
16401 the addresses from both the To: line and the Cc: line of the
16402 message instead of just the addresses from the To: line.
16403 In other words, it is considered a match if the pattern matches
16404 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
16405 in the Cc: line.
16406 (Notice that defining the Recipient pattern does not have the same
16407 effect as defining both the To and Cc patterns.
16408 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
16409 It is equivalent to having two different rules;
16410 one with a To pattern and the other with the same Cc pattern.)
16412 A technicality: Since comma is the character used to separate multiple
16413 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16414 you want to include a literal comma in the field.
16415 In other words, if you type a backslash followed by a comma it will
16416 be interpreted as a comma by Alpine, instead of as a separator between
16417 pattern values.
16418 All other backslashes are literal backslashes and should not be escaped.
16420 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16421 for more information on Patterns.
16423 Look <A HREF="h_edit_nav_cmds">here</A>
16424 to see the available Editing and Navigation commands.
16426 &lt;End of help on this topic&gt;
16427 </BODY>
16428 </HTML>
16429 ======= h_config_role_particpat =======
16430 <HTML>
16431 <HEAD>
16432 <TITLE>Participant Pattern Explained</TITLE>
16433 </HEAD>
16434 <BODY>
16435 <H1>Participant Pattern Explained</H1>
16437 This is just like the &quot;To pattern&quot; except that it is compared with
16438 the addresses from the From: line, the To: line, and the Cc: line of the
16439 message instead of just the addresses from the To: line.
16440 In other words, it is considered a match if the pattern matches
16441 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
16442 in the To: line, <EM>OR</EM> an address in the Cc: line.
16443 (Notice that defining the Participant pattern does not have the same
16444 effect as defining all of the From, To, and Cc patterns.
16445 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
16446 From <EM>AND</EM> To <EM>AND</EM> Cc.
16447 It is equivalent to having three different rules;
16448 one with a From pattern, another with the same To pattern, and a third with
16449 the same Cc pattern.)
16451 A technicality: Since comma is the character used to separate multiple
16452 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16453 you want to include a literal comma in the field.
16454 In other words, if you type a backslash followed by a comma it will
16455 be interpreted as a comma by Alpine, instead of as a separator between
16456 pattern values.
16457 All other backslashes are literal backslashes and should not be escaped.
16459 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16460 for more information on Patterns.
16462 Look <A HREF="h_edit_nav_cmds">here</A>
16463 to see the available Editing and Navigation commands.
16465 &lt;End of help on this topic&gt;
16466 </BODY>
16467 </HTML>
16468 ======= h_config_role_newspat =======
16469 <HTML>
16470 <HEAD>
16471 <TITLE>News Pattern Explained</TITLE>
16472 </HEAD>
16473 <BODY>
16474 <H1>News Pattern Explained</H1>
16476 If this pattern is non-blank, then for this rule to be considered a
16477 match, at least one of the newsgroups from
16478 the Newsgroups line of the message must match this pattern.
16479 If this pattern is a list of patterns, then at least one of the
16480 newsgroups must match at least one of the patterns.
16481 (Any other non-blank parts of the Pattern must match, too.)
16483 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
16484 &quot;!&quot; &quot;toggle NOT&quot; command.
16485 This changes the meaning of the News pattern so that it has the opposite meaning.
16486 It will be considered a match if there are no matches between the
16487 addresses in the Newsgroups: line and the list of News patterns.
16489 Don't make the mistake of putting the &quot;!&quot; in the data field for
16490 the pattern.
16491 For example, if you type the characters &quot;!frizzle&quot; into the News
16492 pattern, the pattern will look like:
16494 <PRE>
16495  News pattern = !frizzle
16496 </PRE>
16498 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16499 In order to match messages that do not have &quot;frizzle&quot; in
16500 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
16501 by carriage return for the value of the News pattern, then negate it
16502 by typing the &quot;!&quot; command.
16503 It should end up looking like
16505 <PRE>
16506  ! News pattern = frizzle
16507 </PRE>
16509 A technicality: Since comma is the character used to separate multiple
16510 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16511 you want to include a literal comma in the field.
16512 In other words, if you type a backslash followed by a comma it will
16513 be interpreted as a comma by Alpine, instead of as a separator between
16514 pattern values.
16515 All other backslashes are literal backslashes and should not be escaped.
16518 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16519 for more information on Patterns.
16521 Look <A HREF="h_edit_nav_cmds">here</A>
16522 to see the available Editing and Navigation commands.
16524 &lt;End of help on this topic&gt;
16525 </BODY>
16526 </HTML>
16527 ======= h_config_role_subjpat =======
16528 <HTML>
16529 <HEAD>
16530 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
16531 </HEAD>
16532 <BODY>
16533 <H1>&quot;Subject:&quot; Pattern Explained</H1>
16535 This is similar to the other parts of the Pattern.
16536 It is compared with
16537 the contents from the Subject of the message.
16539 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16540 for more information on Patterns.
16542 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
16543 &quot;!&quot; &quot;toggle NOT&quot; command.
16544 This changes the meaning of the Subject pattern so that it has the opposite meaning.
16545 It will be considered a match if there are no matches between the
16546 text in the Subject: line and the list of Subject patterns.
16549 If you wish to have a header pattern that is not one of the six standard
16550 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
16552 A technicality: Since comma is the character used to separate multiple
16553 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16554 you want to include a literal comma in the field.
16555 In other words, if you type a backslash followed by a comma it will
16556 be interpreted as a comma by Alpine, instead of as a separator between
16557 pattern values.
16558 All other backslashes are literal backslashes and should not be escaped.
16560 Look <A HREF="h_edit_nav_cmds">here</A>
16561 to see the available Editing and Navigation commands.
16563 &lt;End of help on this topic&gt;
16564 </BODY>
16565 </HTML>
16566 ======= h_config_role_alltextpat =======
16567 <HTML>
16568 <HEAD>
16569 <TITLE>AllText Pattern Explained</TITLE>
16570 </HEAD>
16571 <BODY>
16572 <H1>AllText Pattern Explained</H1>
16574 This is similar to the header patterns.
16575 Instead of comparing with text in a particular header field it 
16576 is compared with all of the text in the message header and body.
16578 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
16579 &quot;!&quot; &quot;toggle NOT&quot; command.
16580 This changes the meaning of the AllText pattern so that it has the opposite meaning.
16581 It will be considered a match if there are no matches between the
16582 text of the message and the list of AllText patterns.
16584 Don't make the mistake of putting the &quot;!&quot; in the data field for
16585 the pattern.
16586 For example, if you type the characters &quot;!frizzle&quot; into the AllText
16587 pattern, the pattern will look like:
16589 <PRE>
16590  AllText pattern = !frizzle
16591 </PRE>
16593 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16594 In order to match messages that do not have &quot;frizzle&quot; in
16595 the text of the message, first type the characters &quot;frizzle&quot; followed
16596 by carriage return for the value of the AllText pattern, then negate it
16597 by typing the &quot;!&quot; command.
16598 It should end up looking like
16600 <PRE>
16601  ! AllText pattern = frizzle
16602 </PRE>
16604 It is possible that you may notice degraded performance when using
16605 AllText Patterns.
16607 A technicality: Since comma is the character used to separate multiple
16608 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16609 you want to include a literal comma in the field.
16610 In other words, if you type a backslash followed by a comma it will
16611 be interpreted as a comma by Alpine, instead of as a separator between
16612 pattern values.
16613 All other backslashes are literal backslashes and should not be escaped.
16615 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16616 for more information on Patterns.
16618 Look <A HREF="h_edit_nav_cmds">here</A>
16619 to see the available Editing and Navigation commands.
16621 &lt;End of help on this topic&gt;
16622 </BODY>
16623 </HTML>
16624 ======= h_config_role_bodytextpat =======
16625 <HTML>
16626 <HEAD>
16627 <TITLE>BodyText Pattern Explained</TITLE>
16628 </HEAD>
16629 <BODY>
16630 <H1>BodyText Pattern Explained</H1>
16632 This is similar to the header patterns.
16633 Instead of comparing with text in a particular header field it 
16634 is compared with all of the text in the message body.
16636 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
16637 &quot;!&quot; &quot;toggle NOT&quot; command.
16638 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
16639 It will be considered a match if there are no matches between the
16640 text of the body of the message and the list of BodyText patterns.
16642 Don't make the mistake of putting the &quot;!&quot; in the data field for
16643 the pattern.
16644 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
16645 pattern, the pattern will look like:
16647 <PRE>
16648  BdyText pattern = !frizzle
16649 </PRE>
16651 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16652 In order to match messages that do not have &quot;frizzle&quot; in
16653 their BodyText, first type the characters &quot;frizzle&quot; followed
16654 by carriage return for the value of the BodyText pattern, then negate it
16655 by typing the &quot;!&quot; command.
16656 It should end up looking like
16658 <PRE>
16659  ! BodyText pattern = frizzle
16660 </PRE>
16662 It is possible that you may notice degraded performance when using
16663 BodyText Patterns.
16665 A technicality: Since comma is the character used to separate multiple
16666 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16667 you want to include a literal comma in the field.
16668 In other words, if you type a backslash followed by a comma it will
16669 be interpreted as a comma by Alpine, instead of as a separator between
16670 pattern values.
16671 All other backslashes are literal backslashes and should not be escaped.
16673 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16674 for more information on Patterns.
16676 Look <A HREF="h_edit_nav_cmds">here</A>
16677 to see the available Editing and Navigation commands.
16679 &lt;End of help on this topic&gt;
16680 </BODY>
16681 </HTML>
16682 ======= h_config_role_charsetpat =======
16683 <HTML>
16684 <HEAD>
16685 <TITLE>Character Set Pattern Explained</TITLE>
16686 </HEAD>
16687 <BODY>
16688 <H1>Character Set Pattern Explained</H1>
16690 A message may use one or more character sets.
16691 This part of the Pattern matches messages that make use of
16692 certain specified character sets.
16693 It will be considered a match if a message uses any of the character
16694 sets in the list you give here.
16697 When filling in a value for this field, you may use
16698 the &quot;T&quot; command, which presents you with a large list of
16699 possible character sets to choose from.
16700 You may also just type in the name of a character set, and it need not
16701 be one that Alpine knows about.
16704 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
16705 GB2312) you may also use some shorthand names that Alpine provides.
16706 These names are more understandable shorthand names for sets of 
16707 character set names.
16708 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
16709 Selecting one of these shorthand names is equivalent to selecting all of
16710 the character sets that make up the set.
16711 You can see all of these shorthand names and the lists of character sets
16712 they stand for by typing the &quot;T&quot; command.
16715 For the purposes of this Pattern,
16716 Alpine will search through a message for all of the text parts and
16717 collect the character sets declared for each part.
16718 It will also look in the Subject line for a character set used there.
16719 Alpine does not actually look at the text of the message or the text
16720 of the Subject to determine if a declared character set is actually
16721 used, it looks only at the declarations themselves in the MIME part headers
16722 and in the Subject.
16725 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
16726 &quot;!&quot; &quot;toggle NOT&quot; command.
16727 This changes the meaning of the Character Set pattern so that
16728 it has the opposite meaning.
16729 It will be considered a match if none of the character sets in the
16730 list are used in a message.
16732 Don't make the mistake of putting the &quot;!&quot; in the data field for
16733 the pattern.
16734 For example, if you type the characters &quot;!GB2312&quot; into the
16735 Character Set pattern, the pattern will look like:
16737 <PRE>
16738  Charset pattern = !GB2312
16739 </PRE>
16741 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
16742 In order to match messages that do not have the
16743 character set &quot;GB2312&quot;
16744 set, first type the characters &quot;GB2312&quot; followed
16745 by carriage return for the value of the Character Set pattern, then negate it
16746 by typing the &quot;!&quot; command.
16747 It should end up looking like
16749 <PRE>
16750  ! Charset pattern = GB2312
16751 </PRE>
16753 A technicality: Since comma is the character used to separate multiple
16754 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16755 you want to include a literal comma in the field.
16756 In other words, if you type a backslash followed by a comma it will
16757 be interpreted as a comma by Alpine, instead of as a separator between
16758 pattern values.
16759 All other backslashes are literal backslashes and should not be escaped.
16761 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16762 for more information on Patterns.
16764 Look <A HREF="h_edit_nav_cmds">here</A>
16765 to see the available Editing and Navigation commands.
16767 &lt;End of help on this topic&gt;
16768 </BODY>
16769 </HTML>
16770 ======= h_config_role_keywordpat =======
16771 <HTML>
16772 <HEAD>
16773 <TITLE>Keyword Pattern Explained</TITLE>
16774 </HEAD>
16775 <BODY>
16776 <H1>Keyword Pattern Explained</H1>
16778 A folder may have user-defined keywords.
16779 These are similar to the Important flag, which the user may set using the
16780 Flag command.
16781 The difference is that the Important flag is always present for each folder.
16782 User-defined keywords are picked by the user.
16783 You may add new keywords by defining them in the
16784 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
16785 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
16786 the Flag command may be used to set or clear the keyword on individual messages.
16787 If you have given a keyword a nickname when configuring it,
16788 that nickname may be used instead of the actual keyword.
16791 When filling in a value for this field, it may be easiest to use
16792 the &quot;T&quot; command, which presents you with a list of the keywords
16793 you have defined to choose from.
16796 This part of the Pattern matches messages with certain keywords set.
16797 It will be considered a match if a message has any of the keywords in the
16798 list set.
16799 A keyword that you have not defined using the
16800 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16801 will not be a match.
16804 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
16805 &quot;!&quot; &quot;toggle NOT&quot; command.
16806 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
16807 It will be considered a match if none of the keywords in the list are set
16808 for a message.
16809 A keyword that you have not defined using the
16810 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16811 will not be a match, so a <EM>NOT</EM> of that keyword does match.
16813 Don't make the mistake of putting the &quot;!&quot; in the data field for
16814 the pattern.
16815 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
16816 pattern, the pattern will look like:
16818 <PRE>
16819  Keyword pattern = !frizzle
16820 </PRE>
16822 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16823 In order to match messages that do not have the keyword &quot;frizzle&quot;
16824 set, first type the characters &quot;frizzle&quot; followed
16825 by carriage return for the value of the Keyword pattern, then negate it
16826 by typing the &quot;!&quot; command.
16827 It should end up looking like
16829 <PRE>
16830  ! Keyword pattern = frizzle
16831 </PRE>
16833 A technicality: Since comma is the character used to separate multiple
16834 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16835 you want to include a literal comma in the field.
16836 In other words, if you type a backslash followed by a comma it will
16837 be interpreted as a comma by Alpine, instead of as a separator between
16838 pattern values.
16839 All other backslashes are literal backslashes and should not be escaped.
16841 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16842 for more information on Patterns.
16844 Look <A HREF="h_edit_nav_cmds">here</A>
16845 to see the available Editing and Navigation commands.
16847 &lt;End of help on this topic&gt;
16848 </BODY>
16849 </HTML>
16850 ======= h_config_role_arbpat =======
16851 <HTML>
16852 <HEAD>
16853 <TITLE>Extra Header Patterns Explained</TITLE>
16854 </HEAD>
16855 <BODY>
16856 <H1>Extra Header Patterns Explained</H1>
16858 The header patterns that come after the Participant pattern but before the 
16859 AllText pattern are extra header patterns that you have added to a rule's
16860 Pattern. These are just like the other header patterns except that
16861 the contents of the particular header listed on the left hand side will
16862 be used for comparisons.
16864 The &quot;eXtraHdr&quot; command may be used to add more of these
16865 header patterns to the rule you are editing.
16867 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
16868 extra header pattern from the rule you are editing.
16870 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
16871 &quot;!&quot; &quot;toggle NOT&quot; command.
16872 This changes the meaning of the pattern so that it has the opposite meaning.
16873 It will be considered a match if there are no matches between the
16874 text in the header line and the list of patterns.
16876 Don't make the mistake of putting the &quot;!&quot; in the data field for
16877 the pattern.
16878 For example, if you type the characters &quot;!frizzle&quot; into the
16879 pattern, the pattern will look like:
16881 <PRE>
16882  Xyz pattern = !frizzle
16883 </PRE>
16885 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16886 In order to match messages that do not have &quot;frizzle&quot; in
16887 their Xyz field, first type the characters &quot;frizzle&quot; followed
16888 by carriage return for the value of the pattern, then negate it
16889 by typing the &quot;!&quot; command.
16890 It should end up looking like
16892 <PRE>
16893  ! Xyz pattern = frizzle
16894 </PRE>
16897 A technicality: Since comma is the character used to separate multiple
16898 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16899 you want to include a literal comma in the field.
16900 In other words, if you type a backslash followed by a comma it will
16901 be interpreted as a comma by Alpine, instead of as a separator between
16902 pattern values.
16903 All other backslashes are literal backslashes and should not be escaped.
16905 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16906 for more information on Patterns.
16908 Look <A HREF="h_edit_nav_cmds">here</A>
16909 to see the available Editing and Navigation commands.
16911 &lt;End of help on this topic&gt;
16912 </BODY>
16913 </HTML>
16914 ======= h_config_role_cat_cmd =======
16915 <HTML>
16916 <HEAD>
16917 <TITLE>Categorizer Command Explained</TITLE>
16918 </HEAD>
16919 <BODY>
16920 <H1>Categorizer Command Explained</H1>
16922 This is a command that is run with its standard input set to the message
16923 being checked and its standard output discarded.
16924 The full directory path should be specified.
16925 The command will be run and then its exit status will be checked against
16926 the Exit Status Interval, which defaults to just the value zero.
16927 If the exit status of the command falls in the interval, it is considered
16928 a match, otherwise it is not a match.
16931 This option may actually be a list of commands.
16932 The first one that exists and is executable is used.
16933 That makes it possible to use the same configuration with Unix Alpine and
16934 PC-Alpine.
16937 If none of the commands in the list exists and is executable then the rule
16938 is <EM>not</EM> a match.
16939 If it is possible that the command may not exist, you should be careful
16940 to structure your rules so that nothing destructive
16941 happens when the command does not exist.
16942 For example, you might have a filter that filters away spam when there is
16943 a match but does nothing when there is not a match.
16944 That would cause no harm if the command didn't exist.
16945 However, if you have a filter that filters away spam when there is not
16946 a match and keeps it when there is a match, that would filter everything
16947 if the categorizer command didn't exist.
16949 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
16950 setup for the bogofilter filter.
16953 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16954 for more information on Patterns.
16956 Look <A HREF="h_edit_nav_cmds">here</A>
16957 to see the available Editing and Navigation commands.
16959 &lt;End of help on this topic&gt;
16960 </BODY>
16961 </HTML>
16962 ======= h_config_role_cat_cmd_example =======
16963 <HTML>
16964 <HEAD>
16965 <TITLE>Categorizer Command Example</TITLE>
16966 </HEAD>
16967 <BODY>
16968 <H1>Categorizer Command Example</H1>
16970 Bogofilter
16971 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
16972 is a mail filter that attempts to classify mail as spam or
16973 non-spam using statistical analysis of the message content.
16974 When run with no arguments and a message as standard input, it exits with
16975 exit status 0 if it thinks a message is spam and 1 if it thinks
16976 it is not spam.
16977 To use bogofilter as your Categorizer Command you would simply set Command to
16978 the pathname of the bogofilter program.
16979 For example,
16981 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
16983 Exit status of zero is what you are interested in, so you'd set the
16984 Exit Status Interval to
16986 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
16989 In order to prevent downloading an entire huge message to check for spam, you
16990 might want to set the Character Limit to a few thousand characters (the
16991 assumption being that the spam will reveal itself in those characters)
16993 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
16996 You would probably use bogofilter in an Alpine Filter Rule, and have the action
16997 be to move the message to a spam folder.
16998 It would usually be wise to also check the &quot;Message is Recent&quot;
16999 part of the rule so that messages are only checked when they first arrive,
17000 and to restrict the Current Folder Type to just your INBOX.
17001 The reason for checking only Recent messages is to save the time it takes
17002 to run bogofilter on each message.
17003 As an experiment, you might start out by using this in an Indexcolor Rule
17004 instead of a Filter Rule.
17005 In that case, you probably wouldn't check the Recent checkbox.
17007 The use described above assumes that you are somehow maintaining bogofilter's
17008 database of words associated with spam and non-spam messages.
17009 One way to start your database would be to select a bunch of spam messages
17010 in Alpine (you might Save spam messages to a special folder or use Alpine's
17011 Select command to select several) and then Apply
17012 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
17013 a pipe command to the spam messages.
17014 For example, you could have a shell script or an alias
17015 called <EM>this_is_spam</EM>, which would simply be the command
17017 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
17020 It is probably best to use the pipe command's Raw Text, With Delimiter,
17021 and Free Output options,
17022 which are at the bottom of the screen when you type the pipe command.
17023 That's because bogofilter expects the raw message as input, and uses
17024 the Delimiters to tell when a new message starts.
17025 You would not need to use a separate pipe for each message, because
17026 bogofilter can handle multiple messages at once.
17028 Similarly, you would select a group of non-spam messages
17029 and run them through a <EM>this_is_nonspam</EM> script
17030 that was something like
17032 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
17035 For the more adventurous, the next step might be to automate the upkeep of
17036 the bogofilter database.
17037 It might make more sense to have bogofilter be part of the delivery process,
17038 but it is also possible to do it entirely from within Alpine.
17039 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
17040 the &quot;-u&quot; argument will cause bogofilter to update the database.
17042 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
17044 You'd want a couple more aliases or shell scripts called something like
17045 <EM>change_to_spam</EM>
17047 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
17050 <EM>change_to_nonspam</EM>
17052 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
17054 When you run across a message in your INBOX that should have been
17055 classified as spam you would pipe it to the change_to_spam script, and
17056 when you run across a message in your spam folder that should have been
17057 left in your INBOX you would pipe it through change_to_nonspam.
17060 There is a technical problem with this approach.
17061 Alpine may check your filters more than once.
17062 In particular, every time you start Alpine the filters will be checked for
17063 each message.
17064 Also, if you have any filters that depend on message state (New, Deleted, etc.)
17065 then Alpine will recheck for matches in messages that have changed state
17066 at the time you close the folder and before expunging.
17067 This is usually ok.
17068 However, in this case it is a problem because the command
17070 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
17072 has the side effect of updating the database.
17073 So you run the risk of updating the database multiple times for a single
17074 message instead of updating it just once per message.
17075 There are some ways to work around this problem.
17076 What you need is a way to mark the message after you have run the filter.
17077 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
17078 Besides having the filter move the message to a spam folder, also have it
17079 set the Bogo keyword.
17080 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
17081 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
17082 This rule can only set the Bogo keyword for the messages that it matches.
17083 You will also need to add a second rule right after this one that
17084 matches all the messages that don't have the Bogo keyword set
17085 (put the keyword in the Keyword pattern and toggle
17086 the Not with the ! command)
17087 and takes the action of setting it.
17088 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
17089 (and so it won't re-run the bogofilter command) if the keyword is already
17090 set.
17092 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
17093 on all messages that don't have the Bogo keyword set.
17094 This will have the side effect of inserting that message in the bogofilter
17095 database, match or not.
17096 If this rule matches (it is spam), the Bogo keyword will be set and
17097 the message will be moved to a spam folder.
17098 If it does not match, the
17099 following rule will mark the message by turning on the keyword.
17100 This second rule should be a non-terminating
17101 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
17102 rule so that it doesn't stop the filtering process before the rest of
17103 your rules are consulted.
17106 In summary, the first rule is something like
17107 <PRE>
17108   Nickname          = bogofilter -u rule
17109   Current Folder Type =
17110                (*) Specific
17111                    Folder = INBOX
17113   ! Keyword pattern = Bogo
17115   External Categorizer Commands =
17116        Command              = /usr/local/bin/bogofilter -u
17117        Exit Status Interval = (0,0)
17118        Character Limit      = <No Value Set: using "-1">  (optionally set this)
17120   Filter Action =
17121        (*) Move
17122            Folder = spam
17123   
17124   Set These Keywords   = Bogo
17125 </PRE>
17127 and the following rule is
17128 <PRE>
17129   Nickname          = Set Bogo Keyword
17130   Current Folder Type =
17131                (*) Specific
17132                    Folder = INBOX
17134   ! Keyword pattern = Bogo
17136   Filter Action =
17137        (*) Just Set Message Status
17139   Set These Keywords   = Bogo
17141   Features =
17142       [X]  dont-stop-even-if-rule-matches
17143 </PRE>
17145 If it is possible for you to insert bogofilter in the delivery process instead
17146 of having it called from Alpine you could prevent having to wait
17147 for the bogofilter processing while you read your mail.
17148 You would have bogofilter add a header to the message at the time of delivery
17149 that identified it as spam or nonspam.
17150 With this method, you could avoid using a Categorizer Command while running Alpine,
17151 and just match on the header instead.
17152 You might still want to use the scripts mentioned above to initialize the
17153 database or to re-classify wrongly classified messages.
17156 Finally, it isn't for the faint-hearted,
17157 but it is also possible to run bogofilter from PC-Alpine.
17158 You can install Cygwin from
17159 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
17160 then compile bogofilter in the cygwin environment, and run it from
17161 within PC-Alpine.
17162 You would end up with a Categorizer command that looked something like
17164 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
17166 Note that the &quot;.exe&quot; extension is explicit,
17167 and that the bogofilter.exe executable should be in the same directory
17168 as cygwin1.dll.
17171 &lt;End of help on this topic&gt;
17172 </BODY>
17173 </HTML>
17174 ======= h_config_role_cat_status =======
17175 <HTML>
17176 <HEAD>
17177 <TITLE>Exit Status Interval Explained</TITLE>
17178 </HEAD>
17179 <BODY>
17180 <H1>Exit Status Interval Explained</H1>
17182 The categorizer command is run and the result is the exit status of
17183 that command.
17184 If that exit status falls in the Exit Status Interval
17185 then it is considered a match, otherwise it is not a match.
17186 Of course for the entire rule to match, it must also be checked against
17187 the other defined parts of the Pattern.
17189 The Exit Status Interval defaults to the single value 0 (zero).
17190 If you define it, it should be set to something like:
17192 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
17194 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
17195 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
17196 positive and negative integers.
17198 Actually, a list of intervals may be used if you wish.
17199 A list would look like
17201 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
17203 When there is an Exit Status Interval defined, it is a match if the exit status
17204 of the categorizer command is contained in any of the intervals.
17205 The intervals include both endpoints.
17207 The default interval is
17209 <CENTER><SAMP>(0,0)</SAMP></CENTER>
17211 and it matches only if the command exits with exit status equal to zero.
17214 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17215 for more information on Patterns.
17217 Look <A HREF="h_edit_nav_cmds">here</A>
17218 to see the available Editing and Navigation commands.
17220 &lt;End of help on this topic&gt;
17221 </BODY>
17222 </HTML>
17223 ======= h_config_role_cat_limit =======
17224 <HTML>
17225 <HEAD>
17226 <TITLE>Character Limit Explained</TITLE>
17227 </HEAD>
17228 <BODY>
17229 <H1>Character Limit Explained</H1>
17231 Setting this option makes it possible to limit how much of the message
17232 is made available to the categorizer command as input.
17233 The default value (-1) means that the entire message is fed to the
17234 command.
17235 A value of 0 (zero) means that only the headers of the message are
17236 made available.
17237 A positive integer means that the headers plus that many characters from
17238 the body of the message are passed to the categorizer.
17241 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17242 for more information on Patterns.
17244 Look <A HREF="h_edit_nav_cmds">here</A>
17245 to see the available Editing and Navigation commands.
17247 &lt;End of help on this topic&gt;
17248 </BODY>
17249 </HTML>
17250 ======= h_config_role_age =======
17251 <HTML>
17252 <HEAD>
17253 <TITLE>Age Interval Explained</TITLE>
17254 </HEAD>
17255 <BODY>
17256 <H1>Age Interval Explained</H1>
17258 The Age Interval, if defined, is part of the Pattern.
17259 If you use this, it should be set to something like:
17261 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
17263 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
17264 The special value &quot;INF&quot; may be used for the max value.
17265 It represents infinity.
17267 In rare cases it may be useful to use the more general form of the value,
17268 which is a comma-separated list of intervals.
17269 It would look something like:
17271 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
17273 When there is an Age Interval defined, it is a match if the age, in days, of
17274 the message is contained in the interval.
17275 The interval includes both endpoints.
17276 If the option is set to a list of intervals then it is a match if the
17277 age of the message is contained in any of the intervals.
17279 Even though this option is called Age, it isn't actually
17280 the <EM>age</EM> of the message.
17281 Instead, it is how many days ago the message arrived in one of your folders.
17282 If the current time is a little past midnight, then a message that arrived
17283 just before midnight arrived yesterday, even though the message is only
17284 a few minutes old.
17285 By default, the date being used is not the date in the Date
17286 header of the message.
17287 It is the date that the message arrived in one of your folders.
17288 When you Save a message from one folder to another that arrival date
17289 is preserved.
17290 If you would like to use the date in the Date header that is possible.
17291 Turn on the option
17292 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
17293 near the bottom of the rule definition.
17295 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
17296 The age interval
17298 <CENTER><SAMP>(2,2)</SAMP></CENTER>
17300 matches all messages that arrived on the day before yesterday.
17301 The interval
17303 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
17305 matches all messages that arrived at least 180 days before today.
17306 The interval
17308 <CENTER><SAMP>(0,1)</SAMP></CENTER>
17310 matches all messages that arrived today or yesterday.
17313 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17314 for more information on Patterns.
17316 Look <A HREF="h_edit_nav_cmds">here</A>
17317 to see the available Editing and Navigation commands.
17319 &lt;End of help on this topic&gt;
17320 </BODY>
17321 </HTML>
17322 ======= h_config_role_size =======
17323 <HTML>
17324 <HEAD>
17325 <TITLE>Size Interval Explained</TITLE>
17326 </HEAD>
17327 <BODY>
17328 <H1>Size Interval Explained</H1>
17330 The Size Interval, if defined, is part of the Pattern.
17331 If you use this, it should be set to something like:
17333 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
17335 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
17336 The special value &quot;INF&quot; may be used for the max value.
17337 It represents infinity.
17339 In rare cases it may be useful to use the more general form of the value,
17340 which is a comma-separated list of intervals.
17341 It would look something like:
17343 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
17345 When there is a Size Interval defined, it is a match if the size of
17346 the message is contained in the interval.
17347 The interval includes both endpoints.
17348 If the option is set to a list of intervals then it is a match if the
17349 size of the message is contained in any of the intervals.
17351 The size interval
17353 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
17355 matches all messages with sizes greater than or equal to 10000, and less
17356 than or equal to 50000.
17357 The interval
17359 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
17361 matches all messages with sizes greater than or equal to 100000.
17364 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17365 for more information on Patterns.
17367 Look <A HREF="h_edit_nav_cmds">here</A>
17368 to see the available Editing and Navigation commands.
17370 &lt;End of help on this topic&gt;
17371 </BODY>
17372 </HTML>
17373 ======= h_config_role_scorei =======
17374 <HTML>
17375 <HEAD>
17376 <TITLE>Score Interval Explained</TITLE>
17377 </HEAD>
17378 <BODY>
17379 <H1>Score Interval Explained</H1>
17381 The Score Interval, if defined, is part of the Pattern.
17382 If you use this, it should be set to something like:
17384 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
17386 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
17387 -32000 and 32000.
17388 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
17389 the min and max values.
17390 These represent negative and positive infinity.
17392 Actually, the value may be a list of intervals rather than just a
17393 single interval if that is useful.
17394 The elements of the list are separated by commas like:
17396 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
17398 When there is a Score Interval defined, it is a match if the score for
17399 the message is contained in any of the intervals.
17400 The intervals include both endpoints.
17401 The score for a message is calculated by looking at every scoring rule
17402 defined and adding up the Score Values for the rules that match the message.
17403 Scoring rules are created using the
17404 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
17407 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17408 for more information on Patterns.
17410 Look <A HREF="h_edit_nav_cmds">here</A>
17411 to see the available Editing and Navigation commands.
17413 &lt;End of help on this topic&gt;
17414 </BODY>
17415 </HTML>
17416 ======= h_config_role_fldr_type =======
17417 <HTML>
17418 <HEAD>
17419 <TITLE>Current Folder Type Explained</TITLE>
17420 </HEAD>
17421 <BODY>
17422 <H1>Current Folder Type Explained</H1>
17424 The Current Folder Type is part of the role's Pattern.
17425 It refers to the type of the currently open folder, which is the folder
17426 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
17427 In order for a role to be considered a match, the current folder must
17428 be of the type you set here.
17429 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17430 all what you might think.
17432 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
17433 example, then
17434 that role will only be a match if the current folder is a newsgroup and
17435 the rest of the Pattern matches.
17436 The value &quot;Specific&quot; may be used when you want to limit the match
17437 to a specific folder (not just a specific type of folder), or to a list of
17438 specific folders.
17440 In order to match a specific folder you Select the &quot;Specific&quot;
17441 button <EM>AND</EM> fill in
17442 the name (or list of names) of
17443 the folder in the &quot;Folder List&quot; field.
17444 If the current folder is any of the folders in the list, that is considered
17445 a match.
17446 The name of each folder in the list may be either &quot;INBOX&quot;,
17447 the technical specification
17448 of the folder (like what appears in your configuration file) or, if the
17449 folder is one of your incoming folders, it may be the nickname you've given
17450 the folder.
17451 Here are a couple samples of specific folder names:
17453 <CENTER><SAMP>{monet.art.example.com/user=vincent}mail/art-class</SAMP></CENTER>
17455 <CENTER><SAMP>{news.example.com/nntp/user=peter}#news.comp.mail.pine</SAMP></CENTER>
17457 Observe that in order for an external folder (IMAP, POP, News) to be a match,
17458 you must also add the /user= option in the definition of the incoming folder.
17460 The easiest way to fill in the &quot;Folder List&quot; field is to use
17461 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
17462 highlighted, or to use the &quot;Take&quot; command with the configuration
17463 feature
17464 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
17465 turned on.
17466 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17467 Current Folder Type is set to &quot;Specific&quot;, and any value that
17468 &quot;Folder List&quot; has is ignored unless the type
17469 is set to &quot;Specific&quot;.
17471 When reading a newsgroup, there may be a performance penalty
17472 incurred when collecting the information necessary to check a Pattern.
17473 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17475 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17476 for more information on Patterns.
17478 Look <A HREF="h_edit_nav_cmds">here</A>
17479 to see the available Editing and Navigation commands.
17481 &lt;End of help on this topic&gt;
17482 </BODY>
17483 </HTML>
17484 ======= h_config_filt_rule_type =======
17485 <HTML>
17486 <HEAD>
17487 <TITLE>Filter Action Explained</TITLE>
17488 </HEAD>
17489 <BODY>
17490 <H1>Filter Action Explained</H1>
17492 The Filter Action specifies the action to be taken when the Pattern is a
17493 match.
17494 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
17495 &quot;Just Set Message Status&quot;.
17497 If it is set to &quot;Delete&quot;, then the message that matches the
17498 Pattern will be deleted from the open folder.
17500 If it is set to &quot;Move&quot;, then the name of the folder to which
17501 the matching message should be moved is given in the &quot;Folder List&quot; field on the
17502 next line of the screen.
17503 A list of folders separated by commas may be given, in which case the
17504 message will be copied to all of the folders in the list before it is
17505 deleted.
17507 If it is set to neither of those two values (it is set to the value
17508 labeled &quot;Just Set Message Status&quot;) then the message status
17509 setting will happen
17510 but the message will not be deleted or moved.
17512 If you are Moving a message you may also set Message Status if you wish.
17514 The easiest way to fill in the &quot;Folder List&quot; field is to use
17515 the T command that is available when the &quot;Folder List&quot; line is
17516 highlighted.
17517 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17518 Filter Action is set to &quot;Move&quot;, and any value that
17519 &quot;Folder List&quot; has is ignored unless the type
17520 is set to &quot;Move&quot;.
17522 There are a few tokens that may be used in the names in the Folder List.
17523 They are all related to the date on which the filtering is taking place.
17524 The tokens are words surrounded by underscores.
17525 For example, if you want your filter to move messages to a folder named
17526 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
17527 you could specify the folder as
17528 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
17529 which would result in a file named something like
17530 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
17532 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
17533 which would result in a file named something like
17534 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
17535 The available tokens are listed
17536 <A HREF="h_index_tokens">here</A>.
17538 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17539 for more information on Patterns.
17541 Look <A HREF="h_edit_nav_cmds">here</A>
17542 to see the available Editing and Navigation commands.
17544 &lt;End of help on this topic&gt;
17545 </BODY>
17546 </HTML>
17547 ======= h_config_score_fldr_type =======
17548 <HTML>
17549 <HEAD>
17550 <TITLE>Current Folder Type Explained</TITLE>
17551 </HEAD>
17552 <BODY>
17553 <H1>Current Folder Type Explained</H1>
17555 The Current Folder Type is part of the scoring rule's Pattern.
17556 It refers to the type of the folder that
17557 the message being scored is in.
17558 In order for a rule to be considered a match, the current folder must
17559 be of the type you set here.
17560 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17561 all what you might think.
17563 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17564 example, then
17565 that Pattern will only match if the current folder is a newsgroup and
17566 the rest of the Pattern matches.
17567 The value &quot;Specific&quot; may be used when you want to limit the match
17568 to a specific folder (not just a specific type of folder), or to a list of
17569 specific folders.
17571 In order to match a specific folder you Select the &quot;Specific&quot;
17572 button <EM>AND</EM> fill in
17573 the name (or list of names) of
17574 the folder in the &quot;Folder List&quot; field.
17575 If the current folder is any of the folders in the list, that is considered
17576 a match.
17577 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17578 of the folder (like what appears in your configuration file) or, if the
17579 folder is one of your incoming folders, it may be the nickname you've given
17580 the folder.
17581 Here are a couple samples of specific folder names:
17583 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17585 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17587 The easiest way to fill in the &quot;Folder List&quot; field is to use
17588 the T command that is available when the &quot;Folder List&quot; line is
17589 highlighted.
17590 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17591 Current Folder Type is set to &quot;Specific&quot;, and any value that
17592 &quot;Folder List&quot; has is ignored unless the type
17593 is set to &quot;Specific&quot;.
17595 When reading a newsgroup, there may be a performance penalty
17596 incurred when collecting the information necessary to check a Pattern.
17597 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17598 For example, if you have Index Line Coloring rules that have Score Intervals
17599 defined then the scores for all the visible messages will need to be calculated.
17600 If some of your Scoring rules have 
17601 a Current Folder Type of
17602 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
17603 screen to draw more slowly when in a newsgroup.
17605 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17606 for more information on Patterns.
17608 Look <A HREF="h_edit_nav_cmds">here</A>
17609 to see the available Editing and Navigation commands.
17611 &lt;End of help on this topic&gt;
17612 </BODY>
17613 </HTML>
17614 ======= h_config_other_fldr_type =======
17615 <HTML>
17616 <HEAD>
17617 <TITLE>Current Folder Type Explained</TITLE>
17618 </HEAD>
17619 <BODY>
17620 <H1>Current Folder Type Explained</H1>
17622 The Current Folder Type is part of the rule's Pattern.
17623 It refers to the type of the folder being viewed.
17624 In order for a rule to be considered a match, the current folder must
17625 be of the type you set here.
17626 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17627 all what you might think.
17629 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17630 example, then
17631 that Pattern will only match if the current folder is a newsgroup.
17632 The value &quot;Specific&quot; may be used when you want to limit the match
17633 to a specific folder (not just a specific type of folder), or to a list of
17634 specific folders.
17636 In order to match a specific folder you Select the &quot;Specific&quot;
17637 button <EM>AND</EM> fill in
17638 the name (or list of names) of
17639 the folder in the &quot;Folder List&quot; field.
17640 If the current folder is any of the folders in the list, that is considered
17641 a match.
17642 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17643 of the folder (like what appears in your configuration file) or, if the
17644 folder is one of your incoming folders, it may be the nickname you've given
17645 the folder.
17646 Here are a couple samples of specific folder names:
17648 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17650 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17652 The easiest way to fill in the &quot;Folder List&quot; field is to use
17653 the T command that is available when the &quot;Folder List&quot; line is
17654 highlighted.
17655 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17656 Current Folder Type is set to &quot;Specific&quot;, and any value that
17657 &quot;Folder List&quot; has is ignored unless the type
17658 is set to &quot;Specific&quot;.
17660 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17661 for more information on Patterns.
17663 Look <A HREF="h_edit_nav_cmds">here</A>
17664 to see the available Editing and Navigation commands.
17666 &lt;End of help on this topic&gt;
17667 </BODY>
17668 </HTML>
17669 ======= h_config_incol_fldr_type =======
17670 <HTML>
17671 <HEAD>
17672 <TITLE>Current Folder Type Explained</TITLE>
17673 </HEAD>
17674 <BODY>
17675 <H1>Current Folder Type Explained</H1>
17677 The Current Folder Type is part of the Line Coloring rule's Pattern.
17678 It refers to the type of the folder for which the MESSAGE INDEX is
17679 being viewed.
17680 In order for a rule to be considered a match, the current folder must
17681 be of the type you set here.
17682 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17683 all what you might think.
17685 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17686 example, then
17687 that Pattern will only match if the current folder is a newsgroup and
17688 the rest of the Pattern matches.
17689 The value &quot;Specific&quot; may be used when you want to limit the match
17690 to a specific folder (not just a specific type of folder), or to a list of
17691 specific folders.
17693 In order to match a specific folder you Select the &quot;Specific&quot;
17694 button <EM>AND</EM> fill in
17695 the name (or list of names) of
17696 the folder in the &quot;Folder List&quot; field.
17697 If the current folder is any of the folders in the list, that is considered
17698 a match.
17699 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17700 of the folder (like what appears in your configuration file) or, if the
17701 folder is one of your incoming folders, it may be the nickname you've given
17702 the folder.
17703 Here are a couple samples of specific folder names:
17705 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17707 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17709 The easiest way to fill in the &quot;Folder List&quot; field is to use
17710 the T command that is available when the &quot;Folder List&quot; line is
17711 highlighted.
17712 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17713 Current Folder Type is set to &quot;Specific&quot;, and any value that
17714 &quot;Folder List&quot; has is ignored unless the type
17715 is set to &quot;Specific&quot;.
17717 When reading a newsgroup, there may be a performance penalty
17718 incurred when collecting the information necessary to check a Pattern.
17719 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17720 For example, a rule with a non-Normal Index Line Color
17721 and a Current Folder Type of
17722 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
17723 screen to draw more slowly when in a newsgroup.
17725 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17726 for more information on Patterns.
17728 Look <A HREF="h_edit_nav_cmds">here</A>
17729 to see the available Editing and Navigation commands.
17731 &lt;End of help on this topic&gt;
17732 </BODY>
17733 </HTML>
17734 ======= h_config_filt_fldr_type =======
17735 <HTML>
17736 <HEAD>
17737 <TITLE>Current Folder Type Explained</TITLE>
17738 </HEAD>
17739 <BODY>
17740 <H1>Current Folder Type Explained</H1>
17742 The Current Folder Type is part of the Filtering rule's Pattern.
17743 It refers to the type of the folder for which the filtering is being done.
17744 In order for a rule to be considered a match, the current folder must
17745 be of the type you set here.
17746 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17747 all what you might think.
17749 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17750 example, then
17751 that Pattern will only match if the current folder is a newsgroup and
17752 the rest of the Pattern matches.
17753 The value &quot;Specific&quot; may be used when you want to limit the match
17754 to a specific folder (not just a specific type of folder), or to a list of
17755 specific folders.
17757 In order to match a specific folder you Select the &quot;Specific&quot;
17758 button <EM>AND</EM> fill in
17759 the name (or list of names) of
17760 the folder in the &quot;Folder List&quot; field.
17761 If the current folder is any of the folders in the list, that is considered
17762 a match.
17763 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17764 of the folder (like what appears in your configuration file) or, if the
17765 folder is one of your incoming folders, it may be the nickname you've given
17766 the folder.
17767 Here are a couple samples of specific folder names:
17769 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17771 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17773 The easiest way to fill in the &quot;Folder List&quot; field is to use
17774 the T command that is available when the &quot;Folder List&quot; line is
17775 highlighted.
17776 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17777 Current Folder Type is set to &quot;Specific&quot;, and any value that
17778 &quot;Folder List&quot; has is ignored unless the type
17779 is set to &quot;Specific&quot;.
17781 When reading a newsgroup, there may be a performance penalty
17782 incurred when collecting the information necessary to check a Pattern.
17783 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17784 For example, a rule with a Current Folder Type of either
17785 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
17786 more slowly when opening a newsgroup.
17788 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17789 for more information on Patterns.
17791 Look <A HREF="h_edit_nav_cmds">here</A>
17792 to see the available Editing and Navigation commands.
17794 &lt;End of help on this topic&gt;
17795 </BODY>
17796 </HTML>
17797 ======= h_config_role_stat_imp =======
17798 <HTML>
17799 <HEAD>
17800 <TITLE>Message Important Status Explained</TITLE>
17801 </HEAD>
17802 <BODY>
17803 <H1>Message Important Status Explained</H1>
17805 This part of the Pattern may have one of three possible values.
17806 The default value is &quot;Don't care&quot;, which matches any message.
17807 The other two values are &quot;Yes&quot;, which means the message must be
17808 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
17809 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
17810 to be a match.
17812 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17813 for more information on Patterns.
17815 Look <A HREF="h_edit_nav_cmds">here</A>
17816 to see the available Editing and Navigation commands.
17818 &lt;End of help on this topic&gt;
17819 </BODY>
17820 </HTML>
17821 ======= h_config_role_stat_new =======
17822 <HTML>
17823 <HEAD>
17824 <TITLE>Message New Status Explained</TITLE>
17825 </HEAD>
17826 <BODY>
17827 <H1>Message New Status Explained</H1>
17829 This part of the Pattern may have one of three possible values.
17830 The default value is &quot;Don't care&quot;, which matches any message.
17831 The other two values are &quot;Yes&quot;, which means the message must be
17832 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
17833 means the message must <EM>not</EM> be &quot;New&quot; in order
17834 to be a match.
17835 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
17836 same as <EM>Seen</EM>.
17838 The nomenclature for New and Recent is a bit confusing:
17840 New means that the message is Unseen.
17841 It could have been in your mailbox for a long time but if you haven't looked
17842 at it, it is still considered New.
17843 That matches the default Alpine index display that shows an N for such a
17844 message.
17846 Recent means that the message was added to this folder since the last time
17847 you opened the folder.
17848 Alpine also shows an N by default for these types of messages.
17849 If you were to run two copies of Alpine that opened a folder one right after
17850 the other, a message would only show up as Recent in (at most) the first
17851 Alpine session.
17853 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17854 for more information on Patterns.
17856 Look <A HREF="h_edit_nav_cmds">here</A>
17857 to see the available Editing and Navigation commands.
17859 &lt;End of help on this topic&gt;
17860 </BODY>
17861 </HTML>
17862 ======= h_config_role_stat_recent =======
17863 <HTML>
17864 <HEAD>
17865 <TITLE>Message Recent Status Explained</TITLE>
17866 </HEAD>
17867 <BODY>
17868 <H1>Message Recent Status Explained</H1>
17870 This part of the Pattern may have one of three possible values.
17871 The default value is &quot;Don't care&quot;, which matches any message.
17872 The other two values are &quot;Yes&quot;, which means the message must be
17873 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
17874 means the message must <EM>not</EM> be &quot;Recent&quot; in order
17875 to be a match.
17876 &quot;Recent&quot; means that the message was added to the folder since
17877 the last time the folder was opened.
17878 If more than one mail client has the folder opened, the message will
17879 appear to be &quot;Recent&quot; to only one of the clients.
17881 The nomenclature for New and Recent is a bit confusing:
17883 New means that the message is Unseen.
17884 It could have been in your mailbox for a long time but if you haven't looked
17885 at it, it is still considered New.
17886 That matches the default Alpine index display that shows an N for such a
17887 message.
17889 Recent means that the message was added to this folder since the last time
17890 you opened the folder.
17891 Alpine also shows an N by default for these types of messages.
17892 If you were to run two copies of Alpine that opened a folder one right after
17893 the other, a message would only show up as Recent in (at most) the first
17894 Alpine session.
17896 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17897 for more information on Patterns.
17899 Look <A HREF="h_edit_nav_cmds">here</A>
17900 to see the available Editing and Navigation commands.
17902 &lt;End of help on this topic&gt;
17903 </BODY>
17904 </HTML>
17905 ======= h_config_role_stat_del =======
17906 <HTML>
17907 <HEAD>
17908 <TITLE>Message Deleted Status Explained</TITLE>
17909 </HEAD>
17910 <BODY>
17911 <H1>Message Deleted Status Explained</H1>
17913 This part of the Pattern may have one of three possible values.
17914 The default value is &quot;Don't care&quot;, which matches any message.
17915 The other two values are &quot;Yes&quot;, which means the message must be
17916 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
17917 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
17918 to be a match.
17920 If you are thinking of using this part of the Pattern as a way to prevent
17921 messages from being filtered more than once in a Filter Pattern,
17922 take a look at the Filter Option
17923 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
17924 instead.
17925 It should work better than using this field since it will hide the filtered
17926 messages even if they are already Deleted.
17927 That option is at the bottom of the Filter configuration screen.
17929 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17930 for more information on Patterns.
17932 Look <A HREF="h_edit_nav_cmds">here</A>
17933 to see the available Editing and Navigation commands.
17935 &lt;End of help on this topic&gt;
17936 </BODY>
17937 </HTML>
17938 ======= h_config_role_stat_ans =======
17939 <HTML>
17940 <HEAD>
17941 <TITLE>Message Answered Status Explained</TITLE>
17942 </HEAD>
17943 <BODY>
17944 <H1>Message Answered Status Explained</H1>
17946 This part of the Pattern may have one of three possible values.
17947 The default value is &quot;Don't care&quot;, which matches any message.
17948 The other two values are &quot;Yes&quot;, which means the message must be
17949 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
17950 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
17951 to be a match.
17953 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17954 for more information on Patterns.
17956 Look <A HREF="h_edit_nav_cmds">here</A>
17957 to see the available Editing and Navigation commands.
17959 &lt;End of help on this topic&gt;
17960 </BODY>
17961 </HTML>
17962 ======= h_config_role_abookfrom =======
17963 <HTML>
17964 <HEAD>
17965 <TITLE>Address in Address Book Explained</TITLE>
17966 </HEAD>
17967 <BODY>
17968 <H1>Address in Address Book Explained</H1>
17970 This option gives you a way to match messages that contain an address
17971 that is in one of your address books.
17972 Only the simple entries in your address books are searched.
17973 Address book distribution lists are ignored!
17975 This part of the Pattern may have one of five possible values.
17976 The default value is &quot;Don't care&quot;, which matches any message.
17977 The value &quot;Yes, in any address book&quot; means at least one of the addresses
17978 from the message must be in at least one of your
17979 address books in order to be a match.
17980 The value &quot;No, not in any address book&quot;
17981 means none of the addresses may
17982 be in any of your address books in order to be a match.
17984 The values &quot;Yes, in specific address books&quot; and
17985 &quot;No, not in any of specific address books&quot; are similar but instead
17986 of depending on all address books you are allowed to give a list of address
17987 books to look in.
17988 Usually this would be a single address book but it may be a
17989 list of address books as well.
17990 For each of these &quot;specific&quot; address book options you Select which
17991 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
17992 name (or list of names) of the address book in the
17993 &quot;Abook List&quot; field.
17994 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
17995 The easiest way to fill in the Abook List field it to use
17996 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
17997 line is highlighted.
17998 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
17999 option is set to one of the two &quot;Specific&quot;, values.
18001 The addresses from the message that are checked for are determined by the
18002 setting you have for &quot;Types of addresses to check for in address book&quot;.
18003 If you set this to &quot;From&quot; the From address from the message will
18004 be looked up in the address book.
18005 If you set it to &quot;To&quot; instead then the To addresses will be used.
18006 If any of the To addresses are in the address book then it is considered
18007 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
18008 You could set it to both From and To, in which case all of the From and To
18009 addresses are used.
18010 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
18011 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
18012 exists or the From address if there is no Reply-To address.
18013 Same for the Sender address.
18015 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18016 for more information on Patterns.
18018 Look <A HREF="h_edit_nav_cmds">here</A>
18019 to see the available Editing and Navigation commands.
18021 &lt;End of help on this topic&gt;
18022 </BODY>
18023 </HTML>
18024 ======= h_config_inabook_from =======
18025 <HTML>
18026 <HEAD>
18027 <TITLE>From</TITLE>
18028 </HEAD>
18029 <BODY>
18030 <H1>From</H1>
18032 Setting the From line will cause the address from the From header line
18033 of the message to be checked for in the address book.
18035 &lt;End of help on this topic&gt;
18036 </BODY>
18037 </HTML>
18038 ======= h_config_inabook_replyto =======
18039 <HTML>
18040 <HEAD>
18041 <TITLE>Reply-To</TITLE>
18042 </HEAD>
18043 <BODY>
18044 <H1>Reply-To</H1>
18046 Setting the Reply-To line will cause the address from the Reply-To header line
18047 of the message to be checked for in the address book.
18048 However, if there is no Reply-To header line in the message the From header
18049 line will be used instead.
18050 We understand this is dumb but we don't have an easy way around it.
18052 &lt;End of help on this topic&gt;
18053 </BODY>
18054 </HTML>
18055 ======= h_config_inabook_sender =======
18056 <HTML>
18057 <HEAD>
18058 <TITLE>Sender</TITLE>
18059 </HEAD>
18060 <BODY>
18061 <H1>Sender</H1>
18063 Setting the Sender line will cause the address from the Sender header line
18064 of the message to be checked for in the address book.
18065 However, if there is no Sender header line in the message the From header
18066 line will be used instead.
18067 We understand this is dumb but we don't have an easy way around it.
18069 &lt;End of help on this topic&gt;
18070 </BODY>
18071 </HTML>
18072 ======= h_config_inabook_to =======
18073 <HTML>
18074 <HEAD>
18075 <TITLE>To</TITLE>
18076 </HEAD>
18077 <BODY>
18078 <H1>To</H1>
18080 Setting the To line will cause the address from the To header line
18081 of the message to be checked for in the address book.
18083 &lt;End of help on this topic&gt;
18084 </BODY>
18085 </HTML>
18086 ======= h_config_inabook_cc =======
18087 <HTML>
18088 <HEAD>
18089 <TITLE>CC</TITLE>
18090 </HEAD>
18091 <BODY>
18092 <H1>CC</H1>
18094 Setting the CC line will cause the address from the CC header line
18095 of the message to be checked for in the address book.
18097 &lt;End of help on this topic&gt;
18098 </BODY>
18099 </HTML>
18100 ======= h_config_role_stat_8bitsubj =======
18101 <HTML>
18102 <HEAD>
18103 <TITLE>Raw 8-bit in Subject Explained</TITLE>
18104 </HEAD>
18105 <BODY>
18106 <H1>Raw 8-bit in Subject Explained</H1>
18108 It seems that lots of unwanted email contains unencoded 8-bit characters
18109 in the Subject.
18110 Normally, characters with the 8th bit set are not allowed in the Subject
18111 header unless they are MIME-encoded.
18112 This option gives you a way to match messages that have Subjects that
18113 contain unencoded 8-bit characters.
18115 This part of the Pattern may have one of three possible values.
18116 The default value is &quot;Don't care&quot;, which matches any message.
18117 The other two values are &quot;Yes&quot;, which means the Subject of
18118 the message must contain unencoded 8-bit characters (characters with the
18119 most significant bit set)
18120 in order to be a match; or &quot;No&quot;, which
18121 means the Subject must <EM>not</EM>
18122 contain unencoded 8-bit characters in order to be a match.
18124 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18125 for more information on Patterns.
18127 Look <A HREF="h_edit_nav_cmds">here</A>
18128 to see the available Editing and Navigation commands.
18130 &lt;End of help on this topic&gt;
18131 </BODY>
18132 </HTML>
18133 ======= h_config_role_bom =======
18134 <HTML>
18135 <HEAD>
18136 <TITLE>Beginning of Month</TITLE>
18137 </HEAD>
18138 <BODY>
18139 <H1>Beginning of Month</H1>
18141 This option gives you a limited ability to take different actions depending on whether
18142 this is the first time Alpine has been run this month or not.
18143 Though it would be nice to have such an option available, this is not the
18144 same as whether or not this is the first time a paricular folder has been
18145 opened this month.
18146 If you want some action (probably Filtering) to take place in a folder each
18147 month, then you will need to be sure that the folder is opened during the
18148 first Alpine session of the month in order for this option to be helpful.
18150 This part of the Pattern may have one of three possible values.
18151 The default value is &quot;Don't care&quot;, which matches any message.
18152 The other two values are &quot;Yes&quot;, which means this is the first
18153 time Alpine has been run this month;
18154 or &quot;No&quot;, which
18155 means this is not the first time Alpine has been run this month.
18157 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18158 for more information on Patterns.
18160 Here are some technical details.
18161 The way that Alpine decides if it is the beginning of the month or not is
18162 to compare today's date with the date stored in the
18163 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18164 variable in the config file.
18165 If the month of today's date is later than the month stored in the variable,
18166 then this is considered to be the first time you have run Alpine this month, and
18167 that turns the Beginning of the Month option on.
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_boy =======
18176 <HTML>
18177 <HEAD>
18178 <TITLE>Beginning of Year</TITLE>
18179 </HEAD>
18180 <BODY>
18181 <H1>Beginning of Year</H1>
18183 This option gives you a limited ability to take different actions depending on whether
18184 this is the first time Alpine has been run this year or not.
18185 Though it would be nice to have such an option available, this is not the
18186 same as whether or not this is the first time a paricular folder has been
18187 opened this year.
18188 If you want some action (probably Filtering) to take place in a folder each
18189 year, then you will need to be sure that the folder is opened during the
18190 first Alpine session of the year in order for this option to be helpful.
18192 This part of the Pattern may have one of three possible values.
18193 The default value is &quot;Don't care&quot;, which matches any message.
18194 The other two values are &quot;Yes&quot;, which means this is the first
18195 time Alpine has been run this year;
18196 or &quot;No&quot;, which
18197 means this is not the first time Alpine has been run this year.
18199 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18200 for more information on Patterns.
18202 Here are some technical details.
18203 The way that Alpine decides if it is the beginning of the year or not is
18204 to compare today's date with the date stored in the
18205 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18206 variable in the config file.
18207 If the year of today's date is later than the year stored in the variable,
18208 then this is considered to be the first time you have run Alpine this year, and
18209 that turns the Beginning of the Year option on.
18211 Look <A HREF="h_edit_nav_cmds">here</A>
18212 to see the available Editing and Navigation commands.
18214 &lt;End of help on this topic&gt;
18215 </BODY>
18216 </HTML>
18217 ======= h_config_role_inick =======
18218 <HTML>
18219 <HEAD>
18220 <TITLE>Initialize Values From Role Explained</TITLE>
18221 </HEAD>
18222 <BODY>
18223 <H1>Initialize Values From Role Explained</H1>
18225 This is a power user feature.
18226 You will usually want to leave this field empty.
18227 The value of this field is the nickname of another one of your roles.
18228 The Action values from that other role
18229 are used as the initial values of the Action items for this role.
18230 If you put something in any of the action fields for this role, that will
18231 override whatever was in the corresponding field of the initializer role.
18233 You might use this field if the &quot;Action&quot; part of one of your roles
18234 is something you want to use in more than one role.
18235 Instead of filling in those action values again for each role, you
18236 may give the nickname of the role where the values are filled in.
18237 It's just a shortcut way to define Role Actions.
18239 Here's an example to help explain how this works.
18240 Suppose you have a role with nickname &quot;role1&quot; and role1 has
18241 (among other things)
18243 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
18245 set.
18246 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
18247 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
18248 from role1 by default (and any of the other inheritable action values
18249 that are set).
18250 So if role2 had
18252 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
18254 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
18255 However, if role2 had
18257 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
18259 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
18261 If you wish,
18262 you may choose a nickname from your list of roles by using the
18263 &quot;T&quot; command.
18264 If the role you are using to initialize also has a role it initializes from,
18265 then that initialization happens first.
18266 That is, inheritance works as expected with the grandparent and
18267 great-grandparent (and so on) roles having the expected effect.
18269 Look <A HREF="h_edit_nav_cmds">here</A>
18270 to see the available Editing and Navigation commands.
18272 &lt;End of help on this topic&gt;
18273 </BODY>
18274 </HTML>
18275 ======= h_config_role_setfrom =======
18276 <HTML>
18277 <HEAD>
18278 <TITLE>Set From Explained</TITLE>
18279 </HEAD>
18280 <BODY>
18281 <H1>Set From Explained</H1>
18283 This describes part of the action to be taken if the Pattern for this
18284 role is a match.
18285 This field consists of a single address that will be used as the From
18286 address on the message you are sending.
18287 This should be a fully-qualified address like
18289 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18291 or just
18293 <CENTER><SAMP>user@domain</SAMP></CENTER>
18295 If you wish,
18296 you may choose an address from your address book with the
18297 &quot;T&quot; command.
18299 If this is left blank, then your normal From address will be used.
18301 You may also find it useful to add the changed From address to the
18302 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
18303 configuration option.
18305 Look <A HREF="h_edit_nav_cmds">here</A>
18306 to see the available Editing and Navigation commands.
18308 &lt;End of help on this topic&gt;
18309 </BODY>
18310 </HTML>
18311 ======= h_config_role_setreplyto =======
18312 <HTML>
18313 <HEAD>
18314 <TITLE>Set Reply-To Explained</TITLE>
18315 </HEAD>
18316 <BODY>
18317 <H1>Set Reply-To Explained</H1>
18319 This describes part of the action to be taken if the Pattern for this
18320 role is a match.
18321 This field consists of a single address that will be used as the Reply-To
18322 address on the message you are sending.
18323 This may be a fully-qualified address like
18325 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18327 or just
18329 <CENTER><SAMP>user@domain</SAMP></CENTER>
18331 If you wish,
18332 you may choose an address from your address book with the
18333 &quot;T&quot; command.
18335 If this is left blank, then there won't be a Reply-To address unless
18336 you have configured one specially with the
18337 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
18338 configuration option.
18340 Look <A HREF="h_edit_nav_cmds">here</A>
18341 to see the available Editing and Navigation commands.
18343 &lt;End of help on this topic&gt;
18344 </BODY>
18345 </HTML>
18346 ======= h_config_role_setfcc =======
18347 <HTML>
18348 <HEAD>
18349 <TITLE>Set Fcc Explained</TITLE>
18350 </HEAD>
18351 <BODY>
18352 <H1>Set Fcc Explained</H1>
18354 This describes part of the action to be taken if the Pattern for this
18355 role is a match.
18356 This field consists of a single folder name that will be used in
18357 the Fcc field of the message you are sending.
18358 You may put anything here that you would normally type into the Fcc
18359 field from the composer.
18361 In addition, an fcc of &quot;&quot; (two double quotation marks) means
18362 no Fcc.
18364 A blank field here means that Alpine will use its normal rules for deciding
18365 the default value of the Fcc field.
18366 For many roles, perhaps most, it may make more sense for you to use the
18367 other Alpine facilities for setting the Fcc.
18368 In particular, if you want the Fcc to depend on who you are sending the
18369 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
18370 is probably more useful.
18371 In that case, you would want to leave the Fcc field here blank.
18372 However, if you have a role that depends on who the message you are replying
18373 to was From, or what address that message was sent to;
18374 then it might make sense to set the Fcc for that role here.
18376 If you wish,
18377 you may choose a folder from your folder collections by using the
18378 &quot;T&quot; command.
18380 Look <A HREF="h_edit_nav_cmds">here</A>
18381 to see the available Editing and Navigation commands.
18383 &lt;End of help on this topic&gt;
18384 </BODY>
18385 </HTML>
18386 ======= h_config_role_usesmtp =======
18387 <HTML>
18388 <HEAD>
18389 <TITLE>Use SMTP Server Explained</TITLE>
18390 </HEAD>
18391 <BODY>
18392 <H1>Use SMTP Server Explained</H1>
18394 This describes part of the action to be taken if the Pattern for this
18395 role is a match.
18396 If this field has a value, then it will be used as the SMTP server
18397 to send mail when this role is being used (unless the SMTP server variable
18398 is set in the system-wide fixed configuration file).
18399 It has the same semantics as the
18400 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18401 variable in the Setup/Config screen.
18403 If you are using this to post from home when you are at home and from
18404 work when you are at work you need to be careful about postponing messages.
18405 When you postpone a composition that was using a role with this variable
18406 set, the SMTP server list will be saved
18407 with the postponed composition.
18408 It cannot be changed later.
18409 Because of this, you may want to make this a list of SMTP servers
18410 with the preferred server at the front of the list and alternate servers
18411 later in the list.
18412 In your &quot;Home&quot; role you would put the home SMTP server first and
18413 the work SMTP server last.
18414 In your &quot;Work&quot; role you would put the work SMTP server first and
18415 the home SMTP server last.
18416 Then if you start a composition as &quot;Work&quot;, postpone
18417 it, and then later resume it from home the work SMTP server will fail but
18418 the home SMTP server later in the list will succeed.
18420 You may be able to simplify things by making the regular
18421 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18422 variable in the Setup/Config screen a list instead of using roles
18423 to set the SMTP server.
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_usenntp =======
18433 <HTML>
18434 <HEAD>
18435 <TITLE>Use NNTP Server Explained</TITLE>
18436 </HEAD>
18437 <BODY>
18438 <H1>Use NNTP Server Explained</H1>
18440 This describes part of the action to be taken if the Pattern for this
18441 role is a match.
18442 If this field has a value, then it will be used as the NNTP server
18443 to post to newsgroups when this role is being used (unless the NNTP server
18444 variable
18445 is set in the system-wide fixed configuration file).
18446 It has the same semantics as the
18447 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18448 variable in the Setup/Config screen.
18450 This role setting can facilitate posting to the right nntp server for someone
18451 who reads news from various news sources.  The feature
18452 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
18453 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
18454 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
18455 nntp servers for roles may be more desirable for some people.
18457 If you are using this to post from home when you are at home and from
18458 work when you are at work you need to be careful about postponing messages.
18459 When you postpone a composition that was using a role with this variable
18460 set, the NNTP server list will be saved
18461 with the postponed composition.
18462 It cannot be changed later.
18463 Because of this, you may want to make this a list of NNTP servers
18464 with the preferred server at the front of the list and alternate servers
18465 later in the list.
18466 In your &quot;Home&quot; role you would put the home NNTP server first and
18467 the work NNTP server last.
18468 In your &quot;Work&quot; role you would put the work NNTP server first and
18469 the home NNTP server last.
18470 Then if you start a composition as &quot;Work&quot;, postpone
18471 it, and then later resume it from home the work NNTP server will fail but
18472 the home NNTP server later in the list will succeed.
18474 You may be able to simplify things by making the regular
18475 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18476 variable in the Setup/Config screen a list instead of using roles
18477 to set the NNTP server.
18480 Look <A HREF="h_edit_nav_cmds">here</A>
18481 to see the available Editing and Navigation commands.
18483 &lt;End of help on this topic&gt;
18484 </BODY>
18485 </HTML>
18486 ======= h_config_role_setotherhdr =======
18487 <HTML>
18488 <HEAD>
18489 <TITLE>Set Other Headers Explained</TITLE>
18490 </HEAD>
18491 <BODY>
18492 <H1>Set Other Headers Explained</H1>
18494 This describes part of the action to be taken if the Pattern for this
18495 role is a match.
18496 This field gives you a way to set values for headers besides
18497 &quot;From&quot; and &quot;Reply-To&quot;.
18498 If you want to set either of those, use the specific
18499 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
18501 This field is similar to the
18502 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
18503 Each header you specify here must include the header tag 
18504 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
18505 and may optionally include a value for that header.
18506 In order to see these headers when you compose using this role you 
18507 must use the rich header
18508 <!--chtml if pinemode="function_key"-->(F5)
18509 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
18510 Here's an example that shows how you might set the To address.
18512 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
18514 Headers set in this way are different from headers set with the
18515 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
18516 will replace any value that already exists.
18517 For example, if you are Replying to a message there will already be at
18518 least one address in the To header (the address you are Replying to).
18519 However, if you Reply using a role that sets the To header, that role's
18520 To header value will be used instead.
18522 Limitation: Because commas are used to separate the list of
18523 Other Headers, it is not possible to have the value of a
18524 header contain a comma;
18525 nor is there currently an &quot;escape&quot; mechanism provided
18526 to make this work.
18528 Look <A HREF="h_edit_nav_cmds">here</A>
18529 to see the available Editing and Navigation commands.
18531 &lt;End of help on this topic&gt;
18532 </BODY>
18533 </HTML>
18534 ======= h_config_role_setlitsig =======
18535 <HTML>
18536 <HEAD>
18537 <TITLE>Set Literal Signature Explained</TITLE>
18538 </HEAD>
18539 <BODY>
18540 <H1>Set Literal Signature Explained</H1>
18542 This describes part of the action to be taken if the Pattern for this
18543 role is a match.
18544 This field contains the actual text for your signature, as opposed to
18545 the name of a file containing your signature.
18546 If this is defined it takes precedence over any value set in the
18547 &quot;Set Signature&quot; field.
18549 This is simply a different way to store the signature.
18550 The signature is stored inside your Alpine configuration file instead of in
18551 a separate file.
18552 Tokens work the same way they do with
18553 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
18554 help text there for more information.
18557 The two character sequence &#92;n (backslash followed by
18558 the character n) will be used to signify a line-break in your signature.
18559 You don't have to enter the &#92;n, but it will be visible in the
18560 CHANGE THIS ROLE RULE window after you are done editing the signature.
18562 Look <A HREF="h_edit_nav_cmds">here</A>
18563 to see the available Editing and Navigation commands.
18565 &lt;End of help on this topic&gt;
18566 </BODY>
18567 </HTML>
18568 ======= h_config_role_setsig =======
18569 <HTML>
18570 <HEAD>
18571 <TITLE>Set Signature Explained</TITLE>
18572 </HEAD>
18573 <BODY>
18574 <H1>Set Signature Explained</H1>
18576 This describes part of the action to be taken if the Pattern for this
18577 role is a match.
18579 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
18580 option from Setup/Config
18581 or the &quot;Set LiteralSig&quot; option for this role are defined,
18582 then this option will be ignored.
18583 You can tell that that is the case because the value of this
18584 option will show up as
18586 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
18588 You may either use all Literal Signatures (signatures stored in your
18589 configuration file) throughout Alpine, or all signature files.
18590 You can't mix the two.
18592 This field consists of a filename that will be used as the signature
18593 file when using this role.
18595 If the filename is followed by a vertical bar (|) then instead
18596 of reading the contents of the file the file is assumed to be a
18597 program that will produce the text to be used on its standard output.
18598 The program can't have any arguments and doesn't receive any input from Alpine,
18599 but the rest of the processing works as if the contents came from a file.
18601 Instead of storing the data in a local file, the
18602 signature data may be stored remotely in an IMAP folder.
18603 In order to do this, 
18604 you must use a remote name for the signature.
18605 A remote signature name might look like:
18607 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
18610 The syntax used here is the same as the syntax used for a remote
18611 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18612 Note that you may not access an existing signature file remotely,
18613 you have to create a new <EM>folder</EM> that contains the signature data.
18614 If the name you use here for the signature data is a remote name, then when
18615 you edit the file using the &quot;F&quot; command the data will
18616 be saved remotely in the folder.
18617 You aren't required to do anything special to create the folder, it
18618 gets created if you use a remote name.
18621 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18622 the name of the file) you have specified.
18623 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18625 Besides containing regular text, a signature file may also
18626 contain (or a signature program may produce) tokens that are replaced with text
18627 that depends on the message you are replying to or forwarding.
18628 The tokens all look like _word_ (a word surrounded by underscores).
18629 For example, if the token
18631 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18633 is included in the text of the signature file, then when you reply to
18634 or forward a message, the token will be replaced with the actual date
18635 the message you are replying to or forwarding was sent.
18637 If you use a role that has a signature file for a plain composition
18638 (that is, not a reply or forward) then there is no original message, so
18639 any tokens that depend on the message will be replaced with nothing.
18640 So if you want a signature file to be useful for new compositions it
18641 shouldn't include any of the tokens that depend on the message being
18642 replied to or forwarded.
18644 The list of available tokens is
18645 <A HREF="h_index_tokens">here</A>.
18647 Actually, for the adventurous, there is a way to conditionally include text based
18648 on whether or not a token would result in specific replacement text.
18649 For example, you could include some text based on whether or not
18650 the _NEWS_ token would result in any newsgroups if it was used.
18651 It's explained in detail
18652 <A HREF="h_reply_token_conditionals">here</A>.
18654 In the very unlikely event that you want to include a literal token in
18655 a signature file, you must precede it with a backslash character.
18656 For example, to include the literal text _DATE_ you must actually use
18657 &#92;_DATE_.
18658 It is not possible to have a literal backslash followed by an expanded token.
18660 A blank field here means that Alpine will use its normal rules for deciding
18661 which file (if any) to use for the signature file.
18663 An alternate method for storing the signature is available in
18664 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
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_role_settempl =======
18673 <HTML>
18674 <HEAD>
18675 <TITLE>Set Template Explained</TITLE>
18676 </HEAD>
18677 <BODY>
18678 <H1>Set Template Explained</H1>
18680 This describes part of the action to be taken if the Pattern for this
18681 role is a match.
18682 This field consists of a filename that will be used as the template
18683 file when using this role.
18684 The template file is a file that is included at the top of the message you
18685 are composing.
18687 If the filename is followed by a vertical bar (|) then instead
18688 of reading the contents of the file the file is assumed to be a
18689 program that will produce the text to be used on its standard output.
18690 The program can't have any arguments and doesn't receive any input from Alpine,
18691 but the rest of the processing works as if the contents came from a file.
18693 Instead of storing the data in a local file, the
18694 template may be stored remotely in an IMAP folder.
18695 In order to do this, 
18696 you must use a remote name for the template.
18697 A remote template name might look like:
18699 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
18702 The syntax used here is the same as the syntax used for a remote
18703 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18704 Note that you may not access an existing template file remotely,
18705 you have to create a new <EM>folder</EM> that contains the template data.
18706 If the name you use here for the template is a remote name, then when
18707 you edit the file using the &quot;F&quot; command the data will
18708 be saved remotely in the folder.
18709 You aren't required to do anything special to create the folder, it
18710 gets created if you use a remote name.
18712 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18713 the name of the file) you have specified.
18714 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18716 Besides containing regular text, the template file may also
18717 contain (or a template file program may produce) tokens that are replaced with text
18718 that depends on the message you are replying to or forwarding.
18719 The tokens all look like _word_ (a word surrounded by underscores).
18720 For example, if the token
18722 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18724 is included in the text of the template file, then when you reply to
18725 or forward a message, the token will be replaced with the actual date
18726 the message you are replying to or forwarding was sent.
18728 If you use a role that has a template file for a plain composition
18729 (that is, not a reply or forward) then there is no original message, so
18730 any tokens that depend on the message will be replaced with nothing.
18731 So if you want a template file to be useful for new compositions it
18732 shouldn't include any of the tokens that depend on the message being
18733 replied to or forwarded.
18735 The list of available tokens is
18736 <A HREF="h_index_tokens">here</A>.
18738 Actually, for the adventurous, there is a way to conditionally include text based
18739 on whether or not a token would result in specific replacement text.
18740 For example, you could include some text based on whether or not
18741 the _NEWS_ token would result in any newsgroups if it was used.
18742 It's explained in detail
18743 <A HREF="h_reply_token_conditionals">here</A>.
18745 In the very unlikely event that you want to include a literal token in
18746 a template file, you must precede it with a backslash character.
18747 For example, to include the literal text _DATE_ you must actually use
18748 &#92;_DATE_.
18749 It is not possible to have a literal backslash followed by an expanded token.
18751 A blank template field means that Alpine will not use a template file when
18752 this role is being used.
18754 Look <A HREF="h_edit_nav_cmds">here</A>
18755 to see the available Editing and Navigation commands.
18757 &lt;End of help on this topic&gt;
18758 </BODY>
18759 </HTML>
18760 ======= h_config_filt_stat_imp =======
18761 <HTML>
18762 <HEAD>
18763 <TITLE>Set Important Status Explained</TITLE>
18764 </HEAD>
18765 <BODY>
18766 <H1>Set Important Status Explained</H1>
18768 This describes part of the action to be taken if the Pattern for this
18769 filter is a match.
18770 If set to &quot;Don't change it&quot; then this does nothing.
18771 If set to &quot;Set this state&quot; then the Important flag is set
18772 for the matching message.
18773 If set to &quot;Clear this state&quot; then the Important flag is cleared
18774 for the matching message.
18775 The important flag usually causes an asterisk to show up in the MESSAGE
18776 INDEX.
18777 It may also be useful when selecting a set of messages
18778 with the Select command.
18780 Look <A HREF="h_edit_nav_cmds">here</A>
18781 to see the available Editing and Navigation commands.
18783 &lt;End of help on this topic&gt;
18784 </BODY>
18785 </HTML>
18786 ======= h_config_filt_stat_new =======
18787 <HTML>
18788 <HEAD>
18789 <TITLE>Set New Status Explained</TITLE>
18790 </HEAD>
18791 <BODY>
18792 <H1>Set New Status Explained</H1>
18794 This describes part of the action to be taken if the Pattern for this
18795 filter is a match.
18796 If set to &quot;Don't change it&quot; then this does nothing.
18797 If set to &quot;Set this state&quot; then the
18798 matching message is marked New.
18799 If set to &quot;Clear this state&quot; then the
18800 matching message is marked Seen.
18802 Look <A HREF="h_edit_nav_cmds">here</A>
18803 to see the available Editing and Navigation commands.
18805 &lt;End of help on this topic&gt;
18806 </BODY>
18807 </HTML>
18808 ======= h_config_filt_stat_ans =======
18809 <HTML>
18810 <HEAD>
18811 <TITLE>Set Answered Status Explained</TITLE>
18812 </HEAD>
18813 <BODY>
18814 <H1>Set Answered Status Explained</H1>
18816 This describes part of the action to be taken if the Pattern for this
18817 filter is a match.
18818 If set to &quot;Don't change it&quot; then this does nothing.
18819 If set to &quot;Set this state&quot; then the Answered flag is set
18820 for the matching message.
18821 If set to &quot;Clear this state&quot; then the Answered flag is cleared
18822 for the matching message.
18824 Look <A HREF="h_edit_nav_cmds">here</A>
18825 to see the available Editing and Navigation commands.
18827 &lt;End of help on this topic&gt;
18828 </BODY>
18829 </HTML>
18830 ======= h_config_filt_stat_del =======
18831 <HTML>
18832 <HEAD>
18833 <TITLE>Set Deleted Status Explained</TITLE>
18834 </HEAD>
18835 <BODY>
18836 <H1>Set Deleted Status Explained</H1>
18838 This describes part of the action to be taken if the Pattern for this
18839 filter is a match.
18840 If set to &quot;Don't change it&quot; then this does nothing.
18841 If set to &quot;Set this state&quot; then the
18842 matching message is marked Deleted.
18843 If set to &quot;Clear this state&quot; then the
18844 matching message is marked UnDeleted.
18846 You should not use this option unless you are prepared to have matching
18847 messages expunged from the folder permanently.
18848 For example, if you type the Expunge command, this filter is applied
18849 before the expunge, so matching messages will be marked Deleted and then
18850 will be permanently expunged from the folder.
18851 However, since the index isn't redrawn in between the time that the message
18852 is marked Deleted and the time that you are asked to expunge, the only
18853 indication that you are expunging the message comes in the number of messages
18854 being expunged.
18855 The same thing may happen when you close a folder.
18856 It is also possible that an expunge not initiated by you will
18857 delete matching messages.
18859 Look <A HREF="h_edit_nav_cmds">here</A>
18860 to see the available Editing and Navigation commands.
18862 &lt;End of help on this topic&gt;
18863 </BODY>
18864 </HTML>
18865 ======= h_config_role_scoreval =======
18866 <HTML>
18867 <HEAD>
18868 <TITLE>Score Value Explained</TITLE>
18869 </HEAD>
18870 <BODY>
18871 <H1>Score Value Explained</H1>
18873 A message's score is the sum of the Score Values from all of the Scoring rules
18874 with Patterns that match the message.
18875 The value you give here is the Score Value associated with this rule.
18876 A Score Value is an integer between -100 and 100, with the default
18877 value of zero.
18879 Alternatively, if the
18880 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
18881 field is defined
18882 (on the line right below the &quot;Score Value&quot; field)
18883 then the &quot;Score Value&quot; is ignored and
18884 the &quot;Score From Header&quot; field is used instead.
18886 Look <A HREF="h_edit_nav_cmds">here</A>
18887 to see the available Editing and Navigation commands.
18889 &lt;End of help on this topic&gt;
18890 </BODY>
18891 </HTML>
18892 ======= h_config_role_scorehdrtok =======
18893 <HTML>
18894 <HEAD>
18895 <TITLE>Score Value From Header Explained</TITLE>
18896 </HEAD>
18897 <BODY>
18898 <H1>Score Value From Header Explained</H1>
18900 This option provides a way to use a number that appears in the headers of your
18901 messages as the message's score, or as a component of that score.
18902 If this field is defined then it is used instead of the &quot;Score Value&quot;.
18903 The idea behind this option is that there may be a score embedded in the
18904 headers of messages that has already been calculated outside of Alpine.
18905 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
18906 somewhere in that header there is a score.
18908 The value for this option is the name of the header followed by parentheses
18909 with two arguments inside:
18911 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
18913 No space is allowed between the comma and the start of the field_separators.
18914 It would be interpreted as the first separator if it was there.
18915 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
18916 starts after that and goes to the second separator, and so on.
18917 It's easier to explain with examples.
18919 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
18921 In the above example the header that is used is the &quot;X-Spam&quot; header.
18922 The value of that header (the part after the colon and the space) is split
18923 into fields separated by spaces.
18925 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
18927 The second field is selected and converted to an integer. It only makes sense
18928 if Field2 really is an integer.
18930 Here's an example of a SpamAssassin header.
18931 The exact look of the header will vary, but if your incoming mail
18932 contains headers that look like the following
18934 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
18936 you might want to use the hits value as a score.
18937 Since the score is an integer value you can't make use of the decimal part of
18938 the number, but
18939 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
18940 and &quot;.&quot; as your separators.
18942 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
18944 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
18945 hits.
18946 The second field is &quot;10&quot; so the score value would be 10.
18948 Another example we've seen has headers that look like
18950 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
18952 Because there are two equals before the 7% the value
18954 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
18956 should capture the probability as the score.
18958 The Score From Header scoring value actually works just like the
18959 regular Score Value in that the rest of the pattern has to match before
18960 it is used and the scores from all the different scoring rules that
18961 match for a particular message are added together.
18962 When using the Score From Header method it may (or may not) make sense to
18963 use only a single scoring rule with a pattern that matches every message.
18965 Look <A HREF="h_edit_nav_cmds">here</A>
18966 to see the available Editing and Navigation commands.
18968 &lt;End of help on this topic&gt;
18969 </BODY>
18970 </HTML>
18971 ======= h_config_role_replyuse =======
18972 <HTML>
18973 <HEAD>
18974 <TITLE>Reply Use Explained</TITLE>
18975 </HEAD>
18976 <BODY>
18977 <H1>Reply Use Explained</H1>
18979 This option determines how this particular role will be used when Replying
18980 to a message.
18981 There are three possible values for this option.
18982 The value &quot;Never&quot;
18983 means that this role will not be a candidate for use when Replying.
18984 The role's Pattern will not be checked for a match, however the role will
18985 be available to be manually switched to if there is a confirmation prompt.
18988 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
18989 mean that you do want to consider this role when Replying.
18990 For either of these settings, the role's Pattern will be compared with
18991 the message being replied to.
18992 If there is a match then this role will either be used without confirmation
18993 or will be the default when confirmation is asked for, depending on
18994 which of the two options is selected.
18995 If confirmation is requested, you will also have a chance to
18996 manually change the role to any one of your other roles.
18999 You won't be prompted for confirmation if none of your role Patterns
19000 match the message being replied to.
19001 This is independent of the value of the current option.
19002 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19003 feature may be used to change this behavior.
19005 &lt;End of help on this topic&gt;
19006 </BODY>
19007 </HTML>
19008 ======= h_config_role_forwarduse =======
19009 <HTML>
19010 <HEAD>
19011 <TITLE>Forward Use Explained</TITLE>
19012 </HEAD>
19013 <BODY>
19014 <H1>Forward Use Explained</H1>
19016 This option determines how this particular role will be used when Forwarding
19017 a message.
19018 There are three possible values for this option.
19019 The value &quot;Never&quot;
19020 means that this role will not be a candidate for use when Forwarding.
19021 The role's Pattern will not be checked for a match, however the role will
19022 be available to be manually switched to if there is a confirmation prompt.
19025 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
19026 mean that you do want to consider this role when Forwarding.
19027 For either of these settings, the role's Pattern will be compared with
19028 the message being forwarded.
19029 If there is a match then this role will either be used without confirmation
19030 or will be the default when confirmation is asked for, depending on
19031 which of the two options is selected.
19032 If confirmation is requested, you will also have a chance to
19033 manually change the role to any one of your other roles.
19036 You won't be prompted for confirmation if none of your role Patterns
19037 match the message being forwarded.
19038 This is independent of the value of the current option.
19039 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19040 feature may be used to change this behavior.
19042 &lt;End of help on this topic&gt;
19043 </BODY>
19044 </HTML>
19045 ======= h_config_role_composeuse =======
19046 <HTML>
19047 <HEAD>
19048 <TITLE>Compose Use Explained</TITLE>
19049 </HEAD>
19050 <BODY>
19051 <H1>Compose Use Explained</H1>
19053 This option determines how this particular role will be used when Composing
19054 a new message using the &quot;Compose&quot; command.
19055 This does not affect what happens when using the &quot;Role&quot; command
19056 to compose a new message.
19057 The &quot;Role&quot; command allows you to select a role from all of the
19058 roles you have defined, regardless of what Uses you've assigned to those
19059 roles.
19062 There are three possible values for this option.
19063 The value &quot;Never&quot;
19064 means that this role will not be a candidate for use when Composing.
19065 The role's Current Folder Type will not be checked for a match, however the role
19066 will be available to be manually switched to if there is a confirmation prompt.
19069 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
19070 mean that you do want to consider this role when Composing.
19071 For either of these settings,
19072 the role's Current Folder Type will be checked (since there is no message
19073 to compare with, the rest of the Pattern is considered a match).
19074 If there is a match then this role will either be used without confirmation
19075 or will be the default when confirmation is asked for, depending on
19076 which of the two options is selected.
19077 If confirmation is requested, you will also have a chance to
19078 manually change the role to any one of your other roles.
19081 When using the Compose command the role checking is a little different
19082 because there is no message being replied to or forwarded.
19083 Because of this the Current Folder Type is checked but the header pattern
19084 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
19085 A role is considered to be a match if it is a candidate for Compose Use and
19086 its Current Folder Type matches the currently open folder.
19087 This could be useful if you want to set a role based on the folder you
19088 are reading, or the type of folder you are reading.
19091 You won't be prompted for confirmation if none of your role Patterns
19092 are a match.
19093 This is independent of the value of the current option.
19094 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19095 feature may be used to change this behavior.
19097 &lt;End of help on this topic&gt;
19098 </BODY>
19099 </HTML>
19100 ======= h_config_filter_folder =======
19101 <HTML>
19102 <HEAD>
19103 <TITLE>Filter Folder Explained</TITLE>
19104 </HEAD>
19105 <BODY>
19106 <H1>Filter Folder Explained</H1>
19108 When the Filter Action is set to &quot;Move&quot;,
19109 the folder or folders specified here will be used to store messages matching
19110 the provided pattern.
19113 If you set the Filter Action to &quot;Move&quot; you must give a folder name
19114 here.
19117 If you wish,
19118 you may choose a folder from your folder collections by using the
19119 &quot;T&quot; command.
19121 Besides regular text, the folder name may also contain
19122 tokens that are replaced with text representing the current date
19123 when you run Alpine.
19124 For example, if the folder name you use is
19126 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
19128 that is replaced with something like
19130 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
19134 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
19136 becomes
19138 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
19140 The token names must be surrounded by underscores in order to be recognized
19141 as tokens.
19142 The tokens that may be used are those that are derived from the current date.
19143 They're listed near the bottom of the list of tokens give
19144 <A HREF="h_index_tokens">here</A>.
19146 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
19147 for more information on Patterns.
19149 Look <A HREF="h_edit_nav_cmds">here</A>
19150 to see the available Editing and Navigation commands.
19152 &lt;End of help on this topic&gt;
19153 </BODY>
19154 </HTML>
19155 ======= h_config_filter_kw_set =======
19156 <HTML>
19157 <HEAD>
19158 <TITLE>Set These Keywords Explained</TITLE>
19159 </HEAD>
19160 <BODY>
19161 <H1>Set These Keywords Explained</H1>
19163 This describes part of the action to be taken if the Pattern for this
19164 filter is a match.
19165 Read a little about keywords in the help text for the
19166 <A HREF="h_common_flag">Flag</A> command.
19167 This option is a list of keywords that will be Set when there is a match.
19168 If you wish, you may choose keywords from the list of keywords you have
19169 defined with the &quot;T&quot; command.
19170 You may add new keywords by defining them in the
19171 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19172 If you have given a keyword a nickname when configuring it,
19173 that nickname may be used instead of the actual keyword.
19176 Look <A HREF="h_edit_nav_cmds">here</A>
19177 to see the available Editing and Navigation commands.
19179 &lt;End of help on this topic&gt;
19180 </BODY>
19181 </HTML>
19182 ======= h_config_filter_kw_clr =======
19183 <HTML>
19184 <HEAD>
19185 <TITLE>Clear These Keywords Explained</TITLE>
19186 </HEAD>
19187 <BODY>
19188 <H1>Clear These Keywords Explained</H1>
19190 This describes part of the action to be taken if the Pattern for this
19191 filter is a match.
19192 Read a little about keywords in the help text for the
19193 <A HREF="h_common_flag">Flag</A> command.
19194 This option is a list of keywords that will be Cleared when there is a match.
19195 If you wish, you may choose keywords from the list of keywords you have
19196 defined with the &quot;T&quot; command.
19197 You may add new keywords by defining them in the
19198 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19199 If you have given a keyword a nickname when configuring it,
19200 that nickname may be used instead of the actual keyword.
19203 Look <A HREF="h_edit_nav_cmds">here</A>
19204 to see the available Editing and Navigation commands.
19206 &lt;End of help on this topic&gt;
19207 </BODY>
19208 </HTML>
19209 ======= h_index_tokens =======
19210 <HTML>
19211 <HEAD>
19212 <TITLE>Tokens for Index and Replying</TITLE>
19213 </HEAD>
19214 <BODY>
19216 This set of special tokens may be used in the
19217 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
19218 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
19219 in signature files,
19220 in template files used in
19221 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
19222 that is the target of a Filter Rule.
19223 Some of them aren't available in all situations.
19225 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
19226 option, but they must be surrounded by underscores for the
19227 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
19228 and in the target of Filter Rules.
19232 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
19234 <DL>
19235 <DT>SUBJECT</DT>
19236 <DD>
19237 This token represents the Subject the sender gave the message.
19238 Alternatives for use in the index screen are SHORTSUBJECT,
19239 SUBJKEY, SHORTSUBJKEY, SUBJKEYINIT, SHORTSUBJKEYINIT, SUBJECTTEXT, 
19240 SUBJKEYTEXT, and SUBJKEYINITTEXT.
19241 You may color the subject text in the MESSAGE INDEX screen differently by using the
19242 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
19243 <A HREF="h_config_index_opening_color">Index Opening Color</A>
19244 options available from
19245 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19246 </DD>
19248 <DT>FROM</DT>
19249 <DD>
19250 This token represents the personal name (or email address if the name
19251 is unavailable) of the person specified in the message's &quot;From:&quot;
19252 header field.
19253 You may color the from text in the MESSAGE INDEX screen differently by using the
19254 <A HREF="h_config_index_from_color">Index From Color</A>
19255 option available from
19256 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19257 </DD>
19259 <DT>ADDRESS</DT>
19260 <DD>
19261 This is similar to the &quot;FROM&quot; token, only it is always the
19262 email address, never the personal name.
19263 For example, &quot;mailbox@domain&quot;.
19264 </DD>
19266 <DT>MAILBOX</DT>
19267 <DD>
19268 This is the same as the &quot;ADDRESS&quot; except that the 
19269 domain part of the address is left off.
19270 For example, &quot;mailbox&quot;.
19271 </DD>
19273 <DT>SENDER</DT>
19274 <DD>
19275 This token represents the personal name (or email address) of the person
19276 listed in the message's &quot;Sender:&quot; header field.
19277 </DD>
19279 <DT>TO</DT>
19280 <DD>
19281 This token represents the personal names (or email addresses if the names
19282 are unavailable) of the persons specified in the
19283 message's &quot;To:&quot; header field.
19284 </DD>
19286 <DT>NEWSANDTO</DT>
19287 <DD>
19288 This token represents the newsgroups from the
19289 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19290 the personal names (or email addresses if the names
19291 are unavailable) of the persons specified in the
19292 message's &quot;To:&quot; header field.
19293 </DD>
19295 <DT>TOANDNEWS</DT>
19296 <DD>
19297 Same as &quot;NEWSANDTO&quot; except in the opposite order.
19298 </DD>
19300 <DT>NEWS</DT>
19301 <DD>
19302 This token represents the newsgroups from the
19303 message's &quot;Newsgroups:&quot; header field.
19304 </DD>
19306 <DT>CC</DT>
19307 <DD>
19308 This token represents the personal names (or email addresses if the names
19309 are unavailable) of the persons specified in the
19310 message's &quot;Cc:&quot; header field.
19311 </DD>
19313 <DT>RECIPS</DT>
19314 <DD>
19315 This token represents the personal names (or email addresses if the names
19316 are unavailable) of the persons specified in both the
19317 message's &quot;To:&quot; header field and
19318 the message's &quot;Cc:&quot; header field.
19319 </DD>
19321 <DT>NEWSANDRECIPS</DT>
19322 <DD>
19323 This token represents the newsgroups from the
19324 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19325 the personal names (or email addresses if the names
19326 are unavailable) of the persons specified in the
19327 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
19328 </DD>
19330 <DT>RECIPSANDNEWS</DT>
19331 <DD>
19332 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
19333 </DD>
19335 <DT>INIT</DT>
19336 <DD>
19337 This token represents the initials from the personal name
19338 of the person specified in the message's &quot;From:&quot;
19339 header field.
19340 If there is no personal name, it is blank.
19341 </DD>
19343 <DT>DATE</DT>
19344 <DD>
19345 This token represents the date on which the message was sent, according
19346 to the &quot;Date&quot; header field.
19347 It has the format MMM DD. For example, &quot;Oct 23&quot;.
19348 The feature
19349 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
19350 which adjusts for the timezone the message was sent from,
19351 may have an effect on the value of this token as well as the values of
19352 all of the other DATE or TIME tokens.
19353 Some of the DATE and TIME tokens are displayed in a locale-specific
19354 way unless the option
19355 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
19356 </DD>
19358 <DT>SMARTDATE</DT>
19359 <DD>
19360 This token represents the date on which the message was sent, according
19361 to the &quot;Date&quot; header field.
19362 It is &quot;Today&quot; if the message was sent today,
19363 &quot;Yesterday&quot; for yesterday,
19364 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
19365 message is from last year and is more than six months old it includes the year, as well.
19366 See the SMARTDATE alternatives below, as well.
19367 </DD>
19369 <DT>SMARTTIME</DT>
19370 <DD>
19371 This token represents the most relevant elements of the date on which
19372 the message was sent (according to the &quot;Date&quot; header field),
19373 in a compact form. If the message was sent today, only the time is used
19374 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
19375 the past week, the day of the week and the hour are used
19376 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
19377 given as date, month, and year (e.g. &quot;23Aug00&quot;,
19378 &quot;9Apr98&quot;).
19379 </DD>
19381 <DT>SMARTTIME24</DT>
19382 <DD>
19383 This token has the structure &quot;day hour:minute&quot;
19384 (e.g. &quot;Sun 19:03&quot;) for messages dated less than a week
19385 from the current date, or &quot;month day&quot; (e.g.
19386 &quot;Nov 23&quot;) for messages dated less than 6 months
19387 ago, or &quot;day/month/year&quot; (e.g &quot;06/Jan/16&quot;)
19388 for messages dated more than 6 months ago. It uses 9 characters
19389 of the width of the screen, and it left aligned.
19390 </DD>
19392 <DT>SMARTDATETIME</DT>
19393 <DD>
19394 This is a combination of SMARTDATE and SMARTTIME.
19395 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
19396 case it is SMARTTIME.
19397 See the SMARTDATETIME alternatives below, as well.
19398 </DD>
19400 <DT>DATEISO</DT>
19401 <DD>
19402 This token represents the date on which the message was sent, according
19403 to the &quot;Date&quot; header field.
19404 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19405 </DD>
19407 <DT>SHORTDATEISO</DT>
19408 <DD>
19409 This token represents the date on which the message was sent, according
19410 to the &quot;Date&quot; header field.
19411 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19412 </DD>
19414 <DT>SHORTDATE1</DT>
19415 <DD>
19416 This token represents the date on which the message was sent, according
19417 to the &quot;Date&quot; header field.
19418 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
19419 </DD>
19421 <DT>SHORTDATE2</DT>
19422 <DD>
19423 This token represents the date on which the message was sent, according
19424 to the &quot;Date&quot; header field.
19425 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
19426 </DD>
19428 <DT>SHORTDATE3</DT>
19429 <DD>
19430 This token represents the date on which the message was sent, according
19431 to the &quot;Date&quot; header field.
19432 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
19433 </DD>
19435 <DT>SHORTDATE4</DT>
19436 <DD>
19437 This token represents the date on which the message was sent, according
19438 to the &quot;Date&quot; header field.
19439 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
19440 </DD>
19442 <DT>LONGDATE</DT>
19443 <DD>
19444 This token represents the date on which the message was sent, according
19445 to the &quot;Date&quot; header field.
19446 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
19447 </DD>
19449 <DT>SMARTDATE alternatives</DT>
19450 <DD>
19451 There are several versions of SMARTDATE that are all the same except
19452 for the way they format dates far in the past.
19453 SMARTDATE formats the date using the information from your locale settings
19454 to format the date string. It may end up formatting dates so that they look
19455 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19456 The feature
19457 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19458 may have an effect on the values of these tokens.
19459 If you want more control you may use one of the following.
19460   <DL>
19461   <DT>SMARTDATE</DT> <DD>If the option
19462 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19463 then this will be locale specific. Control this with the
19464 LC_TIME locale setting on a UNIX system. On Windows
19465 the Regional Options control panel may be used to set the Short date
19466 format. At the programming level, the strftime routine is what Alpine
19467 uses to print the date.
19468 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19469 to SMARTDATES1.</DD>
19470   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
19471   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19472   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
19473   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
19474   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
19475   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
19476   </DL>
19477 </DD>
19479 <DT>SMARTDATETIME alternatives</DT>
19480 <DD>
19481 There are several versions of SMARTDATETIME that are all very similar.
19482 The ones that end in 24 use a 24-hour clock for Today's messages instead
19483 of a 12-hour clock.
19484 The other variation is
19485 for the way they format dates far in the past.
19486 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
19487 to format the date string. It may end up formatting dates so that they look
19488 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19489 The feature
19490 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19491 may have an effect on the values of these tokens.
19492 The possible choices are:
19493   <DL>
19494   <DT>SMARTDATETIME</DT> <DD>If the option
19495 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19496 then this will be locale specific. Control this with the
19497 LC_TIME locale setting on a UNIX system. On Windows
19498 the Regional Options control panel may be used to set the Short date
19499 format. At the programming level, the strftime routine is what Alpine
19500 uses to print the date.
19501 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19502 to SMARTDATETIMES1.</DD>
19503   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
19504   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
19505   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
19506   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19507   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
19508   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
19509   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
19510   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
19511   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
19512   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
19513   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
19514   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
19515   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
19516   </DL>
19517 </DD>
19519 <DT>DAYDATE</DT>
19520 <DD>
19521 This token represents the date on which the message was sent, according
19522 to the &quot;Date&quot; header field.
19523 It looks like &quot;Sat, 23 Oct 1998&quot;.
19524 This token is never converted in any locale-specific way.
19525 </DD>
19527 <DT>PREFDATE</DT>
19528 <DD>
19529 This token represents the date on which the message was sent, according
19530 to the &quot;Date&quot; header field.
19531 It is your operating system's idea of the preferred date representation for the current locale.
19532 Internally it uses the %x version of the date from the strftime routine.
19533 </DD>
19535 <DT>PREFTIME</DT>
19536 <DD>
19537 This token represents the time at which the message was sent, according
19538 to the &quot;Date&quot; header field.
19539 It is the preferred time representation for the current locale.
19540 Internally it uses the %X version of the time from the strftime routine.
19541 </DD>
19543 <DT>PREFDATETIME</DT>
19544 <DD>
19545 This token represents the date and time at which the message was sent, according
19546 to the &quot;Date&quot; header field.
19547 It is the preferred date and time representation for the current locale.
19548 Internally it uses the %c version of the time from the strftime routine.
19549 </DD>
19551 <DT>DAY</DT>
19552 <DD>
19553 This token represents the day of the month on which the message was sent,
19554 according to the &quot;Date&quot; header field.
19555 For example, &quot;23&quot; or &quot;9&quot;.
19556 </DD>
19558 <DT>DAY2DIGIT</DT>
19559 <DD>
19560 This token represents the day of the month on which the message was sent,
19561 according to the &quot;Date&quot; header field.
19562 For example, &quot;23&quot; or &quot;09&quot;.
19563 It is always 2 digits.
19564 </DD>
19566 <DT>DAYORDINAL</DT>
19567 <DD>
19568 This token represents the ordinal number that is the day of
19569 the month on which the message was sent,
19570 according to the &quot;Date&quot; header field.
19571 For example, &quot;23rd&quot; or &quot;9th&quot;.
19572 </DD>
19574 <DT>DAYOFWEEK</DT>
19575 <DD>
19576 This token represents the day of the week on which the message was sent,
19577 according to the &quot;Date&quot; header field.
19578 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19579 </DD>
19581 <DT>DAYOFWEEKABBREV</DT>
19582 <DD>
19583 This token represents the day of the week on which the message was sent,
19584 according to the &quot;Date&quot; header field.
19585 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19586 </DD>
19588 <DT>MONTHABBREV</DT>
19589 <DD>
19590 This token represents the month the message was sent, according
19591 to the &quot;Date&quot; header field.
19592 For example, &quot;Oct&quot;.
19593 </DD>
19595 <DT>MONTHLONG</DT>
19596 <DD>
19597 This token represents the month in which the message was sent, according
19598 to the &quot;Date&quot; header field.
19599 For example, &quot;October&quot;.
19600 </DD>
19602 <DT>MONTH</DT>
19603 <DD>
19604 This token represents the month in which the message was sent, according
19605 to the &quot;Date&quot; header field.
19606 For example, &quot;10&quot; or &quot;9&quot;.
19607 </DD>
19609 <DT>MONTH2DIGIT</DT>
19610 <DD>
19611 This token represents the month in which the message was sent, according
19612 to the &quot;Date&quot; header field.
19613 For example, &quot;10&quot; or &quot;09&quot;.
19614 It is always 2 digits.
19615 </DD>
19617 <DT>YEAR</DT>
19618 <DD>
19619 This token represents the year the message was sent, according
19620 to the &quot;Date&quot; header field.
19621 For example, &quot;1998&quot; or &quot;2001&quot;.
19622 </DD>
19624 <DT>YEAR2DIGIT</DT>
19625 <DD>
19626 This token represents the year the message was sent, according
19627 to the &quot;Date&quot; header field.
19628 For example, &quot;98&quot; or &quot;01&quot;.
19629 It is always 2 digits.
19630 </DD>
19632 <DT>TIME24</DT>
19633 <DD>
19634 This token represents the time at which the message was sent, according
19635 to the &quot;Date&quot; header field.
19636 There is no adjustment made for different time zones, so you'll get
19637 the time the message was sent according to the time zone the sender
19638 was in.
19639 It has the format HH:MM. For example, &quot;17:28&quot;.
19640 </DD>
19642 <DT>TIME12</DT>
19643 <DD>
19644 This token represents the time at which the message was sent, according
19645 to the &quot;Date&quot; header field.
19646 This time is for a 12 hour clock.
19647 It has the format HH:MMpm.
19648 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19649 </DD>
19651 <DT>TIMEZONE</DT>
19652 <DD>
19653 This token represents the numeric timezone from
19654 the &quot;Date&quot; header field.
19655 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
19656 </DD>
19658 </DL>
19661 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
19663 <DL>
19664 <DT>MSGNO</DT>
19665 <DD>
19666 This token represents the message's current position in the folder that,
19667 of course, may change as the folder is sorted or new mail arrives.
19668 </DD>
19670 <DT>STATUS</DT>
19671 <DD>
19672 This token represents a three character wide field displaying various
19673 aspects of the message's state.
19674 The first character is either blank,
19675 a '*' for message marked Important, or a '+' indicating a message
19676 addressed directly to you (as opposed to your having received it via a
19677 mailing list, for example).
19678 When the feature
19679 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
19680 is set, if the first character would have been
19681 blank then it will instead be a '-' if the message is cc'd to you.
19682 The second character is typically blank,
19683 though the arrow cursor may occupy it if either the 
19684 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
19685 or the
19686 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
19687 is set (or you actually are on a slow link).
19688 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
19689 '<A HREF="h_flag_answered">A</A>' (Answered),
19690 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
19691 '<A HREF="h_flag_new">N</A>' (New), or blank.
19693 If you are using a threaded view of the index and this message is at the
19694 top of a collapsed portion of a thread,
19695 then this token refers to all of the messages in the collapsed portion of
19696 the thread instead of just the top message.
19697 The first character will be a '*' if <EM>any</EM> of the messages in the thread
19698 are marked Important, else a '+' if any of the messages are addressed
19699 to you, else a '-' if any of the messages are cc'd to you.
19700 The third character will be a 'D' if <EM>all</EM> of the messages
19701 in the collapsed thread are marked deleted,
19702 an 'A' if <EM>all</EM> of the messages
19703 in the collapsed thread are marked answered,
19704 it will be an 'N' if any of
19705 the messages are undeleted and unseen, and it will be blank otherwise.
19706 </DD>
19708 <DT>FULLSTATUS</DT>
19709 <DD>
19710 This token represents a less abbreviated alternative
19711 to the &quot;STATUS&quot; token.
19712 It is six characters wide.
19713 The first character is '+', '-', or blank, the
19714 second blank, the third either '*' or blank, the fourth
19715 '<A HREF="h_flag_new">N</A>' or blank,
19716 the fifth '<A HREF="h_flag_answered">A</A>'
19717 or blank, and the sixth character is
19718 either '<A HREF="h_flag_deleted">D</A>' or
19719 blank.
19721 If you are using a threaded view of the index and this message is at the
19722 top of a collapsed portion of a thread,
19723 then this token refers to all of the messages in the collapsed portion of
19724 the thread instead of just the top message.
19725 The first character is '+', '-', or blank depending on whether <EM>any</EM>
19726 of the messages in the collapsed thread are addressed to you or cc'd to you.
19727 The third character will be '*' if any of the messages are marked
19728 Important.
19729 The fourth character will be 'N' if all of the messages in the thread
19730 are New, else 'n' if some of the messages in the thread are New, else blank.
19731 The fifth character will be 'A' or 'a' or blank, and the sixth character
19732 will be 'D' or 'd' or blank.
19733 </DD>
19735 <DT>IMAPSTATUS</DT>
19736 <DD>
19737 This token represents an even less abbreviated alternative to the
19738 &quot;STATUS&quot; token.
19739 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
19740 an 'N' if the message is new to this folder since the last time
19741 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
19742 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
19743 new to the folder since it was last opened <EM>but</EM> has not been
19744 viewed, or a blank if the message has been in the folder since it was
19745 last opened and has been viewed.
19747 If you are using a threaded view of the index and this message is at the
19748 top of a collapsed portion of a thread,
19749 then the fourth character will be
19750 'N' if all of the messages in the thread are unseen and recent;
19751 else 'n' if some of the messages in the thread are unseen and recent;
19752 else 'U' if all of the messages in the thread are unseen and not recent;
19753 else 'u' if some of the messages in the thread are unseen and not recent;
19754 else 'R' if all of the messages in the thread are seen and recent;
19755 else 'r' if some of the messages in the thread are seen and recent;
19756 else blank.
19757 </DD>
19759 <DT>SHORTIMAPSTATUS</DT>
19760 <DD>
19761 This is the same as the last four of the six characters of IMAPSTATUS,
19762 so the '+' To Me information will be missing.
19763 </DD>
19765 <DT>SIZE</DT>
19766 <DD>
19767 This token represents the total size, in bytes, of the message.
19768 If a &quot;K&quot; (Kilobyte)
19769 follows the number, the size is approximately 1,000
19770 times that many bytes (rounded to the nearest 1,000).
19771 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19772 1,000,000 times that many bytes.
19773 Commas are not used in this field.
19774 This field is seven characters wide, including the enclosing parentheses.
19775 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19776 The progression of sizes used looks like:
19779 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
19781 </DD>
19783 <DT>SIZECOMMA</DT>
19784 <DD>
19785 This token represents the total size, in bytes, of the message.
19786 If a &quot;K&quot; (Kilobyte)
19787 follows the number, the size is approximately 1,000
19788 times that many bytes (rounded to the nearest 1,000).
19789 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19790 1,000,000 times that many bytes.
19791 Commas are used if the number shown is 1,000 or greater.
19792 The SIZECOMMA field is one character wider than the SIZE field.
19793 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19794 The progression of sizes used looks like:
19797 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
19799 </DD>
19801 <DT>KSIZE</DT>
19802 <DD>
19803 This token represents the total size of the message, expressed in
19804 kilobytes or megabytes, as most appropriate.
19805 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
19806 The progression of sizes used looks like:
19809 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
19811 </DD>
19813 <DT>SIZENARROW</DT>
19814 <DD>
19815 This token represents the total size, in bytes, of the message.
19816 If a &quot;K&quot; (Kilobyte)
19817 follows the number, the size is approximately 1,000
19818 times that many bytes.
19819 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19820 1,000,000 times that many bytes.
19821 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
19822 1,000,000,000 times that many bytes.
19823 This field uses only five characters of screen width, including the enclosing
19824 parentheses.
19825 The progression of sizes used looks like:
19828 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
19830 </DD>
19832 <DT>DESCRIPSIZE</DT>
19833 <DD>
19834 This token is intended to represent a more useful description of the
19835 message than just its size, but it isn't very useful at this point.
19836 The plus sign in this view means there are attachments.
19837 Note that including this token in
19838 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
19839 display a little while Alpine collects the necessary information.
19840 </DD>
19842 <DT>SHORTSUBJECT</DT> 
19843 <DD> This token is the same as SUBJECT, but removes 
19844 text between &quot;[&quot; and &quot;]&quot;. Typically text enclosed 
19845 between these characters corresponds to mailing list names, and may be 
19846 unnecessary or unwanted in some instances. 
19847 </DD>
19849 <DT>SUBJKEY</DT>
19850 <DD>
19851 This token is the same as the SUBJECT token unless keywords are set for
19852 the message.
19853 In that case, a list of keywords enclosed in braces will be prepended to
19854 the subject of the message.
19855 Only those keywords that you have defined in your
19856 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19857 in Setup/Config are considered in the list.
19858 In other words, keywords that have been set by some other means, perhaps
19859 by another email program, won't show up unless included in
19860 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19861 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
19862 prepended to the subject in the MESSAGE TEXT screen.
19863 If you have given a keyword a nickname
19864 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19865 instead of the actual keyword.
19866 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19867 option may be used to modify this token slightly.
19868 It is also possible to color keywords in the index using the
19869 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19870 </DD>
19872 <DT>SHORTSUBJKEY</DT>
19873 <DD> This token is the same as SUBJKEY, but it is based on
19874 SHORTSUBJECT, instead of in SUBJECT.
19875 </DD>
19877 <DT>SUBJKEYINIT</DT>
19878 <DD>
19879 This token is the same as the SUBJKEY token except that instead of
19880 prepending a list of keywords to the subject, a list of first initials
19881 of keywords will be prepended instead.
19882 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
19883 set (or Work and Now are the Alpine nicknames of keywords that are set)
19884 then the SUBJKEY token would cause a result like
19886 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
19888 whereas the SUBJKEYINIT token would give
19890 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
19892 Only those keywords that you have defined in your
19893 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19894 in Setup/Config are considered in the list.
19895 In other words, keywords that have been set by some other means, perhaps
19896 by another email program, won't show up unless included in
19897 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19898 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
19899 option may be used to modify this token slightly.
19900 It is also possible to color keywords in the index using the
19901 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19902 </DD>
19904 <DT>SHORTSUBJKEYINIT</DT>
19905 <DD> This token is the same as SUBJKEYINIT, but it is based on
19906 SHORTSUBJECT, instead of in SUBJECT.
19907 </DD>
19909 <DT>SUBJECTTEXT</DT>
19910 <DD>
19911 Same as SUBJECT but if there is room in the Subject field for more text,
19912 the opening part of the text of the message is displayed after the subject.
19913 The time needed to fetch the text may cause a performance problem
19914 which can, of course, be avoided by using the SUBJECT version of
19915 the Subject instead.
19916 You may color this opening text differently by using the
19917 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19918 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19919 You may adjust the characters that are displayed between the Subject and the
19920 opening text with the option
19921 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
19922 </DD>
19924 <DT>SUBJKEYTEXT</DT>
19925 <DD>
19926 Same as SUBJKEY but with the opening message text.
19927 </DD>
19929 <DT>OPENINGTEXT</DT>
19930 <DD>
19931 This is similar to SUBJECTTEXT.
19932 Instead of combining the Subject and the opening text in a single
19933 field in the index screen this token allows you to allocate a
19934 separate column just for the opening text of the message.
19935 The time needed to fetch this text may cause a performance problem.
19936 You may color this opening text differently by using the
19937 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
19938 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19939 </DD>
19941 <DT>OPENINGTEXTNQ</DT>
19942 <DD>
19943 This is very similar to OPENINGTEXT.
19944 The NQ stands for No Quotes.
19945 The only difference is that quoted text (lines beginning with &gt;) is deleted.
19946 For some messages this may be confusing.
19947 For example, a message might have a line preceding some quoted
19948 text that reads something like &quot;On May 8th person A said.&quot;
19949 That no longer makes sense after the quoted text is deleted and it
19950 will appear that person A said whatever the text after the quote
19951 is, even though that is really person B talking.
19952 </DD>
19954 <DT>SUBJKEYINITTEXT</DT>
19955 <DD>
19956 Same as SUBJKEYINIT but with the opening message text.
19957 </DD>
19959 <DT>KEY</DT>
19960 <DD>
19961 This is a space-delimited list of keywords that are set for the message.
19962 Only those keywords that you have defined in your
19963 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
19964 in Setup/Config are considered in the list.
19965 In other words, keywords that have been set by some other means, perhaps
19966 by another email program, won't show up unless included in
19967 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
19968 If you have given a keyword a nickname
19969 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
19970 instead of the actual keyword.
19971 It is also possible to color keywords in the index using the
19972 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19973 This token defaults to an arbitrary width of 5.
19974 You should set it to whatever width suits you using something
19975 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
19976 </DD>
19978 <DT>KEYINIT</DT>
19979 <DD>
19980 This is a list of keyword initials that are set for the message.
19981 If you have given a keyword a nickname
19982 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
19983 is displayed instead of the initial of the actual keyword.
19984 It is also possible to color keyword initials in the index using the
19985 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
19986 This token defaults to an arbitrary width of 2.
19987 You should set it to whatever width suits you using something
19988 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
19989 </DD>
19991 <DT>PRIORITY</DT>
19992 <DD>
19993 The X-Priority header is a non-standard header that is used in a
19994 somewhat standard way by many mail programs.
19995 Alpine expects the value of this header to be a digit with a value
19996 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
19997 Since this priority is something that the sender sets it is only an indication
19998 of the priority that the sender attaches to the mail and it is therefore almost
19999 totally unreliable for use as a filtering criterion.
20000 This token will display the numeric value of the priority if it is between
20001 1 and 5.
20002 It will be suppressed (blank) if the value is 3, which is normal priority.
20003 This token may be colored with the
20004 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20005 </DD>
20007 <DT>PRIORITYALPHA</DT>
20008 <DD>
20009 This is a more verbose interpretation of the X-Priority field.
20010 Once again nothing is displayed unless the value of the field
20011 is 1, 2, 4, or 5.
20012 The values displayed for those values are:
20014 <TABLE>
20015 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
20016 <TR> <TD>2</TD> <TD>High</TD> </TR>
20017 <TR> <TD>4</TD> <TD>Low</TD> </TR>
20018 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
20019 </TABLE>
20021 This token may be colored with the
20022 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20023 </DD>
20025 <DT>PRIORITY!</DT>
20026 <DD>
20027 This is a one character, non-numeric version of the X-Priority field.
20028 If the value of the X-Priority header is 1 or 2 an exclamation
20029 point is displayed.
20030 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
20031 This token may be colored with the
20032 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20033 </DD>
20035 <DT>ATT</DT>
20036 <DD>
20037 This is a one column wide field that represents the number of attachments
20038 a message has. It will be blank if there are no attachments, a single
20039 digit for one to nine attachments, or an asterisk for more than nine.
20040 Note that including this token in
20041 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
20042 display a little while Alpine collects the necessary information.
20043 </DD>
20045 <DT>FROMORTO</DT>
20046 <DD>
20047 This token represents <EM>either</EM> the personal name (or email address) of
20048 the person listed in the message's &quot;From:&quot; header
20049 field, <EM>or</EM>, if that address is yours or one of your
20050 <A HREF="h_config_alt_addresses">alternate addresses</A>,
20051 the first person specified in the
20052 message's &quot;To:&quot; header field
20053 with the prefix &quot;To: &quot; prepended.
20054 If the from address is yours and there is also no &quot;To&quot; address,
20055 Alpine will use the address on the &quot;Cc&quot; line.
20056 If there is no address there, either, Alpine will look for a newsgroup name
20057 from the &quot;Newsgroups&quot; header field and put
20058 that after the &quot;To: &quot; prefix.
20059 </DD>
20061 <DT>FROMORTONOTNEWS</DT>
20062 <DD>
20063 This is almost the same as <EM>FROMORTO</EM>.
20064 The difference is that newsgroups aren't considered.
20065 When a message is from you, doesn't have a To or Cc, and does have
20066 a Newsgroups header; this token will be your name instead of the name
20067 of the newsgroup (like it would be with FROMORTO).
20068 </DD>
20070 <DT>TEXT</DT>
20071 <DD>
20072 This is a different sort of token.
20073 It allows you to display a label within each index line.
20074 It will be the same fixed text for each line.
20075 It is different from all the other tokens in that there is no space column
20076 displayed after this token.
20077 Instead, it is butted up against the following field.
20078 It also has a different syntax.
20079 The text to display is given following a colon after the
20080 word &quot;TEXT&quot;.
20081 For example,
20083 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
20085 would insert the literal text &quot;abc=&quot; (without the quotes)
20086 into the index display line.
20087 You must quote the text if it includes space characters, like
20089 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
20091 </DD>
20093 <DT>HEADER</DT>
20094 <DD>
20095 This allows you to display the text from a particular header line in the
20096 message.
20097 The syntax for this token is substantially different from all the others
20098 in order that you might be able to display a portion of the text following
20099 a particular header.
20100 The header name you are interested in is given following a colon
20101 after the word &quot;HEADER&quot;.
20102 For example,
20104 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
20106 would display the text of the X-Spam header, if any.
20107 Like for other index tokens a width field may (and probably should)
20108 follow this.
20110 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
20112 displays the first ten characters of the X-Spam header.
20113 Unlike other index tokens, the syntax for HEADER is more flexible.
20114 An optional second argument comes after a comma inside the parentheses.
20115 It specifies the &quot;field&quot; number.
20116 By default, the field separator is a space character.
20117 No extra space characters are allowed in the argument list.
20119 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
20121 would display the second field, left-justified, in a 10 character
20122 wide field.
20123 The second field would consist of all the text after the first space
20124 up to the next space or the end of the header.
20125 The default field number is zero, which stands for the entire line.
20126 There is also an optional third argument that is a list of field
20127 separators. It defaults to a space character.
20128 The example
20130 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
20132 would cause the field separators to be any of colon, percent,
20133 or space (there is a space character between the percent and the
20134 right parenthesis).
20135 The first field runs from the start of the header value up to the first
20136 colon, percent, or space; the second goes from there to the next; and so on.
20137 In order to use a comma character as a field separator you must escape
20138 it by preceding it with a backslash (&#92;).
20139 The same is true of the backslash character itself.
20140 There is one further optional argument.
20141 It is an R or an L to specify right or left adjustment of the text
20142 within the field.
20143 The default is to left justify, however if you are displaying numbers
20144 you might prefer to right justify.
20146 Here's an example of a SpamAssassin header.
20147 The exact look of the header will vary, but if your incoming mail
20148 contains headers that look like the following
20150 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
20152 you might want to display the hits value.
20153 The first field starts with the Y in Yes.
20154 To get what you're interested in you might use &quot;=&quot; and
20155 space as the field separators and display the third field, like
20157 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
20159 or maybe you would break at the dot instead
20161 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
20163 Another example we've seen has headers that look like
20165 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
20167 Because there are two equals and a comma before the 7% and a comma
20168 after it, the token
20170 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
20172 should display the probability (for example 7% or 83%) right justified
20173 in a 3-wide field.
20174 </DD>
20176 <DT>ARROW</DT>
20177 <DD>
20178 This gives an alternative way to display the current message in the
20179 MESSAGE INDEX screen.
20180 Usually the current message is indicated by the line being shown in
20181 reverse video.
20182 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
20183 the current line will include an &quot;arrow&quot; that
20184 looks like
20186 <CENTER><SAMP>-&gt;</SAMP></CENTER>
20188 in the ARROW token's field.
20189 For all of the non-current messages, the ARROW field will be filled
20190 with blanks.
20191 If you use the fixed-field width feature the length of the &quot;arrow&quot;
20192 may be adjusted.
20193 The arrow will be drawn as width-1 dashes followed by a greater than sign.
20194 For example, if you use ARROW(3) you will get
20196 <CENTER><SAMP>--&gt;</SAMP></CENTER>
20198 and ARROW(1) will give you just
20200 <CENTER><SAMP>&gt;</SAMP></CENTER>
20202 It is also possible to set the color of the ARROW field.
20203 By default (and for non-current messages) the arrow is colored the same
20204 as the index line it is part of.
20205 You may set it to be another color with the 
20206 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
20207 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20208 </DD>
20210 <DT>SCORE</DT>
20211 <DD>
20212 This gives the
20213 <a href="h_rules_score">score</a>
20214 of each message.
20215 This will be six columns wide to accomodate the widest possible score.
20216 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
20217 to limit the width of the field to the widest score that
20218 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
20219 If you have not defined any score rules the scores will all be zero.
20220 If any of your score rules contain AllText or BodyText patterns
20221 then including SCORE in the <!--#echo var="VAR_index-format"-->
20222 may slow down the display of the MESSAGE INDEX screen.
20223 </DD>
20224 </DL>
20227 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
20229 <DL>
20230 <DT>CURNEWS</DT>
20231 <DD>
20232 This token represents the current newsgroup if there is one.
20233 For example, &quot;comp.mail.pine&quot;.
20234 </DD>
20236 <DT>MSGID</DT>
20237 <DD>
20238 This token represents the message ID of the message.
20239 This token does not work with Filter Rule folder names.
20240 </DD>
20242 <DT>CURDATE</DT>
20243 <DD>
20244 This token represents the current date.
20245 It has the format MMM DD. For example, &quot;Oct 23&quot;.
20246 </DD>
20248 <DT>CURDATEISO</DT>
20249 <DD>
20250 This token represents the current date.
20251 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
20252 </DD>
20254 <DT>CURDATEISOS</DT>
20255 <DD>
20256 This token represents the current date.
20257 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
20258 </DD>
20260 <DT>CURPREFDATE</DT>
20261 <DD>
20262 This token represents the current date.
20263 It is your operating system's idea of the preferred date representation for the current locale.
20264 Internally it uses the %x version of the date from the strftime routine.
20265 </DD>
20267 <DT>CURPREFTIME</DT>
20268 <DD>
20269 This token represents the current time.
20270 It is the preferred time representation for the current locale.
20271 Internally it uses the %X version of the time from the strftime routine.
20272 </DD>
20274 <DT>CURPREFDATETIME</DT>
20275 <DD>
20276 This token represents the current date and time.
20277 It is the preferred date and time representation for the current locale.
20278 Internally it uses the %c version of the time from the strftime routine.
20279 </DD>
20281 <DT>CURTIME24</DT>
20282 <DD>
20283 This token represents the current time.
20284 It has the format HH:MM. For example, &quot;17:28&quot;.
20285 </DD>
20287 <DT>CURTIME12</DT>
20288 <DD>
20289 This token represents the current time.
20290 This time is for a 12 hour clock.
20291 It has the format HH:MMpm.
20292 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
20293 </DD>
20295 <DT>CURDAY</DT>
20296 <DD>
20297 This token represents the current day of the month.
20298 For example, &quot;23&quot; or &quot;9&quot;.
20299 </DD>
20301 <DT>CURDAY2DIGIT</DT>
20302 <DD>
20303 This token represents the current day of the month.
20304 For example, &quot;23&quot; or &quot;09&quot;.
20305 It is always 2 digits.
20306 </DD>
20308 <DT>CURDAYOFWEEK</DT>
20309 <DD>
20310 This token represents the current day of the week.
20311 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
20312 </DD>
20314 <DT>CURDAYOFWEEKABBREV</DT>
20315 <DD>
20316 This token represents the current day of the week.
20317 For example, &quot;Sun&quot; or &quot;Wed&quot;.
20318 </DD>
20320 <DT>CURMONTH</DT>
20321 <DD>
20322 This token represents the current month.
20323 For example, &quot;10&quot; or &quot;9&quot;.
20324 </DD>
20326 <DT>CURMONTH2DIGIT</DT>
20327 <DD>
20328 This token represents the current month.
20329 For example, &quot;10&quot; or &quot;09&quot;.
20330 It is always 2 digits.
20331 </DD>
20333 <DT>CURMONTHLONG</DT>
20334 <DD>
20335 This token represents the current month.
20336 For example, &quot;October&quot;.
20337 </DD>
20339 <DT>CURMONTHABBREV</DT>
20340 <DD>
20341 This token represents the current month.
20342 For example, &quot;Oct&quot;.
20343 </DD>
20345 <DT>CURYEAR</DT>
20346 <DD>
20347 This token represents the current year.
20348 For example, &quot;1998&quot; or &quot;2001&quot;.
20349 </DD>
20351 <DT>CURYEAR2DIGIT</DT>
20352 <DD>
20353 This token represents the current year.
20354 For example, &quot;98&quot; or &quot;01&quot;.
20355 It is always 2 digits.
20356 </DD>
20358 <DT>LASTMONTH</DT>
20359 <DD>
20360 This token represents last month.
20361 For example, if this is November (the 11th month),
20362 it is equal to &quot;10&quot; or if this is October (the 10th month),
20363 it is &quot;9&quot;.
20364 It is possible that this and the other tokens beginning with LASTMONTH
20365 below could be useful when used with a Filtering Rule that
20366 has the &quot;Beginning of Month&quot; option set.
20367 </DD>
20369 <DT>LASTMONTH2DIGIT</DT>
20370 <DD>
20371 This token represents last month.
20372 For example, if this is November (the 11th month),
20373 it is equal to &quot;10&quot; or if this is October (the 10th month),
20374 it is &quot;09&quot;.
20375 It is always 2 digits.
20376 </DD>
20378 <DT>LASTMONTHLONG</DT>
20379 <DD>
20380 This token represents last month.
20381 For example, if this is November the value is &quot;October&quot;.
20382 </DD>
20384 <DT>LASTMONTHABBREV</DT>
20385 <DD>
20386 This token represents last month.
20387 For example, if this is November the value is &quot;Oct&quot;.
20388 </DD>
20390 <DT>LASTMONTHYEAR</DT>
20391 <DD>
20392 This token represents what the year was a month ago.
20393 For example, if this is October, 1998, it is &quot;1998&quot;.
20394 If this is January, 1998, it is &quot;1997&quot;.
20395 </DD>
20397 <DT>LASTMONTHYEAR2DIGIT</DT>
20398 <DD>
20399 This token represents what the year was a month ago.
20400 For example, if this is October, 1998, it is &quot;98&quot;.
20401 If this is January, 1998, it is &quot;97&quot;.
20402 </DD>
20404 <DT>LASTYEAR</DT>
20405 <DD>
20406 This token represents last year.
20407 For example, if this is 1998, it equals &quot;1997&quot;.
20408 It is possible that this
20409 could be useful when used with a Filtering Rule that
20410 has the &quot;Beginning of Year&quot; option set.
20411 </DD>
20413 <DT>LASTYEAR2DIGIT</DT>
20414 <DD>
20415 This token represents last year.
20416 For example, if this is 1998, it equals &quot;97&quot;.
20417 It is always 2 digits.
20418 </DD>
20420 <DT>ROLENICK</DT>
20421 <DD>
20422 This token represents the nickname of the
20423 role currently being used.  If no role is being used,
20424 then no text will be printed for this token.
20425 This token does not work with Filter Rule folder names.
20426 </DD>
20427 </DL>
20430 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
20431 See the help for the
20432 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
20433 to see why you might want to use this.
20434 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
20435 must be surrounded by underscores when used.
20437 <DL>
20438 <DT>NEWLINE</DT>
20439 <DD>
20440 This is an end of line marker.
20441 </DD>
20442 </DL>
20445 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
20447 <DL>
20448 <DT>CURSORPOS</DT>
20449 <DD>
20450 This token is different from the others.
20451 When it is replaced it is replaced with nothing, but it sets an Alpine
20452 internal variable that tells the composer to start with the cursor
20453 positioned at the position where this token was.
20454 If both the template file and the signature file contain
20455 a &quot;CURSORPOS&quot; token, then the position in the template file
20456 is used.
20457 If there is a template file and neither it nor the signature file contains
20458 a &quot;CURSORPOS&quot; token, then the cursor is positioned
20459 after the end of the contents of the
20460 template file when the composer starts up.
20461 </DD>
20462 </DL>
20465 &lt;End of help on this topic&gt;
20466 </BODY>
20467 </HTML>
20468 ======= h_reply_token_conditionals =======
20469 <HTML>
20470 <HEAD>
20471 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
20472 </HEAD>
20473 <BODY>
20474 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
20476 Conditional text inclusion may be used with
20477 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
20478 in signature files, and in template files used in
20479 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
20480 It may <EM>not</EM> be used with the
20481 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
20484 There is a limited if-else capability for including text.
20485 The if-else condition is based
20486 on whether or not a given token would result in replacement text you
20487 specify.
20488 The syntax of this conditional inclusion is
20490 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
20492 The left parenthesis must follow the underscore immediately, with no
20493 intervening space.
20494 It means the token is expanded and the results of that expansion are
20495 compared against the &quot;match_this&quot; argument.
20496 If there is an exact match, then the &quot;if_matched&quot; text is used
20497 as the replacement text.
20498 Otherwise, the &quot;if_not_matched&quot; text is used.
20499 One of the most useful values for the &quot;match_this&quot; argument is
20500 the empty string, &quot;&quot;.
20501 In that case the expansion is compared against the empty string.
20503 Here's an example to make it clearer.
20504 This text could be included in one of your template files:
20506 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
20508 If that is included in a template file that you are using while replying
20509 to a message (because you chose to use the role it was part of),
20510 and that message has a newsgroup header and a newsgroup in that header,
20511 then the text
20513 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
20515 will be included in the message you are about to compose.
20516 On the other hand, if the message you are replying to does not have
20517 a newsgroup, then the text
20519 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
20521 would be included instead.
20522 This would also work in signature files and in
20523 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
20524 If the &quot;match_this&quot;, &quot;if_matched&quot;,
20525 or &quot;if_not_matched&quot; arguments contain
20526 spaces, parentheses, or commas;
20527 they have to be quoted with double quotation marks (like in the example
20528 above).
20529 If you want to include a literal quote (&quot;) in the text you must escape the
20530 quote by preceding it with a backslash (&#92;) character.
20531 If you want to include a literal backslash character you must escape it
20532 by preceding it with another backslash.
20534 The comma followed by &quot;if_not_matched&quot; is optional.
20535 If there is no &quot;if_not_matched&quot;
20536 present then no text is included if the not_matched case is true.
20537 Here's another example:
20539 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
20541 Here you can see that tokens may appear in the arguments.
20542 The same is true for tokens with the conditional parentheses.
20543 They may appear in arguments,
20544 though you do have to be careful to get the quoting and escaping of
20545 nested double quotes correct.
20546 If this was in the signature file being used and you were replying to a message
20547 sent to comp.mail.pine the resulting text would be:
20549 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
20551 If you were replying to a message that wasn't sent to any newsgroup the
20552 resulting text would be a single blank line.
20553 The reason you'd get a blank line is because the end of the line is
20554 outside of the conditional, so is always included.
20555 If you wanted to get rid of that blank line you could do so by moving
20556 the end of line inside the conditional.
20557 In other words, it's ok to have multi-line
20558 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
20559 template file.
20560 The text just continues until the next double quotation, even if it's not
20561 on the same line.
20563 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
20565 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
20567 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
20568 while reading the newsgroup comp.mail.pine the resulting text would be:
20570 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
20572 If you were replying to a message while reading an email folder instead
20573 of a newsgroup the resulting leadin text would be
20575 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
20577 Here's one more (contrived) example illustrating a matching argument
20578 that is not the empty string.
20580 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
20582 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
20583 were replying to
20584 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
20585 would be
20587 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
20589 But if you were replying to a message sent on Oct. 27 (and that wasn't
20590 today) you would get
20592 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
20595 &lt;End of help on this topic&gt;
20596 </BODY>
20597 </HTML>
20598 ======= h_composer_cntxt_nick =======
20599 <HTML>
20600 <HEAD>
20601 <TITLE>Collection Nickname Explained</TITLE>
20602 </HEAD>
20603 <BODY>
20604 <H1>Collection Edit Help -- Nickname Field</H1>
20606 This field is provided so you can add a short nickname to use when
20607 referring to this collection within Alpine.  Spaces are allowed, and
20608 you don't need to use double-quotes.  However, the double-quote
20609 character is not allowed.
20611 Look <A HREF="h_edit_nav_cmds">here</A>
20612 to see the available Editing and Navigation commands.
20614 &lt;End of help on this topic&gt;
20615 </BODY>
20616 </HTML>
20617 ======= h_folder_server_syntax =======
20618 <HTML>
20619 <HEAD>
20620 <TITLE>Server Name Syntax</TITLE>
20621 </HEAD>
20622 <BODY>
20623 <H1>Server Name Syntax</H1>
20625 This help describes the syntax that may be used for server names
20626 that may be associated with remote folders or SMTP servers.
20629 A server name is the hostname of the server.
20630 It's a good idea to use the host's fully-qualified network name.
20633 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
20636 However, IP addresses are allowed if surrounded
20637 with square-brackets.
20640 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
20643 An optional network port number may be supplied by appending
20644 a colon (:) followed by the port number
20645 to the server name.
20646 By default, the IMAP port number, 143, is used.
20649 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
20652 Besides server name and optional port number, various other optional
20653 parameters may be supplied that alter Alpine's interaction with the server.
20654 A parameter is supplied by appending a slash (/) character followed by
20655 the parameter's name and,
20656 depending on the particular parameter, the value assigned to that
20657 name, to the server name (and optional port number).
20658 Parameter names are <EM>not</EM> case sensitive.
20659 Currently supported parameters include:
20661 <DL>
20663 <DT>User</DT>
20664 <DD>This parameter requires an associated value, and is intended to
20665 provide the username identifier with which to establish the server
20666 connection.
20667 If your SMTP server offers SMTP AUTH authentication, adding this 
20668 parameter to the
20669 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
20670 option will cause Alpine to attempt to authenticate to the server using the
20671 supplied username.
20672 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
20673 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
20674 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
20675 option (or to the server name for any folder collection using NNTP)
20676 will cause Alpine to attempt
20677 to authenticate to the server using the supplied username.
20678 An example might be:
20681 <CENTER><SAMP>/user=katie</SAMP></CENTER>
20684 </DD>
20686 <DT>TLS</DT>
20687 <DD>
20688 Normally, when a new connection is made an attempt is made to 
20689 negotiate a secure (encrypted) session using Transport Layer Security (TLS).
20690 If that fails then a non-encrypted connection will be attempted instead.
20691 This is a unary parameter indicating communication with the server must 
20692 take place over a TLS connection. If the attempt to use TLS fails then
20693 this parameter will cause the connection to fail instead of falling
20694 back to an unsecure connection.
20697 <CENTER><SAMP>/tls</SAMP></CENTER>
20700 </DD>
20702 <DT>SSL</DT>
20703 <DD>
20704 This is a unary parameter indicating communication with the server should 
20705 take place over a Secure Socket Layer connection.  The server must support
20706 this method, and be prepared to accept connections on the appropriate
20707 port (993 by default).
20708 Alpine must be linked with an SSL library for this option to be operational.
20711 <CENTER><SAMP>/ssl</SAMP></CENTER>
20714 </DD>
20716 <DT>TLS1</DT>
20717 <DD>
20718 This parameter indicates that the connection to the server will be made
20719 over the SSL port, but using the TLSv1 protocol, instead of the usual
20720 SSLv3 or SSLv2 protocols.
20721 Alpine must be linked with an SSL library for this option to be operational.
20724 <CENTER><SAMP>/tls1</SAMP></CENTER>
20727 </DD>
20729 <DT>DTLS1</DT>
20730 <DD>
20731 This parameter indicates that the connection to the server will be made
20732 over the SSL port, but using the DTLSv1 protocol, instead of the usual
20733 SSLv3 or SSLv2 protocols.
20734 Alpine must be linked with an SSL library for this option to be operational.
20737 <CENTER><SAMP>/dtls1</SAMP></CENTER>
20740 </DD>
20742 <DT>DTLS1_2</DT>
20743 <DD>
20744 This parameter indicates that the connection to the server will be made
20745 over the SSL port, but using the DTLSv1.2 protocol, instead of the usual
20746 SSLv3 or SSLv2 protocols.
20747 Alpine must be linked with an SSL library for this option to be operational.
20750 <CENTER><SAMP>/dtls1_2</SAMP></CENTER>
20753 </DD>
20755 <DT>TLS1_1</DT>
20756 <DD>
20757 This parameter indicates that the connection to the server will be made
20758 over the SSL port, but using the TLSv1.1 protocol, instead of the usual
20759 SSLv3 or SSLv2 protocols.
20760 Alpine must be linked with an SSL library for this option to be operational.
20763 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
20766 </DD>
20768 <DT>TLS1_2</DT>
20769 <DD>
20770 This parameter indicates that the connection to the server will be made
20771 over the SSL port, but using the TLSv1.2 protocol, instead of the usual
20772 SSLv3 or SSLv2 protocols.
20773 Alpine must be linked with an SSL library for this option to be operational.
20776 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
20779 </DD>
20781 <DT>TLS1_3</DT>
20782 <DD>
20783 This parameter indicates that the connection to the server will be made
20784 over the SSL port, but using the TLSv1.3 protocol, instead of the usual
20785 SSLv3 or SSLv2 protocols.
20786 Alpine must be linked with an SSL library for this option to be operational.
20789 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
20792 </DD>
20795 <DT>NoValidate-Cert</DT>
20796 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
20797 This is needed if the server uses self-signed certificates or if Alpine
20798 cannot validate the certificate for some other known reason.
20800 </DD>
20802 <DT>Anonymous</DT>
20803 <DD>This is a unary parameter (that means it does not have a value)
20804 indicating that the connection be logged in as
20805 &quot;anonymous&quot; rather than a specific user.
20806 Not all servers offer anonymous
20807 access; those which do generally only offer read-only access to certain
20808 &quot;public&quot; folders.
20811 <CENTER><SAMP>/anonymous</SAMP></CENTER>
20814 </DD>
20816 <DT>Secure</DT>
20817 <DD>This is a unary parameter indicating that the connection use the
20818 most secure authentication method mutually supported by Alpine and the
20819 server.
20820 Alpine is capable of authenticating connections to 
20821 the server using several methods.
20822 By default, Alpine will attempt each
20823 method until either a connection is established or the
20824 list of methods is exhausted.
20825 This parameter causes Alpine to instead fail 
20826 the connection if the first (generally most &quot;secure&quot;) method fails.
20829 <CENTER><SAMP>/secure</SAMP></CENTER>
20832 </DD>
20834 <DT>Submit</DT>
20835 <DD>This is a unary parameter for use with the
20836 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
20837 It indicates that the connection should be made to the Submit server
20838 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
20839 (port 587) instead of the SMTP port (25).
20840 At the time this help was written the submit option was equivalent to
20841 specifying port 587.
20844 <CENTER><SAMP>/submit</SAMP></CENTER>
20848 <CENTER><SAMP>host:587</SAMP></CENTER>
20851 </DD>
20853 <DT>Debug</DT>
20854 <DD>This is a unary parameter indicating that the connection be established
20855 in a verbose mode.  Basically, it causes Alpine to log the communication with
20856 the server in Alpine's debug file.
20857 Normally, the pine -d command-line flag would be used instead.
20859 </DD>
20861 <DT>NoRsh</DT>
20862 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
20863 the UNIX remote shell program.
20864 Including &quot;NoRsh&quot; will cause connections to this server to skip
20865 the &quot;rsh&quot; attempt.
20866 This might be useful to avoid long timeouts caused by rsh firewalls, for
20867 example.
20869 </DD>
20871 <DT>Loser</DT>
20872 <DD>This option makes sense only for IMAP servers that do not perform
20873 a SEARCH command correctly. If your filtering rules
20874 fail to filter some messages, that should have been filtered, then this
20875 option will make Alpine download all data necessary data to perform that 
20876 search. There is a performance penalty when using this option. Downloading 
20877 the data to perfom the search will take longer than requesting the IMAP
20878 server to perform the filtering, but the filtering will be done correctly.
20880 </DD>
20883 <DT>Service</DT>
20884 <DD>This parameter requires an associated value.  The default value is
20885 &quot;IMAP&quot; which indicates communication with the server based
20886 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
20887 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
20889 Other service values include:
20890  <DL>
20891  <DT>NNTP</DT>
20892  <DD>This value indicates communication with the server takes place via
20893 the Network News Transfer Protocol.  Use this to define a collection
20894 of newsgroups on a remote news server.  So
20897 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
20899 or just
20901 <CENTER><SAMP>/NNTP</SAMP></CENTER>
20904 is the way to specify NNTP access.
20906  </DD>
20908  <DT>POP3</DT>
20909  <DD>This value indicates communication with the server takes place via the
20910 Post Office Protocol 3 protocol.
20913 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
20915 or just
20917 <CENTER><SAMP>/POP3</SAMP></CENTER>
20920 Note that there are several important issues
20921 to consider when selecting this option:
20922 <OL>
20923  <LI> POP3 provides access to only your INBOX.  In other words,
20924 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
20925  <LI> Alpine's implementation of POP3 does not follow the traditional POP
20926 model and will leave your mail on the server. Refer to the
20927 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
20928  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
20929 </OL>
20930 </DD>
20931 </DL>
20932 </DL>
20935 Note that it is possible to include more than one parameter in a server
20936 specification by concatenating the parameters. For example:
20939 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
20943 &lt;End of help on this topic&gt;
20944 </BODY>
20945 </HTML>
20946 ======= h_composer_cntxt_server =======
20947 <HTML>
20948 <HEAD>
20949 <TITLE>Collection Server: Explained</TITLE>
20950 </HEAD>
20951 <BODY>
20952 <H1>Collection Edit Help -- Server Field</H1>
20954 This collection's &quot;Server:&quot; definition indicates the
20955 hostname of the server providing access to the folders in this
20956 collection.
20957 The syntax of this server name is the same as for other server names used
20958 in remote folder names in
20959 Alpine and is described
20960 <A HREF="h_folder_server_syntax">here</A>.
20963 &lt;End of help on this topic&gt;
20964 </BODY>
20965 </HTML>
20966 ======= h_composer_cntxt_path =======
20967 <HTML>
20968 <HEAD>
20969 <TITLE>Collection Path: Explained</TITLE>
20970 </HEAD>
20971 <BODY>
20972 <H1>Collection Edit Help -- Path Field</H1>
20974 The collection's &quot;Path:&quot; definition indicates the location
20975 of the folders in this collection.  If the path or any of its components
20976 do not exist, Alpine will prompt you for their creation when exiting the
20977 Add/Change screen.
20979 <P> 
20980 By default the path is interpreted as defining a section of your personal
20981 folder area.  This area and how you specify it are defined by the
20982 server, if one is specified in the collection, or, typically, the home
20983 directory if no server is defined.
20986 To define a collection outside the default &quot;area&quot;, prefix
20987 the path with the &quot;namespace&quot; to use when interpreting the
20988 given path.  If a namespace is specified, the Path begins with the
20989 sharp, &quot;#&quot;, character followed by the name of the namespace
20990 and then the namespace's path-element-delimiter.  Aside from the
20991 path's format, namespaces can also imply access rights, content
20992 policy, audience, location, and, occasionally, access methods.
20995 Each server exports its own set (possibly of size one) of 
20996 namespaces.  Hence, it's likely communication with your server's
20997 administrator will be required for specific configurations.  Some of
20998 the more common namespaces, however, include:
21000 <DL>
21001 <DT>#news.</DT>
21002 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
21003 names are hierarchically defined with each level delimited by a period.
21004 </DD>
21005 <DT>#public/</DT>
21006 <DD>This specifies a folder area that the server may export to the general
21007 public.
21008 </DD>
21009 <DT>#shared/</DT>
21010 <DD>This specifies a folder area that the folder may export to groups
21011 of users.
21012 </DD>
21013 <DT>#ftp/</DT>
21014 <DD>This specifies a folder area that is the same as that it may have 
21015 exported via the &quot;File Transfer Protocol&quot;.
21016 </DD>
21017 <DT>#mh/</DT>
21018 <DD>This specifies the personal folder area associated with folders
21019 and directories that were created using the MH message handling system.
21020 </DD>
21021 </DL>
21024 In addition, the server may support access to other user's folders,
21025 provided you have suitable permissions.  Common methods use a prefix
21026 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
21027 indicate the root of the other user's folder area.
21030 No, nothing's simple.
21033 &lt;End of help on this topic&gt;
21034 </BODY>
21035 </HTML>
21036 ======= h_composer_cntxt_view =======
21037 <HTML>
21038 <HEAD>
21039 <TITLE>Collection View: Explained</TITLE>
21040 </HEAD>
21041 <BODY>
21042 <H1>Collection Edit Help -- View Field</H1>
21044 The collection's &quot;View:&quot; definition provides a way to limit
21045 the displayed list of folders within a collection.  By default, only
21046 folders that contain the specified characters anywhere in their name
21047 are shown in the collection's folder list.
21050 Additionally, you can use a wildcard character to better control
21051 the list of folders selected for display.  The wildcard specifier is
21052 the star, &quot;*&quot;, character.
21055 So, for example, to define a collection of all folders ending with
21056 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
21057 quote characters!).  Or, similarly, to define a collection of folders
21058 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
21059 specify a view of &quot;a*z&quot;.
21062 &lt;End of help on this topic&gt;
21063 </BODY>
21064 </HTML>
21065 ======= h_composer_abook_add_server =======
21066 <HTML>
21067 <HEAD>
21068 <TITLE>Addressbook Server Name Field Explained</TITLE>
21069 </HEAD>
21070 <BODY>
21071 This field should be left blank if the address book is stored in a regular
21072 file on this system.  If it is a remote address book stored on an IMAP
21073 server then this is the name of that IMAP server.
21075 Look <A HREF="h_edit_nav_cmds">here</A>
21076 to see the available Editing and Navigation commands.
21078 &lt;End of help on this topic&gt;
21079 </BODY>
21080 </HTML>
21081 ======= h_composer_abook_add_folder =======
21082 <HTML>
21083 <HEAD>
21084 <TITLE>Addressbook Folder Name Field Explained</TITLE>
21085 </HEAD>
21086 <BODY>
21087 For a remote address book (one for which the Server Name is filled in)
21088 this is the name of a folder on the remote server. The address book data
21089 will be stored in this folder. This folder should be used only for
21090 storing this single address book, not for other address books or for
21091 other messages.
21093 For a local address book (one for which the Server Name is not filled in)
21094 this is the name of a file in which the address book will be stored.
21095 The file is in the same directory as the Alpine configuration file if the
21096 configuration file is local.
21097 If the configuration file is remote, then this will be in the home directory
21098 for Unix Alpine and in the directory specified by the
21099 &quot;-aux local_directory&quot; command line argument.
21101 Look <A HREF="h_edit_nav_cmds">here</A>
21102 to see the available Editing and Navigation commands.
21104 &lt;End of help on this topic&gt;
21105 </BODY>
21106 </HTML>
21107 ======= h_composer_abook_add_nick =======
21108 <HTML>
21109 <HEAD>
21110 <TITLE>Addressbook NickName Field Explained</TITLE>
21111 </HEAD>
21112 <BODY>
21113 This is just an optional nickname for this address book. If present, it
21114 is used in some of the displays and error messages in the address book
21115 maintenance screens. It is for your convenience only and serves no
21116 other purpose.
21118 Look <A HREF="h_edit_nav_cmds">here</A>
21119 to see the available Editing and Navigation commands.
21121 &lt;End of help on this topic&gt;
21122 </BODY>
21123 </HTML>
21124 ======= h_composer_qserv_cn =======
21125 <HTML>
21126 <HEAD>
21127 <TITLE>Directory Query Form Explained</TITLE>
21128 </HEAD>
21129 <BODY>
21131 Fill in as many of these fields as you wish to narrow down your
21132 search. All the fields you fill in must match in order for an entry
21133 to be returned. You may use the wildcard character &quot;*&quot; in
21134 any of the fields, it matches any zero or more characters at that
21135 point in the string. There are no implicit wildcards, so the match is
21136 exact unless you include wildcards.
21139 Note that if an attribute isn't present at all, then the match will fail.
21140 For example, if a server doesn't support the Locality attribute, then no
21141 matter what you put in the Locality field (other than leaving it empty)
21142 the search will fail.
21145 This field, the Common Name field, is typically a person's full name.
21148 <H1>EDITING and NAVIGATION COMMANDS</H1>
21149 <!--chtml if pinemode="function_key"-->
21150 <PRE>
21151 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21152 ^B (Left Arrow)    Back character       | ^D       Delete current character
21153 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21154 ^P (Up Arrow)      Previous line        |
21155 ^N (Down Arrow)    Next line            | F9       Cut marked text or
21156 ^A                 Beginning of line    |            delete current line
21157 ^E                 End of line          | F10      Undelete line(s)
21158 F7                 Previous page        |
21159 F8                 Next page            |-------------------------------------
21160 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21161 ----------------------------------------|
21162 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
21163 F2   Cancel      |   F1    Get help     |
21164 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
21165 </PRE>
21166 <!--chtml else-->
21167 <PRE>
21168 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21169 ^B (Left Arrow)    Back character       | ^D       Delete current character
21170 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21171 ^P (Up Arrow)      Previous line        |
21172 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
21173 ^A                 Beginning of line    |            delete current line
21174 ^E                 End of line          | ^U       Undelete line(s)
21175 ^Y                 Previous page        |
21176 ^V                 Next page            |-------------------------------------
21177 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21178 ----------------------------------------|
21179 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
21180 ^C   Cancel      |   ^G    Get help     |
21181 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
21182 </PRE>
21183 <!--chtml endif-->
21184 <P><UL>
21185 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21186 </UL><P>
21187 &lt;End of help on this topic&gt;
21188 </BODY>
21189 </HTML>
21190 ======= h_composer_qserv_sn =======
21192 The Surname is usually the family name of a person.
21194 <End of help on this topic>
21195 ======= h_composer_qserv_gn =======
21197 This is the part of a person's name that isn't the surname or initials.
21199 <End of help on this topic>
21200 ======= h_composer_qserv_mail =======
21202 This is the email address of a person.
21204 <End of help on this topic>
21205 ======= h_composer_qserv_org =======
21207 This is the organization a person belongs to.
21209 <End of help on this topic>
21210 ======= h_composer_qserv_unit =======
21212 This is the organizational unit a person belongs to.
21214 <End of help on this topic>
21215 ======= h_composer_qserv_country =======
21217 This is the country a person belongs to.
21219 <End of help on this topic>
21220 ======= h_composer_qserv_state =======
21222 This is the state a person belongs to.
21224 <End of help on this topic>
21225 ======= h_composer_qserv_locality =======
21227 This is the locality a person belongs to.
21229 <End of help on this topic>
21230 ======= h_composer_qserv_custom =======
21232 This one is for advanced users only! If you put something in this field,
21233 then the rest of the fields are ignored.
21235 This field may be set to the string representation of an LDAP search
21236 filter (see RFC1960). Here are some examples:
21238 To search for an entry with a surname equal to "clinton" you could set
21239 the custom filter to:
21241      (sn=clinton)
21242     
21243 This is equivalent to putting "clinton" in the SurName field.
21244 To search for an entry that has a surname that begins with "clint" and
21245 has a givenname equal to "william" you could use:
21247      (&(sn=clint*)(givenname=william))
21248     
21249 This is equivalent to setting the SurName field to "clint*" and the
21250 GivenName field to "william".
21251 To search for an entry where either the common name OR the email address
21252 contains "abcde" you could use:
21254      (|(cn=*abcde*)(mail=*abcde*))
21256 That isn't equivalent to anything you can do by setting the other fields
21257 because of the OR.
21259 <End of help on this topic>
21260 ======= h_composer_qserv_qq =======
21262 This one is a little different from the rest of the categories.  It causes
21263 a search to be formed from the configured search filter that you filled
21264 in when you added the directory server to your configuration. It can also
21265 be combined with the other fields if you'd like.
21267 <End of help on this topic>
21268 ======= h_address_format =======
21269 <HTML>
21270 <HEAD>
21271 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
21272 </HEAD>
21273 <BODY>
21274 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
21276 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
21277 and then a domain, with no spaces.  
21278 For example, jsmith@art.example.com might be the email address
21279 of a person  
21280 with the username &quot;jsmith&quot; who has an account in the domain
21281 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
21282 right of the &quot;@&quot; sign can vary - a shorter example would be 
21283 isabelle@elsewhere.edu (the shortest possible form: here, only the 
21284 organization's domain is specified after the &quot;@&quot; sign); a longer 
21285 example would be 
21286  jsingh@shakti.edutech.example.com
21287 (here, the name of the host &quot;shakti&quot; in the domain 
21288 edutech.example.com is also specified).  
21289 <P>  
21290 If you do not know the exact email address of someone you want to write 
21291 to, ask them what it is using other means of communication than email; or 
21292 use the tools for 
21293 finding people's addresses that are available on the Internet.
21295 If you are sending to someone on the same system as you are, you can leave
21296 the &quot;@&quot; sign and all the information to its right off of the 
21297 address, and Alpine will fill it in automatically, 
21298 unless the feature 
21299 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
21302 When an email address you send a message to is not reachable -- either because 
21303 it is simply an incorrect address, or because email can temporarily not be 
21304 delivered to it due to a technical problem on the way to or at the recipient's 
21305 end -- you will almost always get an error notification email message back.
21307 If you encounter problems with, or have questions about, email delivery or
21308 email address syntax, contact your local network computing consultants.
21309 <P><UL>
21310 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21311 </UL>
21313 &lt;End of help on this topic&gt;
21314 </BODY>
21315 </HTML>
21316 ======= h_flag_user_flag =======
21317 <HTML>
21318 <HEAD>
21319 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
21320 </HEAD>
21321 <BODY>
21322 <H1>STATUS FLAG: User Defined Keyword</h1>
21324 This is a keyword that is defined for this folder.
21325 It was most likely defined by the owner of the folder.
21326 Alpine will not set or clear this flag on its own.
21328 <P><UL>
21329 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21330 </UL><P>
21331 &lt;End of help on this topic&gt;
21332 </BODY>
21333 </HTML>
21334 ======= h_flag_important =======
21335 <html>
21336 <title>STATUS FLAG: Important</title>
21337 <body>
21338 <h1>STATUS FLAG: Important</h1>
21341 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
21342 MESSAGE&nbsp;INDEX
21343 screen, can only be set by the user, and is intended to be used in
21344 whatever fashion makes sense to you.  You are the only one that can set or
21345 clear it. 
21348 &lt;End of help on this topic&gt;
21349 </BODY>
21350 </HTML>
21351 ======= h_flag_new =======
21352 <html>
21353 <title>STATUS FLAG: New</title>
21354 <body>
21355 <h1>STATUS FLAG: New</h1>
21358 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
21359 MESSAGE&nbsp;INDEX screen,
21360 is automatically set when messages are delivered to your Inbox (or other
21361 folder specified outside of Alpine).  Likewise, it is cleared automatically
21362 the first time you read the message it is associated with.
21365 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
21366 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
21367 you'd like to be reminded of it next time you read mail.  This can be done
21368 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
21372 &lt;End of help on this topic&gt;
21373 </BODY>
21374 </HTML>
21375 ======= h_flag_answered =======
21376 <html>
21377 <title>STATUS FLAG: Answered</title>
21378 <body>
21379 <h1>STATUS FLAG: Answered</h1>
21381 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
21382 MESSAGE&nbsp;INDEX
21383 screen, is automatically set when you reply to a message.  This flag is not
21384 automatically cleared.
21387 &lt;End of help on this topic&gt;
21388 </BODY>
21389 </HTML>
21390 ======= h_flag_forwarded =======
21391 <html>
21392 <title>STATUS FLAG: Forwarded</title>
21393 <body>
21394 <h1>STATUS FLAG: Forwarded</h1>
21396 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
21397 MESSAGE&nbsp;INDEX
21398 screen, is automatically set when you forward a message.  This flag is not
21399 automatically cleared.
21402 &lt;End of help on this topic&gt;
21403 </BODY>
21404 </HTML>
21405 ======= h_flag_deleted =======
21406 <html>
21407 <title>STATUS FLAG: Deleted</title>
21408 <body>
21409 <h1>STATUS FLAG: Deleted</h1>
21411 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
21412 MESSAGE&nbsp;INDEX
21413 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
21414 It is cleared
21415 when you use the &quot;U&nbsp;Undelete&quot; command.
21418 Messages marked with this flag will be permanently removed from
21419 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
21420 command, or
21421 when you indicate acceptance of their removal upon leaving the folder.
21424 Note, there can be other actions implicit in the
21425 &quot;D&nbsp;Delete&quot; command,
21426 such as advancing to the next message, that may be momentarily undesirable.
21427 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
21428 flag <A HREF="h_common_flag">explicitly</A>.
21431 &lt;End of help on this topic&gt;
21432 </BODY>
21433 </HTML>
21434 ====== h_config_incoming_timeo ======
21435 <HTML>
21436 <HEAD>
21437 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
21438 </HEAD>
21439 <BODY>
21440 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
21442 This option has no effect unless the feature
21443 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21444 is set, which in turn has no effect unless
21445 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21446 is set.
21448 Sets the time in seconds that Alpine will
21449 attempt to open a network connection used for monitoring for Unseen
21450 messages in Incoming Folders. The default is 5.
21451 If a connection has not completed within this many seconds Alpine will
21452 give up and consider it a failed connection.
21454 <UL>   
21455 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21456 </UL><P>
21457 &lt;End of help on this topic&gt;
21458 </BODY>
21459 </HTML>
21460 ====== h_config_psleep ======
21461 <HTML>
21462 <HEAD>
21463 <TITLE>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</TITLE>
21464 </HEAD>
21465 <BODY>
21466 <H1>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</H1>
21469 In the good old days a mailcap viewer was used to examine an 
21470 attachment before saving it, and after viewing the attachment control 
21471 would return to the operating system when the viewer was closed. Therefore, 
21472 when the mailcap viewer returned control to the operating system, it 
21473 could be assumed that the user who opened the attachment was done
21474 examining it, and the copy of the attachment that was used, could be removed.
21477 However, today this assumption is not longer valid. Some viewers return 
21478 control to the operating system before they actually read the attachment
21479 to be examined. This causes Alpine to delete the attachment before it 
21480 is read by the viewer, causing the viewer to fail opening the attachment.
21483 In order to work around this problem, Alpine checks, after the viewer has 
21484 returned control to the operating system, if there is any process that is 
21485 using the attachment. This variable controls the number of seconds that 
21486 must elapse between checks. Once it is found that no process is using the 
21487 attachment, this is removed.
21490 The minimum value for this variable is 60 (checks will be made once per 
21491 minute), and the maximum value is 600 (checks will be made once every 10 
21492 minutes). The default value is 60.
21495 <UL>   
21496 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21497 </UL><P>
21498 &lt;End of help on this topic&gt;
21499 </BODY>
21500 </HTML>
21501 ====== h_config_incoming_interv ======
21502 <HTML>
21503 <HEAD>
21504 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
21505 </HEAD>
21506 <BODY>
21507 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
21509 This option has no effect unless the feature
21510 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21511 is set, which in turn has no effect unless
21512 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21513 is set.
21515 This option specifies, in seconds, how often Alpine will check
21516 for new mail and state changes in Incoming Folders when Incoming Folders
21517 Checking is turned on.
21518 The default is 3 minutes (180).
21519 This value applies only to folders that are local to the system that
21520 Alpine is running on or that are accessed using the IMAP protocol.
21521 The similar option
21522 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
21523 applies to all other monitored folders.
21525 <UL>   
21526 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21527 </UL><P>
21528 &lt;End of help on this topic&gt;
21529 </BODY>
21530 </HTML>
21531 ====== h_config_incoming_second_interv ======
21532 <HTML>
21533 <HEAD>
21534 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
21535 </HEAD>
21536 <BODY>
21537 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
21539 This option has no effect unless the feature
21540 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21541 is set, which in turn has no effect unless
21542 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21543 is set.
21545 This option together with the option
21546 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21547 specifies, in seconds, how often Alpine will check
21548 for new mail and state changes in Incoming Folders when Incoming Folders
21549 Checking is turned on.
21550 The default for this option is 3 minutes (180).
21551 For folders that are local to this system or
21552 that are accessed using the IMAP protocol
21553 the value of the option
21554 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21555 is used.
21556 For all other monitored folders, the value of this option is used.
21558 The reason there are two separate options is because it is usually
21559 less expensive to check local and IMAP folders than it is to check
21560 other types, like POP or NNTP folders.
21561 You may want to set this secondary value to a higher number than
21562 the primary check interval.
21564 <UL>   
21565 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21566 </UL><P>
21567 &lt;End of help on this topic&gt;
21568 </BODY>
21569 </HTML>
21570 ====== h_config_incoming_list ======
21571 <HTML>
21572 <HEAD>
21573 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
21574 </HEAD>
21575 <BODY>
21576 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
21578 This option has no effect unless the feature
21579 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21580 is set, which in turn has no effect unless
21581 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21582 is set.
21584 When monitoring the Incoming Message Folders for Unseen messages Alpine will
21585 normally monitor all Incoming Folders.
21586 You may use this option to restrict the list of monitored folders to a
21587 subset of all Incoming Folders.
21589 <UL>   
21590 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21591 </UL><P>
21592 &lt;End of help on this topic&gt;
21593 </BODY>
21594 </HTML>
21595 ====== h_config_pers_name ======
21596 <HTML>
21597 <HEAD>
21598 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
21599 </HEAD>
21600 <BODY>
21601 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
21603 This value is used to determine the full name part of the "From" address
21604 on messages you send.
21605 <!--chtml if pinemode="os_windows"-->
21606  PC-Alpine requires that this be set in order to properly construct the "From" address.
21607 <!--chtml else-->
21608  If unset, Unix Alpine will obtain your full name from
21609  the system password file. PC-Alpine, on the other hand, requires that this be set.
21610 <!--chtml endif-->
21612 If you want to change the value of what gets included in the From header
21613 in messages you send (other than just the Personal Name)
21614 look <A HREF="h_config_change_your_from">here</A> for a description.
21615 <P><UL>
21616 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21617 </UL><P>
21618 &lt;End of help on this topic&gt;
21619 </BODY>
21620 </HTML>
21621 ====== h_config_pruned_folders ======
21622 <html>
21623 <header>
21624 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
21625 </header>
21626 <body>
21627 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
21629 This variable allows you to define a list of one or more folders that
21630 Alpine will offer to prune for you in the same way it automatically offers
21631 to prune your "sent-mail" folder each month.
21632 Each folder in this list must be a folder in your default folder collection
21633 (the first folder collection if you have more than one), and it is just
21634 the relative name of the folder in the collection, not the fully-qualified name.
21635 It is similar to sent-mail.
21636 Instead of something like
21638 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
21640 the correct value to use would be
21642 <CENTER><SAMP>folder</SAMP></CENTER>
21644 There is an assumption here that your first collection is the folders in
21646 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
21649 Once a month, for each folder listed, Alpine will offer to move
21650 the contents of the folder to a new folder of the same name but with
21651 the previous month's date appended.  Alpine will then look for any such
21652 date-appended folder names created for a previous month, and offer each
21653 one it finds for deletion.
21656 If you decline the first offer, no mail is moved and no new folder is
21657 created.
21660 The new folders will be created
21661 in your default folder collection.
21664 <UL>   
21665 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21666 </UL><P>
21667 &lt;End of help on this topic&gt;
21668 </body>
21669 </html>
21670 ====== h_config_upload_cmd ======
21671 <HTML>
21672 <HEAD>
21673 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
21674 </HEAD>
21675 <BODY>
21676 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
21678 This option affects the behavior of the Composer's &quot;Read File&quot; 
21679 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
21680 commands.  It specifies
21681 a Unix program name, and any necessary command line arguments, that Alpine can
21682 use to transfer files from your personal computer into messages that you are
21683 composing.<P>
21685 <B>Note:</B> this facility is intended for use with serial line transfer 
21686 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21687 to work with TCP/IP file transfer programs such as ftp.<P>
21689 If a program is specified, the commands listed above are modified to offer a
21690 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
21691 specified here must match the transfer program or protocol available on the
21692 personal computer.<P>
21694 Alpine expects to exchange uploaded data via a file on your Unix system.  When
21695 the specified upload program finishes, Alpine expects the uploaded data to be
21696 contained in this file.<P>
21698 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
21699 generates a
21700 temporary file name that it will pass to the specified Unix program.  Alpine
21701 will read the resulting uploaded text from this file and then delete it when
21702 the upload command is finished.<P>
21704 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
21705 prompt
21706 you for the name of the file that is to contain the uploaded information that
21707 it is to attach.  Alpine will attach this file to the composition, but will
21708 <B>not</B> delete this file after the upload command is finished.<P>
21710 The special token &quot;_FILE_&quot; may be included among the Unix program's 
21711 command
21712 line arguments.  Alpine will replace this symbol with the name of the file
21713 being used to exchange the uploaded information.  This token allows you to
21714 position the file name where it is required in the Unix program's command
21715 line arguments.<P>
21717 If the &quot;_FILE_&quot; token is not present in the specified command, the
21718 temporary file's name is automatically appended to the specified Unix
21719 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21720 <B>last</B> command line argument.
21721 <P><UL>
21722 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21723 </UL><P>
21724 &lt;End of help on this topic&gt;
21725 </BODY>
21726 </HTML>
21727 ====== h_config_upload_prefix ======
21728 <HTML>
21729 <HEAD>
21730 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
21731 </HEAD>
21732 <BODY>
21733 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
21735 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
21736 It defines text to be written to the terminal emulator (via standard output)
21737 immediately prior to starting upload command.  This is useful for
21738 integrated serial line file transfer agents that permit command passing
21739 (e.g., Kermit's APC method).<P>
21741 The special token &quot;_FILE_&quot; may be included in the string specification.
21742 That symbol will be replaced with the (Alpine-created) name of the temporary
21743 file in which Alpine will expect to find the uploaded file.
21744 <P><UL>
21745 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21746 </UL><P>
21747 &lt;End of help on this topic&gt;
21748 </BODY>
21749 </HTML>
21750 ====== h_config_download_cmd ======
21751 <HTML>
21752 <HEAD>
21753 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
21754 </HEAD>
21755 <BODY>
21756 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
21758 This option affects the behavior of the Export command.  It specifies a Unix
21759 program name, and any necessary command line arguments, that Alpine can use to
21760 transfer the exported message to your personal computer's disk.<P>
21761 Note: this facility is intended for use with serial line transfer 
21762 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21763 to work with TCP/IP file transfer programs such as ftp.<P>
21764 If a program is specified, the Export command is modified to offer a
21765 subcommand (^V) to activate the transfer (in lieu of saving it to
21766  the machine where Alpine is running).  Obviously, the Unix program
21767 specified here must match the transfer program or protocol available on the
21768 personal computer.<P>
21770 When this subcommand is selected and before Alpine invokes the specified Unix
21771 program, Alpine will create a temporary file containing the text of the
21772 exported message.  Alpine uses this file to pass the exported message text to
21773 the specified Unix program.<P>
21775 The special token &quot;_FILE_&quot; may be included among the Unix program's command
21776 line arguments.  Alpine will replace this symbol with the temporary file's name
21777 before executing the Unix program.  This token allows you to position the
21778 file name where it is required in the Unix program's command line arguments.
21780 If the &quot;_FILE_&quot; token is not present in the specified command, the
21781 temporary file's name is automatically appended to the specified Unix
21782 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21783 <B>last</B> command line argument.
21784 <P><UL>
21785 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21786 </UL><P>
21787 &lt;End of help on this topic&gt;
21788 </BODY>
21789 </HTML>
21790 ====== h_config_download_prefix ======
21791 <HTML>
21792 <HEAD>
21793 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
21794 </HEAD>
21795 <BODY>
21796 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
21798 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
21799 It defines text to be written to the terminal emulator (via standard output)
21800 immediately prior to starting the download command.  This is useful for
21801 integrated serial line file transfer agents that permit command passing
21802 (e.g., Kermit's APC method).
21804 The special token &quot;_FILE_&quot; may be included in the string 
21805 specification.
21806 That symbol will be replaced with the (Alpine-created) name of the temporary
21807 file into which Alpine will place the message to be downloaded.
21808 <P><UL>
21809 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21810 </UL><P>
21811 &lt;End of help on this topic&gt;
21812 </BODY>
21813 </HTML>
21814 ====== h_config_mailcap_path ======
21815 <HTML>
21816 <HEAD>
21817 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
21818 </HEAD>
21819 <BODY>
21820 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
21821 This variable is used to replace Alpine's default mailcap file search path.
21822 It takes one or more file names (full paths must be specified) in which to
21823 look for mail capability data.  The default search path can be found in this
21824 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
21825 If there is more than one file name listed, list members should be delimited
21826 by 
21827 <!--chtml if pinemode="os_windows"-->
21828 a semi-colon (;) under Windows; for example:<PRE>
21829         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
21830 </PRE>
21831 <!--chtml else-->
21832 a colon (:) under UNIX; for example:<PRE>
21833         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
21834 </PRE>
21835 <!--chtml endif-->
21836 <P><UL>
21837 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21838 </UL>
21840 &lt;End of help on this topic&gt;
21841 </BODY>
21842 </HTML>
21843 ====== h_config_mimetype_path ======
21844 <HTML>
21845 <HEAD>
21846 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
21847 </HEAD>
21848 <BODY>
21849 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
21851 This variable is used to replace Alpine's default mime.types file search path.
21852 It takes one or more file names (full paths must be specified) in which to
21853 look for file-name-extension to MIME type mapping data.  The default search
21854 path can be found in this
21855 <A HREF="h_news_config">Alpine Configuration</A> help.
21859 If there is more than one file name listed, list members should be delimited
21860 by a colon (:) under UNIX and a semi-colon (;) under Windows.
21862 &lt;End of help on this topic&gt;
21863 </BODY></HTML>
21864 ====== h_config_set_att_ansi ======
21865 <HTML><HEAD>
21866 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
21867 </HEAD>
21868 <BODY>
21869 <H1>OPTION: Set printer to attached ansi printer</H1>
21871 Type "S" to set your printer to "attached-to-ansi".<BR>
21872 It is OK to include "attached-to-ansi" in your personal list below.
21874 &lt;End of help on this topic&gt;
21875 </BODY></HTML>
21876 ====== h_config_set_att_ansi2 ======
21877 <HTML><HEAD>
21878 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
21879 </HEAD>
21880 <BODY>
21881 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
21883 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
21884 It is OK to include "attached-to-ansi-no-formfeed" in your personal
21885 list below.
21889 This is the same as the "attached-to-ansi" option except that a
21890 formfeed character will not be appended to the end of the print job.
21891 If your printer already ejects the paper by itself at the end of the
21892 job, you may prefer the "no-formfeed" form of this printer so that you
21893 don't get an extra blank page between print jobs.
21896 &lt;End of help on this topic&gt;
21897 </BODY></HTML>
21898 ====== h_config_set_att_wyse ======
21899 <HTML><HEAD>
21900 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
21901 </HEAD>
21902 <BODY>
21903 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
21905 Type "S" to set your printer to "attached-to-wyse".<BR>
21906 It is OK to include "attached-to-wyse" in your personal list below.
21908 This is very similar to "attached-to-ansi".
21909 The only difference is in the control characters sent to turn the printer
21910 on and off.
21911 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
21912 to turn on the printer and ESC LEFT_BRACKET 4 i
21913 to turn it off.
21914 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
21915 &lt;End of help on this topic&gt;
21916 </BODY></HTML>
21917 ====== h_config_set_att_wyse2 ======
21918 <HTML><HEAD>
21919 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
21920 </HEAD>
21921 <BODY>
21922 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
21924 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
21925 It is OK to include "attached-to-wyse-no-formfeed" in your personal
21926 list below.
21930 This is the same as the "attached-to-wyse" option except that a
21931 formfeed character will not be appended to the end of the print job.
21932 If your printer already ejects the paper by itself at the end of the
21933 job, you may prefer the "no-formfeed" form of this printer so that you
21934 don't get an extra blank page between print jobs.
21937 &lt;End of help on this topic&gt;
21938 </BODY></HTML>
21939 ====== h_config_set_stand_print ======
21940 <HTML>
21941 <HEAD>
21942 <TITLE>OPTION: Set default printer</TITLE>
21943 </HEAD>
21944 <H1>OPTION: Set default printer</H1>
21945 <BODY>
21946 Move to the printer you want and type "S" to set it to be your
21947 default printer.  This list is not modifiable by you and has been
21948 set up by the system administrators.  If there is more than one printer
21949 listed in the Command List, you will be able to cycle through that
21950 whole list at the time you print, starting with your default.
21951 It is OK to include entries from this Standard list in your personal
21952 list below.
21954 &lt;End of help on this topic&gt;
21955 </BODY>
21956 </HTML>
21957 ====== h_config_set_custom_print ======
21958 <HTML>
21959 <HEAD>
21960 <TITLE>OPTION: Set default printer</TITLE>
21961 </HEAD>
21962 <H1>OPTION: Set default printer</H1>
21963 <BODY>
21964 You may add as many print commands as you want to your personal list.
21965 Specify one of them as your default printer by moving to the printer
21966 you want and typing "S".  If there is more than one printer listed
21967 in the Command List, you will be able to cycle through that list at
21968 the time you print, starting with your default.  It is OK to include
21969 entries from the Standard list above or to include the command
21970 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
21971 "attached-to-wyse-no-formfeed" as one of the entries here.
21973 &lt;End of help on this topic&gt;
21974 </BODY>
21975 </HTML>
21976 ====== h_config_user_id =====
21977 <HTML>
21978 <HEAD>
21979 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
21980 </HEAD>
21981 <BODY>
21982 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
21984 This value is used as part of the "From" address on messages you send.
21985 It is also the default login name for remote IMAP server access.  Set this
21986 to the username part you want to appear on outgoing email.
21988 If you want to change the value of what gets included in the From header
21989 in messages you send (other than just the User ID)
21990 look <A HREF="h_config_change_your_from">here</A> for a description.
21992 <P><UL>   
21993 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21994 </UL><P>
21995 &lt;End of help on this topic&gt;
21996 </BODY>
21997 </HTML>
21998 ====== h_config_user_dom =====
21999 <HTML>
22000 <HEAD>
22001 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
22002 </HEAD>
22003 <BODY>
22004 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
22006 This value specifies the domain part (right-hand side) of your return
22007 address on outgoing email and is also used as the default domain for email
22008 composed to a local user.
22009 <!--chtml if pinemode="os_windows"-->
22010  This value is required for PC-Alpine. If you are unsure as to what this should be,
22011  contact your local help desk, system administrator, or Internet Service Provider.
22012 <!--chtml else-->
22013  If unset, Unix Alpine will obtain the domain from
22014  the system.  Often this value will be set for your whole site by the
22015  system administrator.<P>
22016 <!--chtml endif-->
22017 If you set this, see also the <A HREF="h_config_quell_local_lookup">
22018 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
22020 If you want to change the value of what gets included in the From header
22021 in messages you send (other than just the User Domain)
22022 look <A HREF="h_config_change_your_from">here</A> for a description.
22023 <P><UL>
22024 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22025 </UL><P>
22026 &lt;End of help on this topic&gt;
22027 </BODY>
22028 </HTML>
22029 ====== h_config_smtp_server =====
22030 <HTML>
22031 <HEAD>
22032 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
22033 </HEAD>
22034 <BODY>
22035 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
22036 This value specifies the name of one or more SMTP 
22037 (Simple Mail Transfer Protocol) servers for sending mail. 
22038 <!--chtml if pinemode="os_windows"-->
22039 You must have an SMTP server for use with PC-Alpine.
22040 SMTP servers are
22041 normally set up by a system administrator for use by all members of a given
22042 campus or department.
22043 Contact your local help desk to ask what SMTP
22044 servers you should use.  
22045 <!--chtml else-->
22046 Unix Alpine users may not need to set an SMTP server.
22047 Alpine will attempt to execute the program (usually sendmail) that is used
22048 to insert mail into the mail system.
22049 If this works for you, you may leave this option blank.
22050 If there is an SMTP server running on the Unix host you may be able to
22051 improve sending performance slightly by setting the SMTP server option
22052 to &quot;localhost&quot; or to the actual name of the Unix host.
22054 If the Unix host doesn't work the way Alpine was expecting you will need to
22055 set the value of this option.
22056 SMTP servers are
22057 normally set up by a system administrator for use by all members of a given
22058 campus or department.
22059 Contact your local help desk to ask what SMTP
22060 servers you should use.  
22061 <!--chtml endif-->
22063 Your SMTP server may offer SMTP AUTH authentication.
22064 It may even require it.
22065 If your SMTP server offers SMTP AUTH authentication you may specify a
22066 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
22067 This parameter requires an associated value,
22068 the username identifier with which to establish the server
22069 connection.
22070 An example might be:
22073 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
22076 If AUTH authentication is offered by the server, this will cause Alpine to
22077 attempt to use it.
22078 If AUTH authentication is not offered by the server, this will cause Alpine
22079 to fail sending with an error similar to:
22082 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
22085 Another type of authentication that is used by some ISPs is called
22086 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
22087 which means that you have to authenticate
22088 yourself to the POP or IMAP server by opening a mailbox before you
22089 can send mail.
22090 To do this, you usually only have to open your INBOX.
22093 You may tell Alpine to use the
22094 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
22095 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
22096 parameter
22097 in this option.
22098 At this time &quot;/submit&quot; is simply equivalent to specifying
22099 port 587, though it may imply more than that at some point in the future.
22100 Some ISPs are blocking port 25 in order to reduce the amount of spam
22101 being sent to their users.
22102 You may find that the submit option allows you to get around such a block.
22105 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
22108 To specify any non-standard port number on the SMTP server you may follow
22109 the hostname with a colon followed by the portnumber.
22112 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
22115 Normally, when a connection is made to the Smtp-Server Alpine will attempt
22116 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
22117 If that fails then a non-encrypted connection will be attempted instead.
22118 You may specify that a TLS connection is required if you wish.
22119 If you append &quot;/tls&quot; to the name then the connection will fail
22120 instead of falling back to a non-secure connection.
22123 <CENTER><SAMP>smtpserver.example.com/tls</SAMP></CENTER>
22127 For more details about server name possibilities see
22128 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22131 <UL>
22132 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22133 </UL>
22135 &lt;End of help on this topic&gt;
22136 </BODY>
22137 </HTML>
22138 ====== h_config_nntp_server =====
22139 <HTML>
22140 <HEAD>
22141 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
22142 <BODY>
22143 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
22145 This value specifies the name of one or more NNTP
22146 (Network News Transfer Protocol)
22147 servers for reading and posting USENET news.
22148 NNTP servers are normally
22149 set up by a system administrator for use by all members of a given campus
22150 or department.
22151 Contact your local help desk to ask what NNTP servers you should use.  
22152 <!--chtml if pinemode="os_windows"--><!--chtml else-->
22153 Often Unix Alpine users will find that this variable has been
22154 set for the whole system (and they don't have to worry about it).  
22155 <!--chtml endif-->
22156 When you define an NNTP server here, Alpine implicitly defines a news
22157 collection for you, assuming that server as the news server and assuming
22158 that you will use the NNTP protocol and a local newsrc configuration file
22159 for reading news.
22160 For more about reading news with Alpine, see
22161 <A HREF="h_reading_news">how to use Alpine to read news</A>.
22163 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
22164 or &quot;AUTHINFO USER&quot; authentication.
22165 It may even require it.
22166 If your NNTP server does offer such authentication you may specify a user name
22167 parameter to cause Alpine to attempt to authenticate.
22168 The same is true for the server name in a folder collection that uses NNTP.
22169 This parameter requires an associated value,
22170 the username identifier with which to establish the server connection.
22171 An example might be:
22174 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
22177 If authentication is offered by the server, this will cause Alpine to
22178 attempt to use it.
22179 If authentication is not offered by the server, this will cause Alpine
22180 to fail with an error similar to:
22183 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
22185 For more details about the server name possibilities see
22186 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22187 <P><UL>
22188 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22189 </UL><P>
22190 &lt;End of help on this topic&gt;
22191 </BODY>
22192 </HTML>
22193 ====== h_config_inbox_path =====
22194 <HTML>
22195 <HEAD>
22196 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
22197 </HEAD>
22198 <BODY>
22199 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
22201 This value overrides the default value of your INBOX name/path/location.
22202 <!--chtml if pinemode="os_windows"-->
22203 PC-Alpine users must specify an inbox path and it must be a folder on an
22204 IMAP server.  
22205 <!--chtml else-->
22206 Unix and VMS Alpine users will often find that this variable
22207 has been pre-configured by your system administrator.  
22208 <!--chtml endif-->
22209 You may be able to specify an alternate INBOX that is either a local folder 
22210 or a folder on an IMAP server.
22212 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
22213 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
22214 mail server.
22216 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22217 details on the syntax of folder definitions.
22219 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
22220 mail is disappearing.
22221 <P><UL>
22222 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22223 </UL><P>
22224 &lt;End of help on this topic&gt;
22225 </BODY>
22226 </HTML>
22227 ====== h_config_change_your_from =====
22228 <HTML>
22229 <HEAD>
22230 <TITLE>How to Change your From Address</TITLE>
22231 </HEAD>
22232 <BODY>
22233 <H1>How to Change your From Address</H1>
22235 If the From address that Alpine includes in mail that you send is not correct,
22236 you may want to configure a different default value for the From address.
22237 You may follow these directions to change the default:
22240 <UL>
22241   <LI> Go to the Main Alpine Menu
22242   <LI> From there type the Setup Command
22243   <LI> From there type the Config Command
22244 </UL>
22247 You've probably already seen this SETUP CONFIGURATION screen.
22248 If not, there are many options you may want to set here.
22249 To set the value of the From header you may use the
22250 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
22251 Find it by scrolling down a few pages or use the WhereIs command to
22252 search for &quot;customized&quot;.
22253 You may want to read the help text associated with the option.
22255 To add a custom From header, type the Add command and enter the
22256 full header line, including the leading &quot;From:&nbsp;&quot;.
22257 For example:
22259 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22261 Now exit the Setup command and try sending mail to yourself to see
22262 what the From line looks like.
22264 When you are in the composer you may edit the custom From line by typing
22265 Ctrl-R while your cursor is in the headers of the message and then moving
22266 to the From line and editing.
22267 If you want to leave the default value the same but add the possibility
22268 of being able to edit the header when you compose, add just the header
22269 name without a value.
22270 For example:
22272 <CENTER><SAMP>From:</SAMP></CENTER>
22274 If you change your From address you may also find it useful to add the
22275 changed From address to the
22276 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22277 configuration option.
22279 <UL>   
22280 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22281 </UL><P>
22282 &lt;End of help on this topic&gt;
22283 </BODY>
22284 </HTML>
22285 ====== h_config_default_fcc =====
22286 <HTML>
22287 <HEAD>
22288 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
22289 </HEAD>
22290 <BODY>
22291 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
22293 This value specifies where a copy of outgoing mail should be saved.  If
22294 this is not a path name, it will be in the default collection for saves.
22295 Any valid folder specification, local or IMAP, is allowed.  This default
22296 folder carbon copy only applies when the 
22297 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
22298 is set to use the default folder.  
22299 <!--chtml if pinemode="os_windows"-->
22300 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
22301 <!--chtml else-->
22302 Unix Alpine default
22303 is normally &quot;sent-mail&quot; in the default folder collection. 
22304 <!--chtml endif-->
22306 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
22307 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
22308 IMAP server (remember that in order to later access this remote folder through Alpine, it
22309 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22310 for more information). An example:<p>
22311 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
22313 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
22315 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22316 details on the syntax of folder definitions.
22318 <UL>   
22319 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22320 </UL><P>
22321 &lt;End of help on this topic&gt;
22322 </BODY>
22323 </HTML>
22324 ====== h_config_def_save_folder =====
22325 <HTML>
22326 <HEAD>
22327 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
22328 </HEAD>
22329 <BODY>
22330 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
22332 This option determines the default folder name for save-message operations 
22333 (&quot;saves&quot;).
22335 If this is not a path name, it will be in the default collection for saves.
22336 Any valid folder specification, local or IMAP, is allowed.  This default
22337 folder only applies when the
22338 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
22339 doesn't override it.  
22340 <!--chtml if pinemode="os_windows"-->
22341 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
22342 <!--chtml else-->
22343 Unix Alpine default
22344 is normally &quot;saved-messages&quot; in the default folder collection.
22345 <!--chtml endif-->
22346 If you access your email through an IMAP server, especially if you often switch between Unix
22347 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
22348 IMAP server (remember that in order to later access this remote folder through Alpine, it
22349 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22350 for more information). An example:<p>
22351 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
22353 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22354 details on the syntax of folder definitions.
22356 <UL>   
22357 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22358 </UL><P>
22359 &lt;End of help on this topic&gt;
22360 </BODY>
22361 </HTML>
22362 ====== h_config_postponed_folder =====
22363 <HTML>
22364 <HEAD>
22365 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
22366 </HEAD>
22367 <BODY>
22368 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
22370 This value overrides the default name for the folder where postponed
22371 messages are saved.  If this is not a path name, it will be in the default
22372 collection for message Saves.  Any valid folder specification, local or
22373 remote, is allowed. 
22374 PC-Alpine default
22375 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
22376 The Unix Alpine default is normally &quot;postponed-msgs&quot;
22377 in the default collection. 
22379 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
22380 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
22381 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
22382 in all Alpine copies you use. 
22383 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
22384 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
22385 for more information). An
22386 example:<p> 
22387 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
22389 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22390 details on the syntax of folder definitions.
22392 <UL>   
22393 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22394 </UL><P>
22395 &lt;End of help on this topic&gt;
22396 </BODY>
22397 </HTML>
22398 ====== h_config_read_message_folder =====
22399 <HTML>
22400 <HEAD>
22401 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
22402 </HEAD>
22403 <BODY>
22404 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
22406 By virtue of specifying a folder name here, Alpine will be configured to
22407 save all messages that you have read during a session into the designated
22408 &quot;read messages&quot; folder.  This allows you to more easily distinguish
22409 between your really new email (in your INBOX) and those that you have
22410 already read.  Depending on how you define the 
22411 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22412 setting, you may or may not be asked when you quit
22413 Alpine if you want read messages to be moved to this folder.  In either
22414 case, moving the messages means they will be deleted from your INBOX.
22416 If this is not a path name, it will be in the default collection for
22417 saves.  Any valid folder specification, local or remote (via IMAP), is
22418 allowed.  There is no default for the name of the read message folder.
22420 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22421 details on the syntax of folder definitions.
22423 <UL>   
22424 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22425 </UL><P>
22426 &lt;End of help on this topic&gt;
22427 </BODY>
22428 </HTML>
22429 ====== h_config_form_folder =====
22430 <HTML>
22431 <HEAD>
22432 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
22433 </HEAD>
22434 <BODY>
22435 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
22437 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
22438 contain messages that you have composed and that are intended to be
22439 sent in their original form repeatedly.
22442 Setting this variable will alter Alpine's usual behavior when you
22443 execute the Compose command.  Normally, Alpine offers a chance to
22444 continue a postponed or interrupted message should one or the other
22445 exist.  When this variable is set to a folder name that exists, Alpine
22446 will also offer the chance to select a message from the folder to
22447 insert into the composer (much like when continuing a postponed message).
22448 The difference, however, is that Alpine will not automatically delete
22449 the selected message from the Form Letter Folder.
22451 Setting this variable will also affect Alpine's behavior when you
22452 Postpone a message from the composer.  Normally, Alpine simply stashes
22453 the message away in your
22454 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
22455 Regardless of the specified folder's existence, Alpine will ask which
22456 folder you intend the message to be stored in.  Choose the
22457 &quot;F&quot; option to store the message in your Form Letter Folder.
22458 This is the most common way to add a message to the folder.
22461 Another method of adding messages to the folder is via the Alpine
22462 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
22463 you expect to send in the same form again, you can enter the Form
22464 Letter Folder's name in this field.  Alpine, as usual, will copy the
22465 message as it's sent.  Note, when you later select this message from 
22466 your Form Letter Folder, it will have the same recipients as the original
22467 message.
22470 To delete a message from the Form Letter Folder, you can either select
22471 the folder from a suitable FOLDER LIST screen, or use the Delete
22472 command in the MESSAGE INDEX offered when selecting from the folder as
22473 part of the Compose command.  You can delete a Form Letter Folder just
22474 as any other folder from a suitable FOLDER LIST screen.
22477 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
22478 facility can be used
22479 to replace the Form Letter Folder.
22482 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22483 details on the syntax of folder definitions.
22486 <UL>   
22487 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22488 </UL><P>
22489 &lt;End of help on this topic&gt;
22490 </BODY>
22491 </HTML>
22492 ====== h_config_archived_folders =====
22493 <HTML>
22494 <HEAD>
22495 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
22496 </HEAD>
22497 <BODY>
22498 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
22500 This is like
22501 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
22502 only more general.  You may archive
22503 any of the folders in your incoming collection.  This is a list of folder
22504 pairs, with the first separated from the second in the pair by a space.
22505 The first folder in a pair is the folder you want to archive, and the
22506 second folder is the folder that read messages from the first should be
22507 moved to.  Depending on how you define the
22508 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22509 setting, you may or may not be asked when you
22510 leave the first folder if you want read messages to be moved to the
22511 second folder.  In either case, moving the messages means they will be
22512 deleted from the first folder.
22514 The name of the first folder in each pair can be either the technical
22515 specification of the folder (like what appears in your configuration file)
22516 or (much easier) the nickname that you gave the folder when you made it
22517 an incoming folder.
22519 For example:<p>
22520 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
22521 <p>or, using nicknames:<p>
22522 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
22524 If these are not path names, they will be in the default collection for
22525 saves. Any valid folder specification, local or remote (via IMAP), is
22526 allowed. There is no default.
22528 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22529 details on the syntax of folder definitions.
22531 <UL>   
22532 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22533 </UL><P>
22534 &lt;End of help on this topic&gt;
22535 </BODY>
22536 </HTML>
22537 ====== h_config_newsrc_path ======
22538 <HTML>
22539 <HEAD>
22540 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
22541 </HEAD>
22542 <BODY>
22543 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
22545 This option overrides the default name Alpine uses for your "newsrc" news
22546 status and subscription file.  If set, Alpine will take this value as the
22547 full pathname for the desired newsrc file.<P>
22549 If this option is <B>not</B> set, 
22550 <!--chtml if pinemode="os_windows"-->
22551 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
22552 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
22553 directory as your pinerc file for NEWSRC.
22554 <!--chtml else-->
22555 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
22556 your account's home directory).
22557 <!--chtml endif-->
22558 <P><UL>
22559 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22560 </UL>
22562 &lt;End of help on this topic&gt;
22563 </BODY>
22564 </HTML>
22565 ====== h_config_literal_sig =====
22566 <HTML>
22567 <HEAD>
22568 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
22569 </HEAD>
22570 <BODY>
22571 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
22573 With this option your actual signature, as opposed to
22574 the name of a file containing your signature,
22575 is stored in the Alpine configuration file.
22576 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
22579 This is simply a different way to store the signature.
22580 The signature is stored inside your Alpine configuration file instead of in
22581 a separate file.
22582 Tokens work the same way they do with the
22583 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
22584 help.
22587 The Setup/Signature command on Alpine's MAIN MENU will edit
22588 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
22589 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
22590 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
22591 instead.
22594 The two character sequence &#92;n (backslash followed by
22595 the character n) will be used to signify a line-break in your signature.
22596 You don't have to enter the &#92;n, but it will be visible in the
22597 SETUP CONFIGURATION window after you are done editing the signature.
22600 <UL>   
22601 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22602 </UL><P>
22603 &lt;End of help on this topic&gt;
22604 </BODY>
22605 </HTML>
22606 ====== h_config_signature_file =====
22607 <HTML>
22608 <HEAD>
22609 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
22610 </HEAD>
22611 <BODY>
22612 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
22614 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
22615 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
22616 You can tell that that is the case because the value of the
22617 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
22619 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
22621 You may either use all Literal Signatures (signatures stored in your
22622 configuration file) throughout Alpine, or all signature files.
22623 You can't mix the two.
22625 This is the name of a file that will be automatically inserted into
22626 outgoing messages.
22627 It typically contains information such as your
22628 name, email address and organizational affiliation.
22629 Alpine adds the
22630 signature into the message as soon as you enter the composer so you
22631 can choose to remove it or edit it on a message by message basis.
22632 Signature file placement in message replies is controlled by the
22633 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
22634 setting in the feature list.
22637 The default file name is
22638 <!--chtml if pinemode="os_windows"-->
22639 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
22640 PINERC file is a local file.
22641 If your PINERC file is remote, then it will be in the directory specified
22642 by the &quot;-aux local_directory&quot; command line option.
22643 <!--chtml else-->
22644 &quot;.signature&quot;.
22645 <!--chtml endif-->
22648 To create or edit your signature file choose Setup from the MAIN MENU
22649 and then select S for Signature (Main/Setup/Signature).  This puts you
22650 into the Signature Editor where you can enter a <EM>few</EM> lines of
22651 text containing your identity and affiliation.
22654 If the filename is followed by a vertical bar (|) then instead
22655 of reading the contents of the file the file is assumed to be a
22656 program that will produce the text to be used on its standard output.
22657 The program can't have any arguments and doesn't receive any input from Alpine,
22658 but the rest of the processing works as if the contents came from a file.
22661 Instead of storing the data in a local file, the
22662 signature data may be stored remotely in an IMAP folder.
22663 In order to do this, 
22664 you must use a remote name for the file.
22665 A remote <!--#echo var="VAR_signature-file"--> name might look like:
22667 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
22670 The syntax used here is the same as the syntax used for remote configuration
22671 files from the command line.
22672 Note that you may not access an existing signature file remotely,
22673 you have to create a new <EM>folder</EM> that contains the signature data.
22674 If the name you use here for the signature file is a remote name, then when
22675 you edit the file from the Setup/Signature command the data will be stored
22676 remotely in the folder.
22677 You aren't required to do anything special to create the folder, it
22678 gets created automatically if you use a remote name.
22681 Besides regular text, the signature file may also contain
22682 (or a signature program may produce) tokens that
22683 are replaced with text that usually depends on the message you are replying
22684 to or forwarding.
22685 For example, if the signature file contains the token
22687 <CENTER><SAMP>_DATE_</SAMP></CENTER>
22689 anywhere in the text, then that token is replaced by the date
22690 the message you are replying to or forwarding was sent.
22691 If it contains
22693 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
22695 that is replaced with the current date.
22696 The first is an example of a token that depends on the message you
22697 are replying to (or forwarding) and the second is an example which
22698 doesn't depend on anything other than the current date.
22699 You have to be a little careful with this facility since tokens that
22700 depend on the message you are replying to or forwarding will be replaced
22701 by nothing in the case where you are composing a new message from scratch.
22702 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
22703 in this respect.
22704 It allows you to use different signature files in different cases.
22707 The list of tokens available for use in the signature file is
22708 <A HREF="h_index_tokens">here</A>.
22711 Instead of, or along with the use of &quot;roles&quot; to give you
22712 different signature files in different situations, there is also
22713 a way to conditionally include text based
22714 on whether or not a token would result in specific replacement text.
22715 For example, you could include some text based on whether or not
22716 the _NEWS_ token would result in any newsgroups if it was used.
22717 This is explained in detail
22718 <A HREF="h_reply_token_conditionals">here</A>.
22719 This isn't for the faint of heart.
22721 In the very unlikely event that you want to include a literal token
22722 in the signature you must precede it with a backslash character.
22723 For example,
22725 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
22727 would produce something like
22729 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
22731 It is not possible to have a literal backslash followed by an expanded token.
22733 An alternate method for storing the signature data is available by using the
22734 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
22735 This variable will be used by default.
22737 <UL>   
22738 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22739 </UL><P>
22740 &lt;End of help on this topic&gt;
22741 </BODY>
22742 </HTML>
22743 ====== h_config_init_cmd_list =====
22744 <HTML>
22745 <HEAD>
22746 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
22747 </HEAD>
22748 <BODY>
22749 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
22751 The initial keystroke--or command--list option lets you start Alpine at
22752 any place you like.
22753 Whatever keystrokes you specify here will be executed
22754 by Alpine upon startup as a macro.
22755 The words SPACE, TAB, DOWN, UP, LEFT, and
22756 RIGHT indicate the pressing of those keys.
22757 CR indicates the pressing of the RETURN key.
22758 F1 through F12 represent the function keys, and ^ followed
22759 by a character indicates that key pressed along with the control key (in
22760 other words, ^P means Ctrl-P).
22761 As a shortcut notation, an element of the list may be several characters
22762 surrounded by double-quotes (").
22763 That will be expanded into the individual keystrokes
22764 (excluding the double-quote characters).
22765 For example, the quoted-string
22767 <P><CENTER>"ABC"</CENTER>
22770 is interpreted the same as the three separate list members
22772 <P><CENTER>A and B and C</CENTER>
22775 which is also the same as
22777 <P><CENTER>A,B,C</CENTER>
22780 An example: To view message 1 on startup,
22781 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
22783 <P><CENTER>I,J,1,CR,V</CENTER>
22786 An equivalent version of this is
22788 <P><CENTER>"IJ1",CR,V</CENTER>
22791 Restrictions: You cannot pre-type into the composer with the initial
22792 keystroke list, and you cannot mix function key commands with letter
22793 commands.
22795 <P><UL>   
22796 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22797 </UL>
22799 &lt;End of help on this topic&gt;
22800 </BODY>
22801 </HTML>
22802 ====== h_config_comp_hdrs =====
22803 <html>
22804 <header>
22805 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
22806 </header>
22807 <body>
22808 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
22810 You can control which headers you want visible when composing outgoing
22811 email using this option.
22812 You can specify any of the regular set, any
22813 <A HREF="h_compose_richhdr">Rich Header</A>,
22814 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22815 that you have already defined.
22816 If you use this setting at all, you must specify all the
22817 headers you want to see, you can't just add to the regular header set.
22818 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
22820 Note that the "Newsgroups:" header will be abbreviated in the Composer
22821 display, but should be spelled out in full here.<p>
22822 <UL>   
22823 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22824 </UL><P>
22825 &lt;End of help on this topic&gt;
22826 </body>
22827 </html>
22828 ====== h_config_custom_hdrs =====
22829 <HTML>
22830 <HEAD>
22831 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
22832 </HEAD>
22833 <BODY>
22834 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
22836 You may add your own custom headers to outgoing messages.
22837 Each header you specify here must include the header tag 
22838 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
22839 and may optionally include a value for that header.
22840 If you want to see these custom headers each time you compose a message,
22841 you must add them to your
22842 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
22843 otherwise they become part
22844 of the rich header set that you only see when you press the
22845 <A HREF="h_compose_richhdr">Rich Header</A>
22846 <!--chtml if pinemode="function_key"-->(F5)
22847 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
22848 (If you are looking for a way to change which headers are <EM>displayed</EM>
22849 when you view a message, take a look at the
22850 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
22851 option instead.)
22852 Here's an example that shows how you might set your From address
22854 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22856 and another showing how you might set a Reply-To address
22858 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
22860 You may also set non-standard header values here.
22861 For example, you could add
22863 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
22865 or even
22867 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
22869 If you include a value after the colon then that header will be included
22870 in your outgoing messages unless you delete it before sending.
22871 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
22872 it will not be included in outgoing messages unless you edit a value
22873 in manually.
22874 For example, if
22876 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
22878 is in the list, then the Reply-To header will be available for editing
22879 but won't be included unless a value is added while in the composer.
22881 It's actually a little more complicated than that.
22882 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
22883 defaults.
22884 If the message you are about to compose already has a value for a header,
22885 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
22886 For example, if you are Replying to a message the Subject field
22887 will already be filled in.
22888 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
22889 custom subject will <EM>NOT</EM> be used.
22890 The subject derived from the subject of the message you are Replying
22891 to will be used instead.
22893 It is also possible to make header setting even more complicated and more
22894 automatic by using
22895 <A HREF="h_rules_roles">Roles</A>,
22896 but if all you want to do is set a default value for a header, you don't
22897 need to think about Roles.
22899 If you change your From address you may also find it useful to add the
22900 changed From address to the
22901 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22902 configuration option.
22904 Limitation: Because commas are used to separate the list of
22905 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
22906 header contain a comma.
22907 Nor is there currently an &quot;escape&quot; mechanism provided
22908 to make this work.
22909 <P><UL>
22910 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22911 </UL>
22913 &lt;End of help on this topic&gt;
22914 </BODY>
22915 </HTML>
22916 ====== h_config_viewer_headers =====
22917 <HTML>
22918 <HEAD>
22919 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
22920 </HEAD>
22921 <BODY>
22922 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
22924 You may change the default list of headers that are viewed by listing
22925 the headers you want to view here.  If the headers in your
22926 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
22927 will be shown.  The order of the headers you list will be honored.  If
22928 the special value &quot;all-except&quot; is included as the first
22929 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
22930 message except those in the list will be shown.  The values are all
22931 case insensitive.
22934 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
22935 then the original default headers are ignored.  So, if you just wanted
22936 to add the header Organization to the list, you would have to list
22937 Organization plus all of the other headers originally in the default
22938 list.  If you just included Organization and nothing else, then you
22939 would see only the Organization header, nothing else.
22942 The default list of headers includes:
22943 <UL>
22944   <LI>From
22945   <LI>Resent-From
22946   <LI>To
22947   <LI>Resent-To
22948   <LI>Cc
22949   <LI>Resent-cc
22950   <LI>Bcc
22951   <LI>Newsgroups
22952   <LI>Followup-To
22953   <LI>Date
22954   <LI>Resent-Date
22955   <LI>Subject
22956   <LI>Resent-Subject
22957   <LI>Reply-To
22958 </UL>
22961 If you are looking for a way to control which headers are included in
22962 outgoing mail and are visible or not in the composer, take a look at the
22963 options
22964 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22965 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
22966 this option.
22968 <UL>   
22969 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22970 </UL><P>
22971 &lt;End of help on this topic&gt;
22972 </BODY>
22973 </HTML>
22974 ====== h_config_viewer_margin_left =====
22975 <HTML>
22976 <HEAD>
22977 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
22978 </HEAD>
22979 <BODY>
22980 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
22982 This variable controls the left-hand vertical margin's width in
22983 Alpine's Message Viewing screen.
22984 Its value is the number of space characters preceding each displayed line.
22985 For consistency with
22986 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
22987 you may specify the column number to start in
22988 (column numbering begins with number 1)
22989 instead of the width of the margin by appending a lower case letter
22990 &quot;c&quot; to the number.
22991 For example, a value of &quot;2c&quot; means to start the text in column two,
22992 which is entirely equivalent to a value of &quot;1&quot;, which means to
22993 leave a margin of 1 space.
22995 The default is a left margin of 0 (zero).
22996 Misconfigurations (for example, negative values or values with starting
22997 left columns greater than the ending right column)
22998 are silently ignored.
22999 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
23000 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
23001 instead.
23004 &lt;End of help on this topic&gt;
23005 </BODY>
23006 </HTML>
23007 ====== h_config_viewer_margin_right =====
23008 <HTML>
23009 <HEAD>
23010 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
23011 </HEAD>
23012 <BODY>
23013 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
23015 This variable controls the right-hand vertical margin's width in
23016 Alpine's Message Viewing screen.
23017 Its value is the number of space characters following each displayed line.
23018 You may specify the column number to end the text in
23019 (column numbering begins with number 1)
23020 instead of the width of the margin by appending a lower case letter
23021 &quot;c&quot; to the number.
23022 For example, a value of &quot;76c&quot; means to end the text in column 76.
23023 If the screen is 80 characters wide, this is equivalent to a value
23024 of &quot;4&quot;, which means to leave a margin of 4 spaces.
23025 However, if you use different size screens at different times, then these
23026 two values are not equivalent.
23028 The default right margin is 4.
23029 Misconfigurations (for example, negative values or values with starting
23030 left columns greater than the ending right column)
23031 are silently ignored.
23032 If the number of columns for text between the
23033 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
23034 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
23035 instead.
23038 &lt;End of help on this topic&gt;
23039 </BODY>
23040 </HTML>
23041 ====== h_config_quote_suppression =====
23042 <HTML>
23043 <HEAD>
23044 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
23045 </HEAD>
23046 <BODY>
23047 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
23049 This option should be used with care.
23050 It will cause some of the quoted text to be eliminated from the
23051 display when viewing a message in the MESSAGE TEXT screen.
23052 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
23053 value &quot;5&quot;,
23054 this will cause quoted text that is longer than five lines to be truncated.
23055 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
23056 Quoted text of more than six lines will have the first five lines displayed
23057 followed by a line that looks something like
23059 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
23061 As a special case, if exactly one line of quoted text would be hidden, the
23062 entire quote will be shown instead.
23063 So for the above example, quoted text that is exactly six lines long will
23064 will be shown in its entirety.
23065 (In other words, instead of hiding a single line and adding a line
23066 that announces that one line was hidden, the line is just shown.)
23068 If the sender of a message has carefully chosen the quotes that he or she
23069 includes, hiding those quotes may change the meaning of the message.
23070 For that reason, Alpine requires that when you want to set the value of this
23071 variable to something less than four lines, you actually have to set it
23072 to the negative of that number.
23073 So if you want to set this option to &quot;3&quot;, you actually have to
23074 set it to &quot;-3&quot;.
23075 The only purpose of this is to get you to think about whether or not you
23076 really want to do this!
23077 If you want to delete all quoted text you set the value of this option
23078 to the special value &quot;-10&quot;.
23080 The legal values for this option are
23082 <TABLE>   
23083 <TR>
23084   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
23085   <TD> Default, don't hide anything </TD>
23086 </TR>
23087 <TR>
23088   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
23089   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
23090 </TR>
23091 <TR>
23092   <TD> &nbsp;4,5,6,...&nbsp; </TD>
23093   <TD> Suppress if more than that many lines </TD>
23094 </TR>
23095 <TR>
23096   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
23097   <TD> Suppress all quoted lines </TD>
23098 </TR>
23099 </TABLE>
23101 If you set this option to a non-default value you may sometimes wish to
23102 view the quoted text that is not shown.
23103 When this is the case, the
23104 <A HREF="h_common_hdrmode">HdrMode Command</A>
23105 may be used to show the hidden text.
23106 Typing the &quot;H&quot; command once will show the hidden text.
23107 Typing a second &quot;H&quot; will also turn on Full Header mode.
23108 The presence or absence of the HdrMode command is determined by the
23109 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
23110 Feature-List option in your Alpine configuration, so you will want to
23111 be sure that is turned on if you use quote suppression.
23113 For the purposes of this option, a quote is a line that begins with the
23114 character &quot;&gt;&quot;.
23116 Quotes are only suppressed when displaying a message on the screen.
23117 The entire quote will be left intact when printing or forwarding or something
23118 similar.
23120 &lt;End of help on this topic&gt;
23121 </BODY>
23122 </HTML>
23123 ====== h_config_saved_msg_name_rule =====
23124 <HTML>
23125 <HEAD>
23126 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
23127 </HEAD>
23128 <BODY>
23129 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
23131 This option determines the default folder name when saving
23132 a message.
23135 The default option is &quot;default-folder&quot;, which is the folder
23136 called &quot;saved-messages&quot; in Unix Alpine and
23137 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
23138 the Alpine option called
23139 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
23142 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
23143 get the chosen option's value for the message being saved (or for the
23144 first message being saved if using an aggregrate save).
23145 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
23146 value of who the message came from (i.e. the from address).
23147 Alpine then attempts to save the message to a folder matching that value.
23148 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
23149 &quot;by-sender&quot;.
23150 The opposite is also true.
23151 If &quot;by-recipient&quot; is chosen and the message was posted to a
23152 newsgroup, Alpine will use the newsgroup name.
23153 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
23154 &quot;by-from&quot;.
23157 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
23158 to use the personal name part of the address instead of the mailbox part.
23159 If any of the &quot;by-nick&quot; options are chosen, the
23160 address is looked up in your address book and if found, the
23161 nickname for that entry is used.
23162 Only simple address book entries are checked, not distribution lists.
23163 Similarly, if any of the
23164 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
23165 address book entry is used.
23166 If by-realname, or the by-nick or by-fcc lookups result in no value,
23167 then if the chosen option ends with the &quot;then-from&quot;,
23168 &quot;then-sender&quot;, &quot;then-replyto&quot;,
23169 or &quot;then-recip&quot; suffix, Alpine
23170 reverts to the same behavior as &quot;by-from&quot;,
23171 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
23172 depending on which option was specified.
23173 If the chosen option doesn't end with one of
23174 the &quot;then-&quot; suffixes, then Alpine reverts to the default
23175 folder when no match is found in the address book.
23178 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
23179 to save to the folder that you saved to the last time you saved a
23180 message.  The first time you save a message in an Alpine session, Alpine
23181 attempts to save the message to the default folder.
23184 Here is an example to make some of the options clearer.
23185 If the message is From
23187 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
23189 and this rule is set to &quot;by-from&quot;, then the default folder offered
23190 in the save dialog would be &quot;flint&quot;.
23192 If this rule is set to &quot;by-realname-of-from&quot; then the default would
23193 be &quot;Fred Flintstone&quot;.
23195 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
23196 for the address &quot;flint@bedrock.org&quot; in your address book.
23197 If an entry is found and it has a nickname associated with it, that nickname
23198 will be offered as the default folder.
23199 If not, the default saved message folder will be offered as the default.
23201 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
23202 for the address &quot;flint@bedrock.org&quot; in your address book.
23203 If an entry is found and it has an Fcc associated with it, that Fcc
23204 will be offered as the default folder.
23205 If not, the default saved message folder will be offered as the default.
23207 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
23208 for the address &quot;flint@bedrock.org&quot; in your address book.
23209 If an entry is found and it has a nickname associated with it, that nickname
23210 will be offered as the default folder.
23211 If it is not found (or has no nickname) then the default offered will be
23212 the same as it would be for the &quot;by-from&quot; rule.
23213 That is, it would be &quot;flint&quot;
23215 <UL>   
23216 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23217 </UL><P>
23218 &lt;End of help on this topic&gt;
23219 </BODY>
23220 </HTML>
23221 ====== h_config_fcc_rule =====
23222 <HTML>
23223 <HEAD>
23224 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
23225 </HEAD>
23226 <BODY>
23227 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
23229 This option determines the default name for folder carbon copy. Choose
23230 one:
23232 <DL>
23233 <DT>default-fcc</DT>
23234 <DD>This is the normal default, the value of which is set in the
23235 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
23236 configuration.
23237 </DD>
23239 <DT>last-fcc-used</DT>
23240 <DD> Causes Alpine to use the folder that was last
23241 used in the fcc field
23242 </DD>
23244 <DT>by-nickname</DT>
23245 <DD>Means that Alpine will use the nickname
23246 from your address book that matches the first address in the To line.
23247 If there is no match, it will use the value of the
23248 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
23249 </DD>
23251 <DT>by-recipient</DT>
23252 <DD>Means Alpine will form a folder name
23253 based on the left hand side of the first address in the To line.
23254 </DD>
23256 <DT>by-nick-then-recip</DT>
23257 <DD>Means that it will use the
23258 matching nickname from your address book if there is one, otherwise it
23259 will extract the recipient name from the address and use that (like
23260 by-recipient).
23261 </DD>
23263 <DT>current-folder</DT>
23264 <DD>Causes a copy to be written to
23265 the currently open folder, unless that is the INBOX.  In the case
23266 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
23267 used instead.
23268 </DD>
23269 </DL>
23272 Note: Whatever the fcc specified by the rule here, it will be
23273 over-ridden by any fcc entries you have in your address book.
23276 <UL>   
23277 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23278 </UL><P>
23279 &lt;End of help on this topic&gt;
23280 </BODY>
23281 </HTML>
23282 ====== h_config_sort_key =====
23283 <HTML>
23284 <HEAD>
23285 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
23286 </HEAD>
23287 <BODY>
23288 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
23290 This option determines the order in which messages will be displayed in
23291 the MESSAGE INDEX screen.  Choose from:
23293 <UL>
23294  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23295  <LI> <A HREF="h_index_sort_date">Date</A>
23296  <LI> <A HREF="h_index_sort_subj">Subject</A>
23297  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23298  <LI> <A HREF="h_index_sort_thread">Thread</A>
23299  <LI> <A HREF="h_index_sort_from">From</A>
23300  <LI> <A HREF="h_index_sort_size">Size</A>
23301  <LI> <A HREF="h_index_sort_score">Score</A>
23302  <LI> <A HREF="h_index_sort_to">To</A>
23303  <LI> <A HREF="h_index_sort_cc">Cc</A>
23304 </UL>
23307 Each type of sort may also be reversed.
23308 Normal default is by &quot;Arrival&quot;.
23311 A possible point of confusion arises when you change the configuration
23312 of the <!--#echo var="VAR_sort-key"-->.
23313 The folder will normally be re-sorted when you go back to viewing the
23314 index.
23315 However, if you have manually sorted the folder with the
23316 Sort
23317 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23318 command, then it will not be re-sorted until the next time it is opened.
23321 <UL>   
23322 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23323 </UL><P>
23324 &lt;End of help on this topic&gt;
23325 </BODY>
23326 </HTML>
23327 ====== h_config_other_startup =====
23328 <HTML>
23329 <HEAD>
23330 <TITLE>OPTION: Set Startup Rule</TITLE>
23331 </HEAD>
23332 <BODY>
23333 <H1>OPTION: Set Startup Rule</H1>
23335 This option determines which message will be the <EM>current message</EM> when
23336 the folder is first opened.
23337 It works the same way that the option
23338 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
23339 works, so look there for help.
23340 It may be used for any folder, not just incoming folders.
23343 <UL>   
23344 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23345 </UL><P>
23346 &lt;End of help on this topic&gt;
23347 </BODY>
23348 </HTML>
23349 ====== h_config_perfolder_sort =====
23350 <HTML>
23351 <HEAD>
23352 <TITLE>Set Sort Order</TITLE>
23353 </HEAD>
23354 <BODY>
23355 <H1>Set Sort Order</H1>
23357 This option determines the order in which messages will be displayed in
23358 the MESSAGE INDEX screen when the Current Folder Type set in the
23359 Pattern is a match. Choose from:
23361 <UL>
23362  <LI> <A HREF="h_index_sort_default">Default</A>
23363  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23364  <LI> <A HREF="h_index_sort_date">Date</A>
23365  <LI> <A HREF="h_index_sort_subj">Subject</A>
23366  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23367  <LI> <A HREF="h_index_sort_thread">Thread</A>
23368  <LI> <A HREF="h_index_sort_from">From</A>
23369  <LI> <A HREF="h_index_sort_size">Size</A>
23370  <LI> <A HREF="h_index_sort_score">Score</A>
23371  <LI> <A HREF="h_index_sort_to">To</A>
23372  <LI> <A HREF="h_index_sort_cc">Cc</A>
23373 </UL>
23376 Each type of sort may also be reversed.
23377 Normal default is by &quot;Arrival&quot;.
23380 A possible point of confusion arises when you change the configuration
23381 of the Sort Order for the currently open folder.
23382 The folder will normally be re-sorted when you go back to viewing the
23383 index.
23384 However, if you have manually sorted the folder with the
23385 Sort
23386 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23387 command, then it will not be re-sorted until the next time it is opened.
23390 <UL>   
23391 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23392 </UL><P>
23393 &lt;End of help on this topic&gt;
23394 </BODY>
23395 </HTML>
23396 ====== h_config_fld_sort_rule =====
23397 <HTML>
23398 <HEAD>
23399 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
23400 </HEAD>
23401 <BODY>
23402 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
23404 This option controls the order in which folder list entries will be
23405 presented in the FOLDER LIST screen.  Choose one of the following:
23407 <DL>
23408 <DT>Alphabetical</DT>
23409 <DD>sort by alphabetical name independent of type
23410 </DD>
23412 <DT>Alpha-with-dirs-last</DT>
23413 <DD>sort by alphabetical name grouping directory entries
23414 to the end of the list
23415 </DD>
23417 <DT>Alpha-with-dirs-first</DT>
23418 <DD>sort by alphabetical name grouping directory entries
23419 to the start of the list
23420 </DD>
23421 </DL>
23423 The normal default is &quot;Alphabetical&quot;.
23426 <UL>   
23427 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23428 </UL><P>
23429 &lt;End of help on this topic&gt;
23430 </BODY>
23431 </HTML>
23432 ====== h_config_ab_sort_rule =====
23433 <HTML>
23434 <HEAD>
23435 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
23436 </HEAD>
23437 <BODY>
23438 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
23440 This option controls the order in which address book entries will be
23441 presented.  Choose one of the following:
23443 <DL>
23444 <DT>fullname</DT>
23445 <DD>use fullname field, lists mixed in
23446 </DD>
23448 <DT>fullname-with-lists-last</DT>
23449 <DD>use fullname field, but put lists at end
23450 </DD>
23452 <DT>nickname</DT>
23453 <DD>use nickname field, lists mixed in
23454 </DD>
23456 <DT>nickname-with-lists-last</DT>
23457 <DD>use nickname field, but put lists at end
23458 </DD>
23460 <DT>dont-sort</DT>
23461 <DD>don't change order of file
23462 </DD>
23463 </DL>
23466 The normal default is &quot;fullname-with-lists-last&quot;.
23467 If you use an address book from more than one computer and those
23468 computers sort the address book differently then the sort order
23469 will be the order where the last change to the address book was
23470 made.
23471 There are two reasons the sorting might be different on different
23472 systems.
23473 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
23474 places.
23475 Second, the collation rules on the two computers may be different.
23476 For example, one system might ignore special characters while the other
23477 doesn't or one may sort upper and lower case letters together while
23478 the other doesn't.
23479 In any case, the order you see is the order on the system where the
23480 last change was made, for example by an address book edit or a
23481 Take Address command.
23484 <UL>   
23485 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23486 </UL><P>
23487 &lt;End of help on this topic&gt;
23488 </BODY>
23489 </HTML>
23490 ====== h_config_post_char_set =====
23491 <HTML>
23492 <HEAD>
23493 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
23494 </HEAD>
23495 <BODY>
23496 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
23498 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
23499 when sending messages.
23503 When sending a message the text typed in the composer is
23504 labeled with the character set specified by this option.
23505 If the composed text is not fully representable in the 
23506 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
23507 instead;
23510 Attachments are labeled with your
23511 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
23514 Generally, there should be little need to set this option.
23515 If left unset, the
23516 default behavior is to label composed text as specifically as
23517 possible.  That is, if the composed text has no non-ASCII characters,
23518 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
23519 only ISO-8859-15 characters, it is labeled as such.  Alpine will
23520 attempt to automatically detect a number of character sets including ISO-8859-15,
23521 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23522 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
23523 If the message contains a mix of character sets,
23524 it is labeled as &quot;UTF-8.&quot;
23528 This setting is provided to allow you to force a particular character set that
23529 Alpine does not automatically detect. For example, if a message is representable
23530 in more than one character set then Alpine may choose a different default
23531 than you want.
23532 Lastly, by setting this option explicitly to
23533 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
23534 &quot;UTF-8&quot; instead of something more specific.
23537 In the Setup/Config screen you may choose from a list of all the
23538 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23541 The options
23542 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23543 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23544 are closely related.
23545 Setting the feature
23546 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23547 should cause this option to be ignored.
23550 <UL>   
23551 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23552 </UL><P>
23553 &lt;End of help on this topic&gt;
23554 </BODY>
23555 </HTML>
23556 ====== h_config_unk_char_set =====
23557 <HTML>
23558 <HEAD>
23559 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
23560 </HEAD>
23561 <BODY>
23562 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
23564 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
23565 when reading or replying to messages.
23569 A text message should either be made up of all US-ASCII characters
23570 or it should contain a charset label which tells the software which
23571 character set encoding to use to interpret the message.
23572 Sometimes a malformed message may be unlabeled but contain non-ascii text.
23573 This message is outside of the standards so any attempt to read it could fail.
23574 When Alpine attempts to read such a message it will try to interpret the
23575 text in the character set you specify here.
23576 For example, if you have correspondents who send you unlabeled messages that
23577 are usually made up of characters from the WINDOWS-1251 character set, setting
23578 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
23579 allow you to read those messages.
23580 Of course, if the unlabeled message is actually in some other character set,
23581 then you may see garbage on your screen.
23583 Instead of just unlabeled text, this option also affects text which is labeled
23584 with the charsets &quot;X-Unknown&quot;, &quot;MISSING_PARAMETER_VALUE&quot;
23585 or &quot;US-ASCII&quot;.
23588 In the Setup/Config screen you may choose from a list of all the
23589 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23592 <UL>   
23593 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23594 </UL><P>
23595 &lt;End of help on this topic&gt;
23596 </BODY>
23597 </HTML>
23598 ====== h_config_char_set =====
23599 <HTML>
23600 <HEAD>
23601 <TITLE>OPTION: Display Character Set</TITLE>
23602 </HEAD>
23603 <BODY>
23604 <H1>OPTION: Display Character Set</H1>
23606 The Display Character Set configuration option is used when viewing messages.
23608 Alpine uses Unicode characters internally and 
23609 it is a goal for Alpine to handle email in many different languages.
23610 Alpine will properly display only left-to-right character sets
23611 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
23612 font is in use, in the sense that
23613 characters are assumed to take up zero, one, or two character cell
23614 widths from left to right on the screen. This is true even in PC-Alpine.
23617 Alpine recognizes some local character sets that are right-to-left
23618 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
23619 (Arabic) and properly converts texts in these character sets to/from
23620 Unicode; however, there are known display bugs with these character
23621 sets.
23624 There are three possible configuration character settings and some
23625 environment variable settings that can affect how Alpine
23626 handles international characters.
23627 The first two of these are only available in UNIX Alpine.
23628 The three configuration options are
23629 Display Character Set,
23630 Keyboard Character Set, and
23631 <!--#echo var="VAR_posting-character-set"-->.
23632 The Keyboard Character Set defaults to being the same value
23633 as the Display Character Set, and that is usually correct, because
23634 the keyboard almost always produces characters in the same character set
23635 as the display displays.
23636 The Display Character Set is the character set that Alpine
23637 will attempt to use when sending characters to the display.
23640 By default, the Display Character Set variable is not set and UNIX Alpine
23641 will attempt to get this information from the environment.
23642 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
23643 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
23644 An explicit configuration setting for Display Character Set will,
23645 of course, override any default setting.
23647 For PC-Alpine the Display Character Set
23648 and the Keyboard Character Set
23649 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
23652 It is probably best to use UNIX Alpine in a terminal emulator
23653 capable of displaying UTF-8 characters, since that will allow you to
23654 view just about any received text that is correctly formatted (note,
23655 however, the above comments about known index display bugs with certain
23656 character sets). You'll need to have an emulator that uses a UTF-8 font
23657 and you'll need to set up your environment to use a UTF-8 charmap. For
23658 example, on a Linux system you might include
23660 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
23663 or something similar in your UNIX startup files.
23664 You'd also have to select a UTF-8 font in your terminal emulator.
23667 The types of values that the character set variables may be set to are
23668 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
23669 The <CODE>ISO-2022</CODE> character sets are not supported for input or
23670 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
23671 for use only as a <!--#echo var="VAR_posting-character-set"-->.
23672 In the Setup/Config screen you may choose from a list of all the
23673 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23674 Here is a list of many of the possible character sets:
23677 <TABLE>
23678 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
23679 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
23680 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
23681 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
23682 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
23683 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
23684 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
23685 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
23686 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
23687 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
23688 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
23689 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
23690 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
23691 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
23692 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
23693 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
23694 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
23695 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
23696 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
23697 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukranian</TD> </TR>
23698 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
23699 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
23700 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
23701 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23702 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23703 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23704 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23705 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23706 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
23707 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
23708 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
23709 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
23710 </TABLE>
23713 When reading incoming email, Alpine understands many different
23714 character sets and is able to convert the incoming mail into Unicode.
23715 The Unicode will be converted to the Display Character Set
23716 for display on your terminal.
23717 Characters typed at the keyboard will be converted from the
23718 Keyboard Character Set to Unicode for Alpine's internal
23719 use.
23720 You may find that you can read some malformed messages that do not
23721 contain a character set label by setting the option
23722 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
23725 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
23726 The default behavior obtained by leaving this variable unset is usually
23727 what is wanted. In that default case, Alpine will attempt
23728 to label the message with the most specific character set from the
23729 rather arbitrary set
23731 US-ASCII, ISO-8859-15,
23732 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23733 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
23736 For example, if the message is made up of only US-ASCII characters, it
23737 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
23738 that will be the label. If that doesn't work the same is tried for the
23739 remaining members of the list.
23742 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
23743 explicit value instead.
23744 For example, if you usually send messages in Greek, setting this
23745 option to ISO-8859-7 will result in messages being labeled as
23746 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
23747 are only Greek characters, or UTF-8 if there are some characters
23748 that aren't representable in ISO-8859-7.
23749 Another possibility is to set this option explicitly to UTF-8.
23750 In that case
23751 Alpine labels only ascii messages as US-ASCII and all other
23752 messages as UTF-8.
23755 The options
23756 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23757 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23758 are closely related to this option.
23759 Setting the feature
23760 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23761 should cause this option to be ignored.
23764 When displaying a message, Alpine compares this setting to the character
23765 set specified in the message.  If not all of the
23766 characters in the message can be displayed using the Display Character Set
23767 then Alpine places an editorial
23768 comment in the displayed text (enclosed in square-brackets) indicating
23769 that some characters may not be displayed correctly.
23770 This comment may be eliminated by turning on the option
23771 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
23774 <UL>   
23775 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23776 </UL><P>
23777 &lt;End of help on this topic&gt;
23778 </BODY>
23779 </HTML>
23780 ====== h_config_key_char_set =====
23781 <HTML>
23782 <HEAD>
23783 <TITLE>OPTION: Keyboard Character Set</TITLE>
23784 </HEAD>
23785 <BODY>
23786 <H1>OPTION: Keyboard Character Set</H1>
23788 UNIX Alpine only.
23790 The Keyboard Character Set identifies the character set of the characters
23791 coming from your keyboard.
23792 It defaults to having the same value as your
23793 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
23794 which in turn defaults to a value obtained from your environment.
23795 It is unlikely that you will need to use this option, because the keyboard
23796 almost always produces the same kind of characters as the display displays.
23799 This character set is also used when accessing files in your local
23800 file system.
23801 The names of the files are assumed to be in the same character set as
23802 what the keyboard produces, as well as the contents of the files.
23805 In the Setup/Config screen you may choose from a list of all the
23806 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23809 The options
23810 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23811 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23812 are closely related.
23813 Setting the feature
23814 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23815 should cause this option to be ignored.
23818 <UL>   
23819 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23820 </UL><P>
23821 &lt;End of help on this topic&gt;
23822 </BODY>
23823 </HTML>
23824 ====== h_config_editor =====
23825 <HTML>
23826 <HEAD>
23827 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
23828 </HEAD>
23829 <BODY>
23830 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
23832 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
23833 normally an alternative to Alpine's internal composer (Pico).  You could use
23834 this setting to specify an alternate editor to use occasionally or if you
23835 have a favorite editor and want to use it all the time (see the 
23836 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
23837 If you specify multiple editors for this option, ^_ will invoke the first one 
23838 of those specified that exists and is executable.  When specifying a program 
23839 for use here, make sure that the format of the text it saves -- which, when 
23840 you exit it, will become the message body in Alpine -- is appropriate 
23841 for the body of an email message; avoid proprietary formats that may result in 
23842 a message body that the recipient of your message will be unable to decipher.
23844 <!--chtml if pinemode="os_windows"-->
23845 <!--chtml else-->
23846 If you are in doubt about what editors are available on your system, or which 
23847 of them may be appropriate for specification here, ask your local computing 
23848 support staff.  
23849 <!--chtml endif-->
23851 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
23852 unset, outgoing text will be set as flowed.  In most cases this will be fine,
23853 but if the editor has a &quot;flowed text&quot; mode, it would be best to
23854 use that.
23856 <P><UL>
23857 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23858 </UL>
23860 &lt;End of help on this topic&gt;
23861 </BODY>
23862 </HTML>
23863 ====== h_config_speller =====
23864 <HTML>
23865 <HEAD>
23866 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
23867 </HEAD>
23868 <BODY>
23869 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
23871 UNIX Alpine only.
23873 For PC-Alpine, you must install the aspell library code that you
23874 may get from
23875 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
23877 This option affects the behavior of the ^T (spell check) command in the
23878 Composer.  It specifies the program invoked by ^T in the Composer.
23879 By default, Alpine uses
23881 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
23883 if it knows where to find &quot;aspell&quot;.
23884 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
23885 then the command used is
23887 <CENTER><SAMP>ispell -l</SAMP></CENTER>
23889 Otherwise, the ancient &quot;spell&quot; command is used.
23891 If you specify a value for this command (with full pathname) then that is what
23892 will be used instead of any of the defaults.
23893 When invoking this
23894 spell-checking program, Alpine appends a tempfile name (where the message is
23895 passed) to the command line. Alpine expects the speller to correct the
23896 spelling in that file. When you exit from that program Alpine will read the
23897 tempfile back into the composer.
23899 Don't set this speller option to the standard Unix spell command.
23900 That won't work because spell works in a different way.
23903 <UL>   
23904 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23905 </UL><P>
23906 &lt;End of help on this topic&gt;
23907 </BODY>
23908 </HTML>
23909 ====== h_config_aspell_dictionary =====
23910 <HTML>
23911 <HEAD>
23912 <TITLE>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></TITLE>
23913 </HEAD>
23914 <BODY>
23915 <H1>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></H1>
23917 PC Alpine only.
23919 This option specifies a list of dictionaries you will use with
23920 aspell. A sample entry is &quot;en_US&quot; for american english, or
23921 &quot;en_GB&quot; for brittish english.
23924 <UL>   
23925 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23926 </UL><P>
23927 &lt;End of help on this topic&gt;
23928 </BODY>
23929 </HTML>
23930 ====== h_config_display_filters =====
23931 <HTML>
23932 <HEAD>
23933 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
23934 </HEAD>
23935 <BODY>
23936 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
23938 This option defines a list of text-filtering commands (programs or
23939 scripts) that may be used to filter text portions of received messages
23940 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
23941 display screen, exporting to a text file).  
23942 For security reasons, the full path name of the
23943 filter command must be specified.
23946 The command is executed and the message is piped into its standard input. 
23947 The standard output of the command is read back by Alpine.  The
23948 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
23950 <P> 
23951 The filter's use is based on the configured &quot;trigger&quot; string.  The
23952 format of a filter definition is:
23954 <P>   
23955 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
23958 You can specify as many filters as you wish, separating them with a comma.  
23959 Each filter can have only one trigger and command.  Thus, two trigger 
23960 strings that invoke the same command require separate filter 
23961 specifications. 
23963 <P> 
23964 The &quot;trigger&quot; is simply text that, if found in the message,
23965 will invoke the associated command.  If the trigger contains any space
23966 characters, it must be placed within quotes.  Likewise, should you
23967 wish a filter to be invoked unconditionally, define the trigger as the
23968 null string, &quot;&quot; (two consecutive double-quote characters).  If the
23969 trigger string is found anywhere in the text of the message the filter
23970 is invoked.  Placing the trigger text within the tokens defined below
23971 changes where within the text the trigger must be before considering
23972 it a match.
23974 <P>  
23975 Trigger Modifying Tokens:
23976 <DL>
23977 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
23978 <DD>This token tells Alpine to invoke the supplied command
23979 if the text is in a character set matching <VAR>string</VAR>
23980 (e.g., ISO-8859-2 or ISO-2022-JP).
23981 </DD>
23984 <DT>_LEADING(<VAR>string</VAR>)_</DT>
23985 <DD>This token tells Alpine to invoke the supplied command
23986 if the enclosed <VAR>string</VAR> is found to be the first
23987 non-whitespace text.
23988 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23989 the space character.
23990 </DD>
23992 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
23993 <DD>This token tells Alpine to invoke the supplied command
23994 if the enclosed <VAR>string</VAR> is found at the beginning
23995 of any line in the text.
23996 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
23997 the space character.
23998 </DD>
23999 </DL>
24002 The &quot;command&quot; and &quot;arguments&quot; portion is simply
24003 the command line to be invoked if the trigger string is found.  Below
24004 are tokens that Alpine will recognize and replace with special values
24005 when the command is actually invoked.
24008 Command Modifying Tokens:
24010 <DL>
24011 <DT>_TMPFILE_</DT>
24012 <DD>When the command is executed, this token is 
24013 replaced with the path and name of the temporary 
24014 file containing the text to be filtered.  Alpine 
24015 expects the filter to replace this data with the 
24016 filter's result.
24019 NOTE: Use of this token implies that the text to 
24020 be filtered is not piped into standard input of the 
24021 executed command and its standard output is ignored. 
24022 Alpine restores the tty modes before invoking the
24023 filter in case the filter interacts with the user
24024 via its own standard input and output.  
24025 </DD>
24026                         
24027 <DT>_RESULTFILE_</DT>
24028 <DD>When the command is executed, this token is 
24029 replaced with the path and name of a temporary 
24030 file intended to contain a status message from the 
24031 filter.  Alpine displays this in the message status 
24032 field. 
24033 </DD>
24035 <DT>_DATAFILE_</DT>
24036 <DD>When the command is executed, this token is 
24037 replaced with the path and name of a temporary 
24038 file that Alpine creates once per session and deletes 
24039 upon exit.  The file is intended to be used by the 
24040 filter to store state information between instances 
24041 of the filter.
24042 </DD>
24043    
24044 <DT>_PREPENDKEY_</DT>
24045 <DD>When the command is executed, this token indicates that a random
24046 number will be passed down the input stream before the message text.
24047 This number could be used as a session key.  It is sent in this way to
24048 improve security.  The number is unique to the current Alpine session
24049 and is only generated once per session.
24050 </DD>
24052 <DT>_SILENT_</DT>
24053 <DD>When the filter is executed, this token tells Alpine not to repaint
24054 the screen while the command is being executed. This can be used with 
24055 filters that do not interact with the user, and therefore repainting 
24056 the screen is not necessary. 
24057 </DD>
24058 </DL>
24061 The feature
24062 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
24064 Performance caveat/considerations:
24065 <BR>
24066 Testing for the trigger and invoking the filter doesn't come for free.
24067 There is overhead associated with searching for the trigger string, testing
24068 for the filter's existence and actually piping the text through the filter.
24069 The impact can be reduced if the Trigger Modifying Tokens above are 
24070 employed.
24072 &lt;End of help on this topic&gt;
24073 </BODY>
24074 </HTML>
24075 ====== h_config_sending_filter =====
24076 <HTML>
24077 <HEAD>
24078 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
24079 </HEAD>
24080 <BODY>
24081 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
24082       
24083 This option defines a list of text-filtering commands (programs and
24084 scripts) that may be selectively invoked to process a message just before
24085 it is sent.  If set, the Composer's ^X (Send) command will allow you to
24086 select which filter (or none) to apply to the message before it is sent. 
24087 For security reasons, the full path of the filter program must be
24088 specified.
24091 Command Modifying Tokens:
24093 <DL>
24094 <DT>_RECIPIENTS_</DT>
24095 <DD>When the command is executed, this token is replaced 
24096 with the space delimited list of recipients of the 
24097 message being sent. 
24098 </DD>
24099         
24100 <DT>_TMPFILE_</DT>
24101 <DD>
24102 When the command is executed, this token is 
24103 replaced with the path and name of the temporary 
24104 file containing the text to be filtered.  Alpine 
24105 expects the filter to replace this data with the 
24106 filter's result.
24109 NOTE: Use of this token implies that the text to 
24110 be filtered is not piped into standard input of the 
24111 executed command and its standard output is ignored. 
24112 Alpine restores the tty modes before invoking the
24113 filter in case the filter interacts with the user
24114 via its own standard input and output.  
24115 </DD>
24116                         
24117 <DT>_RESULTFILE_</DT>
24118 <DD>When the command is executed, this token is 
24119 replaced with the path and name of a temporary 
24120 file intended to contain a status message from the 
24121 filter.  Alpine displays this in the message status 
24122 field. 
24123 </DD>
24125 <DT>_DATAFILE_</DT>
24126 <DD>When the command is executed, this token is replaced 
24127 in the command line with the path and name of a 
24128 temporary file that Alpine creates once per session 
24129 and deletes upon exit.  The file is intended to be 
24130 used by the filter to store state information between 
24131 instances of the filter.
24132 </DD>
24133    
24134 <DT>_PREPENDKEY_</DT>
24135 <DD>When the command is executed, this token indicates 
24136 that a random number will be passed down the input 
24137 stream before the message text.  This number could 
24138 be used as a session key.  It is sent in this way 
24139 to improve security.  The number is unique to the 
24140 current Alpine session and is only generated once per 
24141 session. 
24142 </DD>
24144 <DT>_INCLUDEALLHDRS_</DT>
24145 <DD>When the command is executed, this token indicates 
24146 that the headers of the message will be passed down the input stream
24147 before the message text.
24148 </DD>
24150 <DT>_MIMETYPE_</DT>
24151 <DD>When the command is executed, this token is replaced in the
24152 command name with a temporary file name used to accept any new MIME
24153 Content-Type information necessitated by the output of the filter.
24154 Upon the filter's exit, if the file contains new MIME type
24155 information, Alpine verifies its format and replaces the outgoing
24156 message's MIME type information with that contained in the file. This
24157 is basically a cheap way of sending something other than Text/Plain.
24158 </DD>
24159 </DL>
24161 <P>   
24162 NOTE: Only the body text, which is visible in the Composer, is piped
24163 through this filter.  Attachments are not sent to the filter.
24164 <P>   
24165 Sending filters are not used if the feature
24166 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
24168 <UL>   
24169 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24170 </UL><P>
24171 &lt;End of help on this topic&gt;
24172 </BODY>
24173 </HTML>
24174 ====== h_config_keywords =====
24175 <HTML>
24176 <HEAD>
24177 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
24178 </HEAD>
24179 <BODY>
24180 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
24182 You may define your own set of keywords and optionally set them on a
24183 message by message basis.
24184 These are similar to the &quot;Important&quot; flag which the user
24185 may set using the Flag command.
24186 The difference is that the Important flag is always present for each folder.
24187 User-defined keywords are chosen by the user.
24188 You may set up the list of possible keywords here, or you may add keywords
24189 from the Flag Details screen that you
24190 can get to after typing the
24191 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
24192 command.
24193 After the keywords have been defined,
24194 then you use the <A HREF="h_common_flag">Flag command</A>
24195 to set or clear the keywords in each message.
24196 The behavior of the flag command may be modified by using the
24197 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
24198 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
24201 Keywords may be used when Selecting messages (Select Keyword).
24202 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
24203 Filter Rules may be used to set keywords automatically.
24204 Keywords may be displayed as part of the Subject of a message by using
24205 the SUBJKEY or SUBJKEYINIT tokens in the
24206 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
24207 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
24208 option may be used to modify the display of keywords using
24209 SUBJKEY and SUBJKEYINIT slightly.
24210 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
24211 screen by using the KEY or KEYINIT tokens.
24212 It is also possible to color keywords in the index using the
24213 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
24214 Keywords are not supported by all mail servers.
24217 You may give keywords nicknames if you wish.
24218 If the keyword definition you type in contains a SPACE character, then the
24219 actual value of the keyword is everything after the last SPACE and the
24220 nickname for that keyword is everything before the last SPACE.
24221 For example, suppose you are trying to interoperate with another email program
24222 that uses a particular keyword with an unpleasant name.
24223 Maybe it uses a keyword called
24225 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
24227 but for you that keyword means that the message is work-related.
24228 You could define a keyword to have the value
24230 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
24232 and then you would use the name &quot;Work&quot; when dealing with
24233 that keyword in Alpine.
24234 If you defined it as
24236 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
24238 the nickname would be everything before the last SPACE, that is the nickname
24239 would be &quot;My Work&quot;.
24241 Some commonly used keywords begin with dollar signs.
24242 This presents a slight complication, because the dollar sign is normally used
24243 to signify
24244 <A HREF="h_news_config">environment variable expansion</A>
24245 in the Alpine configuration.
24246 In order to specify a keyword that begins with a dollar sign you must
24247 precede the dollar sign with a second dollar sign to escape its special
24248 meaning.
24249 For example, if you want to include the keyword
24251 <CENTER><SAMP>$Label1</SAMP></CENTER>
24253 as one of your possible keywords, you must enter the text
24255 <CENTER><SAMP>$$Label1</SAMP></CENTER>
24258 instead.
24260 There are a couple limitations.
24261 First, not all servers support keywords.
24262 Second, some servers (including the IMAP server included with Alpine)
24263 have a per folder limit on the number of keywords that may be defined.
24264 This count commonly includes every keyword you have ever used in the
24265 folder, even if it is no longer being used.
24266 In other words, you can add keywords but you cannot remove them easily.
24267 If you have changed keywords over the life of a folder and find that
24268 you have reached such a limit, one possible solution might be to copy
24269 all of the messages to a newly created folder (using Alpine) and then
24270 delete the original and rename the new folder.
24271 The reason this might work is that only the keywords currently set in
24272 any of the messages will be used in the new folder, hopefully putting you
24273 under the limit.
24276 <UL>   
24277 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24278 </UL><P>
24279 &lt;End of help on this topic&gt;
24280 </BODY>
24281 </HTML>
24282 ====== h_config_alt_addresses =====
24283 <HTML>
24284 <HEAD>
24285 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
24286 </HEAD>
24287 <BODY>
24288 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
24290 This option provides a place for you to list alternate email addresses
24291 you may have.
24292 Each address in the list should be the actual email address part of an
24293 address, without the full name field or the angle brackets.
24294 For example:
24297 <CENTER><SAMP>user@example.com</SAMP></CENTER>
24300 The matching is case-insensitive, so this would match any of
24301 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
24302 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
24305 If set, the option affects the behavior of the Reply
24306 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
24307 a message has been addressed specifically to you.
24310 In the default INDEX display
24311 the personal name (or email address) of
24312 the person listed in the message's &quot;From:&quot; header
24313 field is usually displayed except when that address is yours or one of your
24314 alternate addresses.
24315 In that case you will usually see the name of
24316 the first person specified in the
24317 message's &quot;To:&quot; header field
24318 with the prefix &quot;To: &quot; prepended.
24321 With respect to Reply, the reply-to-all option will exclude addresses
24322 listed here.
24325 The feature
24326 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
24327 is somewhat related to this option.
24330 In addition to a list of actual addresses,
24331 you may use regular expressions (as used with egrep with the ignore case flag)
24332 to describe the addresses you want to match.
24333 Alpine will somewhat arbitrarily interpret your entry as a regular
24334 expression if it contains any of the characters
24335 *, |, +, ?, {, [, ^, $, or &#92;.
24336 Otherwise, it will be treated literally.
24337 The feature
24338 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
24339 may be used to turn off regular expression processing regardless of whether or not
24340 special characters appear in the entry.
24343 A description of how regular expressions work is beyond the
24344 scope of this help text, but some examples follow.
24347 The entry
24350 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
24353 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
24354 address with a domain name of <SAMP>example.com</SAMP> (such as
24355 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
24356 one of your alternate addresses.
24357 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
24358 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
24359 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
24360 Complicating things further, the dollar sign
24361 is special in the Alpine configuration (it signifies environment variable expansion)
24362 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
24363 Quotes around the whole expression will not escape the dollar sign successfully.
24364 So this example should look like
24367 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
24371 The entry
24374 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
24377 would match
24378 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
24379 as <SAMP>fred@example.com</SAMP>.
24382 You could match all addresses that look like
24383 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
24384 entry
24387 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
24390 Notice that you have to escape the plus sign with a backslash because plus
24391 is a special character in regular expressions.
24392 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
24393 the expression
24396 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
24399 would do it, but it would be easier to just add fred@example.com as a
24400 separate entry.
24403 One more example, a match of all first-level subdomains, is given by
24406 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
24410 Because the regular expression matching is based on an old library
24411 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
24412 but they should be close.
24415 <UL>   
24416 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24417 </UL><P>
24418 &lt;End of help on this topic&gt;
24419 </BODY>
24420 </HTML>
24421 ====== h_config_abook_formats =====
24422 <HTML>
24423 <HEAD>
24424 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
24425 </HEAD>
24426 <BODY>
24427 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
24429 This option specifies the format that address books are displayed in.
24430 Normally, address books are displayed with the nicknames in the first
24431 column, the fullnames in the second column, and addresses in the third
24432 column.  The system figures out reasonable defaults for the widths of
24433 the columns.  An address book may be given a different format by
24434 listing special tokens in the order you want them to display.  The
24435 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
24436 So, for example, to get the default behavior you could list
24439 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
24442 (You can also use the token DEFAULT to get the default behavior for
24443 an address book format.)
24446 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
24447 is a list, so if you have more than one address book you may have a
24448 separate format for each by putting its format at the corresponding
24449 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
24453 Listed first are the personal address books, then the global address
24454 books.  So, if you have two personal address books and one global
24455 address book, you may have up to three formats in the
24456 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
24457 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
24458 are address books, the last element is used repeatedly.
24462 Each of the tokens may also be optionally followed by parentheses with
24463 either a number or a percentage inside the parentheses.  For example,
24464 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
24465 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
24466 of the available space (the screen width minus the space for
24467 inter-column spaces) to the fullnames column, while plain
24468 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
24469 reasonable number of columns.
24472 There are always 2 spaces between every column, so if you use
24473 fixed column widths (like 13) you should remember to take that into
24474 account.
24477 <UL>   
24478 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24479 </UL><P>
24480 &lt;End of help on this topic&gt;
24481 </BODY>
24482 </HTML>
24483 ====== h_config_set_index_format =====
24484 <HTML>
24485 <HEAD>
24486 <TITLE>Set Index Format</TITLE>
24487 </HEAD>
24488 <BODY>
24489 <H1>Set Index Format</H1>
24491 This option is used to customize the content of lines in the
24492 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
24493 This action works exactly like the regular
24494 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
24495 except that you can have a folder-specific value for it if you specify it here.
24496 Consult the help for
24497 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
24498 for more information.
24501 <UL>   
24502 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24503 </UL><P>
24504 &lt;End of help on this topic&gt;
24505 </BODY>
24506 </HTML>
24507 ====== h_config_index_format =====
24508 <HTML>
24509 <HEAD>
24510 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
24511 </HEAD>
24512 <BODY>
24513 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
24515 This option is used to customize the content of lines in the
24516 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
24517 to convey some amount of immediately relevant information about each 
24518 message in the current folder.
24521 Alpine provides a pre-defined set of informational fields with
24522 reasonable column widths automatically computed.  You can, however,
24523 replace this default set by listing special tokens in the order you
24524 want them displayed.
24527 The list of available tokens is
24528 <A HREF="h_index_tokens">here</A>.
24531 Spaces are used to separate listed tokens.  Additionally, you can
24532 specify how much of the screen's width the token's associated data
24533 should occupy on the index line by appending to the token a pair of
24534 parentheses enclosing either a number or percentage.  For example,
24535 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
24536 column, and &quot;SUBJECT(20%)&quot; means to
24537 allocate 20% of the available space
24538 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
24539 attempt to figure out a reasonable amount of space.
24542 There is always one space between every pair of columns, so if you use fixed
24543 column widths (like 13) you should remember to take that into account.
24544 Several of the fields are virtually fixed-width, so it doesn't make
24545 much sense to specify the width for them.  The fields STATUS,
24546 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
24547 and DESCRIPSIZE all fall into that category.
24548 You <EM>may</EM> specify widths for those if you wish, but
24549 you're probably better off letting the system pick those widths.  <P>
24552 The default is equivalent to:
24555 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
24558 This means that the four fields without percentages will be allocated
24559 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
24560 the from and subject fields.  If one of those two fields is specified
24561 as a percentage and the other is left for the system to choose, then
24562 the percentage is taken as an absolute percentage of the screen, not
24563 of the space remaining after allocating the first four columns.  It
24564 doesn't usually make sense to do it that way.  If you leave off all
24565 the widths, then the subject and from fields (if both are present) are
24566 allocated space in a 2 to 1 ratio, which is almost exactly the same as
24567 the default.
24570 What you are most likely to do with this configuration option is to
24571 specify which fields appear at all, which order they appear in, and the
24572 percentage of screen that is used for the from and subject fields if you
24573 don't like the 2 to 1 default.
24576 If you want to retain the default format that Pine 4.64 had, use
24579 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
24581 <EM>and</EM> set the feature
24582 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
24583 <UL>   
24584 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24585 </UL><P>
24586 &lt;End of help on this topic&gt;
24587 </BODY>
24588 </HTML>
24589 ====== h_config_reply_intro =====
24590 <HTML>
24591 <HEAD>
24592 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
24593 </HEAD>
24594 <BODY>
24595 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
24597 This option is used to customize the content of the introduction line
24598 that is included when replying to a message and including the original
24599 message in the reply.
24600 The normal default (what you will get if you delete this variable) looks
24601 something like:
24603 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
24605 where the day of the week is only included if it is available in the
24606 original message.
24607 You can replace this default with text of your own.
24608 The text may contain tokens that are replaced with text
24609 that depends on the message you are replying to.
24610 For example, the default is equivalent to:
24612 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24615 Since this variable includes regular text mixed with special tokens
24616 the tokens have to be surrounded by underscore characters.
24617 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
24618 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
24619 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
24621 The list of available tokens is
24622 <A HREF="h_index_tokens">here</A>.
24625 By default, the text is all on a single line and is followed by a blank line.
24626 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
24627 than 80 characters when replying to a particular message, it is shortened.
24628 However, if you use the token
24630 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
24633 anywhere in the value, no end of line or blank line is appended, and no
24634 shortening is done.
24635 The _NEWLINE_ token may be used to get rid of the blank line following
24636 the text, to add more blank lines, or to form a multi-line
24637 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24638 To clarify how _NEWLINE_ works recall that the default value is:
24640 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24643 That is equivalent to
24645 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
24648 In the former case, two newlines are added automatically because
24649 no _NEWLINE_ token appears in the value of the option (for backwards
24650 compatibility). In the latter case, the newlines are explicit.
24651 If you want to remove the blank line that follows the
24652 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
24653 _NEWLINE_ token like
24655 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
24658 Because of the backwards compatibility problem, it is not possible to
24659 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
24660 and that will cause the automatic adding of two newlines!
24661 If you want, you may embed newlines in the middle of the text, as well,
24662 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24665 By default, no attempt is made to localize the date.
24666 If you prefer a localized form you may find that one of the tokens
24667 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
24668 If you want more control one of the many other date tokens, such as _DATEISO_,
24669 might be better.
24672 For the adventurous, there is a way to conditionally include text based
24673 on whether or not a token would result in specific replacement text.
24674 For example, you could include some text based on whether or not
24675 the _NEWS_ token would result in any newsgroups if it was used.
24676 It's explained in detail
24677 <A HREF="h_reply_token_conditionals">here</A>.
24680 In the very unlikely event that you want to include a literal token
24681 in the introduction line you must precede it with a backslash character.
24682 For example,
24684 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
24686 would produce something like
24688 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
24690 It is not possible to have a literal backslash followed by an expanded token.
24692 <UL>   
24693 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24694 </UL><P>
24695 &lt;End of help on this topic&gt;
24696 </BODY>
24697 </HTML>
24698 ====== h_config_remote_abook_history =====
24699 <HTML>
24700 <HEAD>
24701 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
24702 </HEAD>
24703 <BODY>
24704 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
24706 Sets how many extra copies of
24707 remote address book
24708 data will be kept in each remote address book folder.
24709 The default is three.
24710 These extra copies are simply old versions of the data. Each time a change
24711 is made a new copy of the address book data is appended to the folder. Old
24712 copies are trimmed, if possible, when Alpine exits.
24713 An old copy can be put back into use by
24714 deleting and expunging newer versions of the data from the folder.
24715 Don't delete the first message from the folder. It is a special header
24716 message for the remote address book and it must be there.
24717 This is to prevent regular folders from being used as remote address book
24718 folders and having their data destroyed.
24720 This option is also used to determine how many extra copies of remote
24721 Alpine configuration files are kept.
24723 <UL>   
24724 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24725 </UL><P>
24726 &lt;End of help on this topic&gt;
24727 </BODY>
24728 </HTML>
24729 ====== h_config_remote_abook_validity =====
24730 <HTML>
24731 <HEAD>
24732 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
24733 </HEAD>
24734 <BODY>
24735 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
24737 Sets the minimum number of minutes that a
24738 remote address book will be considered up to date.
24739 Whenever an entry contained in a remote address book is used,
24740 if more than this many minutes have
24741 passed since the last check the remote server will be queried to see if the
24742 address book has changed.
24743 If it has changed, the local copy is updated.
24744 The default value is five minutes.
24745 The special value of -1 means never check.
24746 The special value of zero means only check when the address book is first
24747 opened.
24749 No matter what the value, the validity check is always done when the
24750 address book is about to be changed by the user.
24751 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
24752 while in the address book maintenance screen for the remote address book.
24754 <UL>   
24755 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24756 </UL><P>
24757 &lt;End of help on this topic&gt;
24758 </BODY>
24759 </HTML>
24760 ====== h_config_user_input_timeo =====
24761 <HTML>
24762 <HEAD>
24763 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
24764 </HEAD>
24765 <BODY>
24766 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
24768 If this is set to an integer greater than zero, then this is the number
24769 of <EM>hours</EM> to wait for user input before Alpine times out.
24770 If Alpine is
24771 in the midst of composing a message or is waiting for user response to
24772 a question, then it will not timeout.
24773 However, if Alpine is sitting idle waiting for
24774 the user to tell it what to do next and the user does not give any
24775 input for this many hours, Alpine will exit.
24776 No expunging or moving of read
24777 messages will take place.
24778 It will exit similarly to the way it would exit
24779 if it received a hangup signal.
24780 This may be useful for cleaning up unused Alpine sessions that have been
24781 forgotten by their owners.
24782 The Alpine developers envision system administrators
24783 setting this to a value of several hours (24?) so that it won't surprise
24784 a user who didn't want to be disconnected.
24786 <UL>   
24787 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24788 </UL><P>
24789 &lt;End of help on this topic&gt;
24790 </BODY>
24791 </HTML>
24792 ====== h_config_ssh_open_timeo =====
24793 <HTML>
24794 <HEAD>
24795 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
24796 </HEAD>
24797 <BODY>
24798 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
24800 Sets the time in seconds that Alpine will
24801 attempt to open a UNIX secure shell connection.
24802 The default is 15, the minimum non-zero value is 5,
24803 and the maximum is unlimited. If this is set to zero ssh connections
24804 will be completely disabled.
24806 <UL>   
24807 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24808 </UL><P>
24809 &lt;End of help on this topic&gt;
24810 </BODY>
24811 </HTML>
24812 ====== h_config_rsh_open_timeo =====
24813 <HTML>
24814 <HEAD>
24815 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
24816 </HEAD>
24817 <BODY>
24818 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
24820 Sets the time in seconds that Alpine will
24821 attempt to open a UNIX remote shell connection.
24822 The default is 15, the minimum non-zero value is 5,
24823 and the maximum is unlimited. If this is set to zero rsh connections
24824 will be completely disabled.
24825 This might be useful if rsh connections will never work in your environment
24826 but are causing delays due to firewalls or some other reason.
24828 <UL>   
24829 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24830 </UL><P>
24831 &lt;End of help on this topic&gt;
24832 </BODY>
24833 </HTML>
24834 ====== h_config_tcp_open_timeo =====
24835 <HTML>
24836 <HEAD>
24837 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
24838 </HEAD>
24839 <BODY>
24840 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
24842 Sets the time in seconds that Alpine will
24843 attempt to open a network connection. The default is 30, the minimum is 5,
24844 and the maximum is system defined (typically 75). If a connection has not
24845 completed within this many seconds Alpine will give up and consider it a
24846 failed connection.
24848 <UL>   
24849 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24850 </UL><P>
24851 &lt;End of help on this topic&gt;
24852 </BODY>
24853 </HTML>
24854 ====== h_config_tcp_readwarn_timeo =====
24855 <HTML>
24856 <HEAD>
24857 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
24858 </HEAD>
24859 <BODY>
24860 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
24862 Sets the time in seconds that Alpine will
24863 wait for a network read before warning you that things are moving slowly
24864 and possibly giving you the option to break the connection.
24865 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
24866 1000 seconds.
24868 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24870 <UL>   
24871 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24872 </UL><P>
24873 &lt;End of help on this topic&gt;
24874 </BODY>
24875 </HTML>
24876 ====== h_config_tcp_writewarn_timeo =====
24877 <HTML>
24878 <HEAD>
24879 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
24880 </HEAD>
24881 <BODY>
24882 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
24884 Sets the time in seconds that Alpine will
24885 wait for a network write before warning you that things are moving slowly
24886 and possibly giving you the option to break the connection.
24887 The default is 0 which means it is unset. If set to a non-zero value, the
24888 minimum is 5 and the maximum is 1000.
24890 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
24892 <UL>   
24893 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24894 </UL><P>
24895 &lt;End of help on this topic&gt;
24896 </BODY>
24897 </HTML>
24898 ====== h_config_tcp_query_timeo =====
24899 <HTML>
24900 <HEAD>
24901 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
24902 </HEAD>
24903 <BODY>
24904 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
24906 When Alpine times out a network read or write it will normally just display
24907 a message saying &quot;Still waiting&quot;.
24908 However, if enough time has elapsed since it started waiting it will offer
24909 to let you break the connection.
24910 That amount of time is set by this option, which defaults to 60 seconds,
24911 has a minimum of 5 seconds, and a maximum of 1000 seconds.
24913 <UL>   
24914 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24915 </UL><P>
24916 &lt;End of help on this topic&gt;
24917 </BODY>
24918 </HTML>
24919 ====== h_config_incoming_folders =====
24920 <HTML>
24921 <HEAD>
24922 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
24923 </HEAD>
24924 <BODY>
24925 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
24927 This is a list of one or more folders other than <EM>INBOX</EM> that
24928 may receive new messages.
24929 It is related to the
24930 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
24931 feature.
24932 This variable is normally manipulated with the Add, Delete, and Rename
24933 commands in the FOLDER LIST for the Incoming Message Folders collection.
24935 <UL>   
24936 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24937 </UL><P>
24938 &lt;End of help on this topic&gt;
24939 </BODY>
24940 </HTML>
24941 ====== h_config_folder_spec =====
24942 <HTML>
24943 <HEAD>
24944 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
24945 </HEAD>
24946 <BODY>
24947 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
24949 This is a list of one or more collections where saved mail is stored. 
24950 The first collection in this list is the default
24951 collection for <EM>Save</EM>s,
24952 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
24954 This variable is normally manipulated using the Setup/collectionList screen.
24956 <UL>   
24957 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24958 </UL><P>
24959 &lt;End of help on this topic&gt;
24960 </BODY>
24961 </HTML>
24962 ====== h_config_news_spec =====
24963 <HTML>
24964 <HEAD>
24965 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
24966 </HEAD>
24967 <BODY>
24968 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
24970 This is a list of collections where news folders are located.
24972 This variable is normally manipulated using the Setup/collectionList screen.
24974 <UL>   
24975 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24976 </UL><P>
24977 &lt;End of help on this topic&gt;
24978 </BODY>
24979 </HTML>
24980 ====== h_config_address_book =====
24981 <HTML>
24982 <HEAD>
24983 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
24984 </HEAD>
24985 <BODY>
24986 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
24988 A list of personal address books.
24989 Each entry in the list is an
24990 optional nickname followed by a pathname or file name relative to the home
24991 directory.
24992 The nickname is separated from the rest of the line with whitespace.
24993 Instead of a local pathname or file name, a remote folder name can be given.
24994 This causes the address book to
24995 be a Remote address book.
24997 Use the Setup/AddressBook 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_glob_addrbook =====
25006 <HTML>
25007 <HEAD>
25008 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
25009 </HEAD>
25010 <BODY>
25011 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
25013 A list of shared address books.  Each entry in the list is an
25014 optional nickname followed by a pathname or file name relative to the home
25015 directory.
25016 A SPACE character separates the nickname from the rest of the line.
25017 Instead of a local pathname or file name, a remote folder name can be given.
25018 This causes the address book to
25019 be a Remote address book.
25020 Global address books are
25021 defined to be ReadOnly.
25023 Use the Setup/AddressBook screen to modify this variable.
25025 <UL>   
25026 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25027 </UL><P>
25028 &lt;End of help on this topic&gt;
25029 </BODY>
25030 </HTML>
25031 ====== h_config_last_vers =====
25032 <HTML>
25033 <HEAD>
25034 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
25035 </HEAD>
25036 <BODY>
25037 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
25039 This is set automatically by Alpine. 
25040 It is used to keep track of the last version of Alpine that
25041 was run by the user.
25042 Whenever the version number increases, a new version message is printed out.
25043 This may not be set in the system-wide configuration files.
25045 <UL>   
25046 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25047 </UL><P>
25048 &lt;End of help on this topic&gt;
25049 </BODY>
25050 </HTML>
25051 ====== h_config_printer =====
25052 <HTML>
25053 <HEAD>
25054 <TITLE>OPTION: Printer</TITLE>
25055 </HEAD>
25056 <BODY>
25057 <H1>OPTION: Printer</H1>
25059 Your default printer selection.
25061 Use the Setup/Printer screen to modify this variable.
25063 <UL>   
25064 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25065 </UL><P>
25066 &lt;End of help on this topic&gt;
25067 </BODY>
25068 </HTML>
25069 ====== h_config_print_cat =====
25070 <HTML>
25071 <HEAD>
25072 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
25073 </HEAD>
25074 <BODY>
25075 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
25077 This is an internal Alpine variable.
25078 It will be equal to 1, 2, or 3 depending on whether the default printer is
25079 attached, standard, or a personal print command.
25081 Use the Setup/Printer screen to modify this variable.
25083 <UL>   
25084 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25085 </UL><P>
25086 &lt;End of help on this topic&gt;
25087 </BODY>
25088 </HTML>
25089 ====== h_config_print_command =====
25090 <HTML>
25091 <HEAD>
25092 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
25093 </HEAD>
25094 <BODY>
25095 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
25097 List of personal print commands.
25099 Use the Setup/Printer screen to modify this variable.
25101 <UL>   
25102 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25103 </UL><P>
25104 &lt;End of help on this topic&gt;
25105 </BODY>
25106 </HTML>
25107 ====== h_config_pat_old =====
25108 <HTML>
25109 <HEAD>
25110 <TITLE>OPTION: Patterns</TITLE>
25111 </HEAD>
25112 <BODY>
25113 <H1>OPTION: Patterns</H1>
25115 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
25116 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
25117 and Patterns-Other.
25118 Patterns-Scores and Patterns-Filters have been replaced since then by
25119 Patterns-Scores2 and Patterns-Filters2.
25121 Use the Setup/Rules screens to modify these variable.
25123 <UL>   
25124 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25125 </UL><P>
25126 &lt;End of help on this topic&gt;
25127 </BODY>
25128 </HTML>
25129 ====== h_config_pat_roles =====
25130 <HTML>
25131 <HEAD>
25132 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
25133 </HEAD>
25134 <BODY>
25135 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
25137 List of rules used for roles.
25138 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
25139 other options.
25141 Use the Setup/Rules/Roles screen to modify this variable.
25143 <UL>   
25144 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25145 </UL><P>
25146 &lt;End of help on this topic&gt;
25147 </BODY>
25148 </HTML>
25149 ====== h_config_pat_filts =====
25150 <HTML>
25151 <HEAD>
25152 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
25153 </HEAD>
25154 <BODY>
25155 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
25157 List of rules used for filters.
25159 Use the Setup/Rules/Filters screen to modify this variable.
25161 <UL>   
25162 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25163 </UL><P>
25164 &lt;End of help on this topic&gt;
25165 </BODY>
25166 </HTML>
25167 ====== h_config_pat_scores =====
25168 <HTML>
25169 <HEAD>
25170 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
25171 </HEAD>
25172 <BODY>
25173 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
25175 List of rules used for scoring.
25177 Use the Setup/Rules/SetScores screen to modify this variable.
25179 <UL>   
25180 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25181 </UL><P>
25182 &lt;End of help on this topic&gt;
25183 </BODY>
25184 </HTML>
25185 ====== h_config_pat_other =====
25186 <HTML>
25187 <HEAD>
25188 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
25189 </HEAD>
25190 <BODY>
25191 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
25193 List of rules used for miscellaneous configuration.
25195 Use the Setup/Rules/Other screen to modify this variable.
25197 <UL>   
25198 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25199 </UL><P>
25200 &lt;End of help on this topic&gt;
25201 </BODY>
25202 </HTML>
25203 ====== h_config_pat_incols =====
25204 <HTML>
25205 <HEAD>
25206 <TITLE>OPTION: patterns-indexcolors</TITLE>
25207 </HEAD>
25208 <BODY>
25209 <H1>OPTION: patterns-indexcolors</H1>
25211 List of rules used for coloring lines in the index.
25213 Use the Setup/Rules/Indexcolor screen to modify this variable.
25215 <UL>   
25216 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25217 </UL><P>
25218 &lt;End of help on this topic&gt;
25219 </BODY>
25220 </HTML>
25221 ====== h_config_pat_srch =====
25222 <HTML>
25223 <HEAD>
25224 <TITLE>OPTION: patterns-search</TITLE>
25225 </HEAD>
25226 <BODY>
25227 <H1>OPTION: patterns-search</H1>
25229 List of rules used only for searching with the Select command in the MESSAGE INDEX.
25231 Use the Setup/Rules/searCh screen to modify this variable.
25233 <UL>   
25234 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25235 </UL><P>
25236 &lt;End of help on this topic&gt;
25237 </BODY>
25238 </HTML>
25239 ====== h_config_font_name =====
25240 <HTML>
25241 <HEAD>
25242 <TITLE>OPTION: Font Name</TITLE>
25243 </HEAD>
25244 <BODY>
25245 <H1>OPTION: Font Name</H1>
25247 PC-Alpine only.
25249 Name of normal font.
25251 Use the pulldown Config menu to modify this variable.
25253 <UL>   
25254 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25255 </UL><P>
25256 &lt;End of help on this topic&gt;
25257 </BODY>
25258 </HTML>
25259 ====== h_config_font_size =====
25260 <HTML>
25261 <HEAD>
25262 <TITLE>OPTION: Font Size</TITLE>
25263 </HEAD>
25264 <BODY>
25265 <H1>OPTION: Font Size</H1>
25267 PC-Alpine only.
25269 Size of normal font.
25271 Use the pulldown Config menu to modify this variable.
25273 <UL>   
25274 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25275 </UL><P>
25276 &lt;End of help on this topic&gt;
25277 </BODY>
25278 </HTML>
25279 ====== h_config_font_style =====
25280 <HTML>
25281 <HEAD>
25282 <TITLE>OPTION: Font Style</TITLE>
25283 </HEAD>
25284 <BODY>
25285 <H1>OPTION: Font Style</H1>
25287 PC-Alpine only.
25289 Style of normal font.
25291 Use the pulldown Config menu to modify this variable.
25293 <UL>   
25294 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25295 </UL><P>
25296 &lt;End of help on this topic&gt;
25297 </BODY>
25298 </HTML>
25299 ====== h_config_font_char_set =====
25300 <HTML>
25301 <HEAD>
25302 <TITLE>OPTION: Font Character Set</TITLE>
25303 </HEAD>
25304 <BODY>
25305 <H1>OPTION: Font Character Set</H1>
25307 PC-Alpine only.
25309 Character set of normal font.
25311 Use the pulldown Config menu to modify this variable.
25313 <UL>   
25314 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25315 </UL><P>
25316 &lt;End of help on this topic&gt;
25317 </BODY>
25318 </HTML>
25319 ====== h_config_print_font_name =====
25320 <HTML>
25321 <HEAD>
25322 <TITLE>OPTION: Print-Font-Name</TITLE>
25323 </HEAD>
25324 <BODY>
25325 <H1>OPTION: Print-Font-Name</H1>
25327 PC-Alpine only.
25329 Name of printer font.
25331 Use the pulldown Config menu to modify this variable.
25333 <UL>   
25334 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25335 </UL><P>
25336 &lt;End of help on this topic&gt;
25337 </BODY>
25338 </HTML>
25339 ====== h_config_print_font_size =====
25340 <HTML>
25341 <HEAD>
25342 <TITLE>OPTION: Print-Font-Size</TITLE>
25343 </HEAD>
25344 <BODY>
25345 <H1>OPTION: Print-Font-Size</H1>
25347 PC-Alpine only.
25349 Size of printer font.
25351 Use the pulldown Config menu to modify this variable.
25353 <UL>   
25354 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25355 </UL><P>
25356 &lt;End of help on this topic&gt;
25357 </BODY>
25358 </HTML>
25359 ====== h_config_print_font_style =====
25360 <HTML>
25361 <HEAD>
25362 <TITLE>OPTION: Print-Font-Style</TITLE>
25363 </HEAD>
25364 <BODY>
25365 <H1>OPTION: Print-Font-Style</H1>
25367 PC-Alpine only.
25369 Style of printer font.
25371 Use the pulldown Config menu to modify this variable.
25373 <UL>   
25374 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25375 </UL><P>
25376 &lt;End of help on this topic&gt;
25377 </BODY>
25378 </HTML>
25379 ====== h_config_print_font_char_set =====
25380 <HTML>
25381 <HEAD>
25382 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
25383 </HEAD>
25384 <BODY>
25385 <H1>OPTION: Print-Font-Char-Set</H1>
25387 PC-Alpine only.
25389 Character set of printer font.
25391 Use the pulldown Config menu to modify this variable.
25393 <UL>   
25394 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25395 </UL><P>
25396 &lt;End of help on this topic&gt;
25397 </BODY>
25398 </HTML>
25399 ====== h_config_window_position =====
25400 <HTML>
25401 <HEAD>
25402 <TITLE>OPTION: Window-Position</TITLE>
25403 </HEAD>
25404 <BODY>
25405 <H1>OPTION: Window-Position</H1>
25407 PC-Alpine only.
25409 Position on the screen of the Alpine window.
25411 Alpine normally maintains this variable itself, and it is set automatically. 
25412 This variable is provided to those who wish to use the same window position 
25413 across different machines from the same configuration.
25414 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
25415 must also be set for this setting to be used.
25417 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
25418 C is the number of columns, R is the number of rows, and X and Y specify the
25419 top left corner of the window.
25421 <UL>   
25422 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25423 </UL><P>
25424 &lt;End of help on this topic&gt;
25425 </BODY>
25426 </HTML>
25427 ====== h_config_cursor_style =====
25428 <HTML>
25429 <HEAD>
25430 <TITLE>OPTION: Cursor Style</TITLE>
25431 </HEAD>
25432 <BODY>
25433 <H1>OPTION: Cursor Style</H1>
25435 PC-Alpine only.
25437 Cursor style.
25439 Use the pulldown Config menu to modify this variable.
25441 <UL>   
25442 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25443 </UL><P>
25444 &lt;End of help on this topic&gt;
25445 </BODY>
25446 </HTML>
25447 ====== h_config_ldap_servers =====
25448 <HTML>
25449 <HEAD>
25450 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
25451 </HEAD>
25452 <BODY>
25453 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
25455 List of LDAP servers and associated data.
25457 Use the Setup/Directory screen to modify this variable.
25459 <UL>   
25460 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25461 </UL><P>
25462 &lt;End of help on this topic&gt;
25463 </BODY>
25464 </HTML>
25465 ====== h_config_sendmail_path =====
25466 <HTML>
25467 <HEAD>
25468 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
25469 </HEAD>
25470 <BODY>
25471 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
25473 This names the path to an
25474 alternative program, and any necessary arguments, to be used in posting
25475 mail messages. See the Technical notes for more information.
25477 <UL>   
25478 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25479 </UL><P>
25480 &lt;End of help on this topic&gt;
25481 </BODY>
25482 </HTML>
25483 ====== h_config_oper_dir =====
25484 <HTML>
25485 <HEAD>
25486 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
25487 </HEAD>
25488 <BODY>
25489 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
25491 This names the root of the
25492 tree to which you are restricted when reading and writing folders and
25493 files. It is usually used in the system-wide,
25494 <EM>fixed</EM> configuration file.
25496 <UL>   
25497 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25498 </UL><P>
25499 &lt;End of help on this topic&gt;
25500 </BODY>
25501 </HTML>
25502 ====== h_config_rshpath =====
25503 <HTML>
25504 <HEAD>
25505 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
25506 </HEAD>
25507 <BODY>
25508 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
25510 Sets the name of the command used to open a UNIX remote shell
25511 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
25513 <UL>   
25514 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25515 </UL><P>
25516 &lt;End of help on this topic&gt;
25517 </BODY>
25518 </HTML>
25519 ====== h_config_rshcmd =====
25520 <HTML>
25521 <HEAD>
25522 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
25523 </HEAD>
25524 <BODY>
25525 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
25527 Sets the format of the command used to
25528 open a UNIX remote shell connection. The default is
25529 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25530 provided command. The first is for the command's pathname, the second is
25531 for the host to connnect to, the third is for the user to connect as, and
25532 the fourth is for the connection method (typically <CODE>imap</CODE>).
25534 <UL>   
25535 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25536 </UL><P>
25537 &lt;End of help on this topic&gt;
25538 </BODY>
25539 </HTML>
25540 ====== h_config_sshpath =====
25541 <HTML>
25542 <HEAD>
25543 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
25544 </HEAD>
25545 <BODY>
25546 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
25548 Sets the name of the command used to open a UNIX secure shell
25549 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
25551 <UL>   
25552 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25553 </UL><P>
25554 &lt;End of help on this topic&gt;
25555 </BODY>
25556 </HTML>
25557 ====== h_config_sshcmd =====
25558 <HTML>
25559 <HEAD>
25560 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
25561 </HEAD>
25562 <BODY>
25563 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
25565 Sets the format of the command used to
25566 open a UNIX secure shell connection. The default is
25567 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25568 provided command. The first is for the command's pathname, the second is
25569 for the host to connnect to, the third is for the user to connect as, and
25570 the fourth is for the connection method (typically <CODE>imap</CODE>).
25572 <UL>   
25573 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25574 </UL><P>
25575 &lt;End of help on this topic&gt;
25576 </BODY>
25577 </HTML>
25578 ====== h_config_new_ver_quell =====
25579 <HTML>
25580 <HEAD>
25581 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
25582 </HEAD>
25583 <BODY>
25584 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
25586 When a new version of Alpine is run for the first time it offers a
25587 special explanatory screen to the user upon startup.  This option
25588 helps control when and if that special screen appears for users that
25589 have previously run Alpine.  It takes as its value an Alpine version
25590 number.  Alpine versions less than the specified value will supress this
25591 special screen while versions equal to or greater than that specified
25592 will behave normally.
25594 <UL>   
25595 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25596 </UL><P>
25597 &lt;End of help on this topic&gt;
25598 </BODY>
25599 </HTML>
25600 ====== h_config_disable_drivers =====
25601 <HTML>
25602 <HEAD>
25603 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
25604 </HEAD>
25605 <BODY>
25606 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
25608 This variable is a list of mail drivers that will be disabled.
25609 The candidates for disabling are listed below.
25610 There may be more in the future if you compile Alpine with
25611 a newer version of the c-client library.
25614 <UL>
25615 <LI> mbox
25616 <LI> mbx
25617 <LI> mh
25618 <LI> mmdf
25619 <LI> mtx
25620 <LI> mx
25621 <LI> news
25622 <LI> phile
25623 <LI> tenex
25624 <LI> unix
25625 </UL>
25628 The <EM>mbox</EM> driver enables the following behavior: if there is a
25629 file called <CODE>mbox</CODE>
25630 in your home directory, and if that file is either empty or in Unix mailbox
25631 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
25632 will automatically transfer mail from the system mail spool directory into the
25633 <CODE>mbox</CODE> file and
25634 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
25635 this will not happen.
25638 It is not recommended to disable the driver that supports the system default
25639 mailbox format. On most non-SCO systems, that driver is the
25640 <EM>unix</EM> driver.
25641 On most SCO systems, it is the <EM>mmdf</EM> driver.
25642 The system default driver may be
25643 configured to something else on your system; check with your system manager
25644 for additional information.
25647 It is most likely not very useful for you to disable any of the drivers other
25648 than possibly <EM>mbox</EM>.
25649 You could disable some of the others if you know for
25650 certain that you don't need them but the performance gain in doing so
25651 is very modest.
25653 <UL>   
25654 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25655 </UL><P>
25656 &lt;End of help on this topic&gt;
25657 </BODY>
25658 </HTML>
25659 ====== h_config_disable_auths =====
25660 <HTML>
25661 <HEAD>
25662 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
25663 </HEAD>
25664 <BODY>
25665 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
25667 This variable is a list of SASL (Simple Authentication and Security
25668 Layer) authenticators that will be disabled.
25669 SASL is a mechanism for
25670 authenticating to IMAP, POP3, SMTP, and other network servers.
25673 Alpine matches its list of supported authenticators with the server to
25674 determine the most secure authenticator that is supported by both.
25675 If no matching authenticators are found, Alpine will revert to plaintext
25676 login (or, in the case of SMTP, will be unable to authenticate at all).
25678 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
25681 Normally, you will not disable any authenticators.
25682 There are two exceptions:
25684 <OL>
25685 <LI> You use a broken server that advertises an authenticator,
25686 but does not actually implement it.
25687 <LI> You have a Kerberos-capable version of Alpine and the server is
25688 also Kerberos-capable, but you can not obtain Kerberos
25689 credentials on the server machine, thus you desire to disable
25690 GSSAPI (which in turn disables Alpine's Kerberos support).
25691 </OL>
25693 It is never necessary to disable authenticators, since Alpine will try
25694 other authenticators before giving up.
25695 However, disabling the relevant authenticator avoids annoying error messages.
25697 <UL>   
25698 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25699 </UL><P>
25700 &lt;End of help on this topic&gt;
25701 </BODY>
25702 </HTML>
25703 ====== h_config_abook_metafile =====
25704 <HTML>
25705 <HEAD>
25706 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
25707 </HEAD>
25708 <BODY>
25709 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
25711 This is usually set by Alpine and is the name of a file
25712 that contains data about
25713 remote address books and remote configuration files.
25715 <UL>   
25716 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25717 </UL><P>
25718 &lt;End of help on this topic&gt;
25719 </BODY>
25720 </HTML>
25721 ====== h_config_composer_wrap_column =====
25722 <HTML>
25723 <HEAD>
25724 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
25725 </HEAD>
25726 <BODY>
25727 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
25730 This option specifies an aspect of Alpine's Composer.  This gives the
25731 maximum width that auto-wrapped lines will have.  It's also the maximum
25732 width of lines justified using the <A HREF="h_compose_justify">^J
25733 Justify</A> command.  The normal default
25734 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
25735 in order to
25736 prevent very long lines from being sent in outgoing mail.  When the mail
25737 is actually sent, trailing spaces will be stripped off of each line.
25740 <UL>   
25741 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25742 </UL><P>
25743 &lt;End of help on this topic&gt;
25744 </BODY>
25745 </HTML>
25746 ====== h_config_deadlets =====
25747 <HTML>
25748 <HEAD>
25749 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
25750 </HEAD>
25751 <BODY>
25752 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
25755 This option affects Alpine's behavior when you cancel a message being
25756 composed.  Alpine's usual behavior is to write the canceled message to
25757 a file named 
25758 <!--chtml if pinemode="os_windows"-->
25759 &quot;DEADLETR&quot;,
25760 <!--chtml else-->
25761 &quot;dead.letter&quot; in your home directory,
25762 <!--chtml endif-->
25763 overwriting any previous message.
25765 If you set this option to a value higher than one, then that many copies
25766 of dead letter files will be saved.
25767 For example, if you set this option to &quot;3&quot; then you may have
25768 files named
25769 <!--chtml if pinemode="os_windows"-->
25770 &quot;DEADLETR&quot;,
25771 &quot;DEADLETR2&quot;, and
25772 &quot;DEADLETR3&quot;.
25773 <!--chtml else-->
25774 &quot;dead.letter&quot;,
25775 &quot;dead.letter2&quot;, and
25776 &quot;dead.letter3&quot; in your home directory.
25777 <!--chtml endif-->
25778 In this example, the most recently cancelled message will be in
25779 <!--chtml if pinemode="os_windows"-->
25780 &quot;DEADLETR&quot;,
25781 <!--chtml else-->
25782 &quot;dead.letter&quot;,
25783 <!--chtml endif-->
25784 and the third most recently cancelled message will be in
25785 <!--chtml if pinemode="os_windows"-->
25786 &quot;DEADLETR3&quot;.
25787 <!--chtml else-->
25788 &quot;dead.letter3&quot;.
25789 <!--chtml endif-->
25790 The fourth most recently cancelled message will no longer be saved.
25793 If you set this option to zero, then NO record of canceled messages is
25794 maintained.
25796 If the feature
25797 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
25798 is set, that overrides whatever you set for this option.
25799 If this option had existed at the time, then the Quell feature would not
25800 have been added, but it is still there for backwards compatibility.
25801 So, in order for this option to have the desired effect, make sure the
25802 Quell feature is turned off.
25805 <UL>   
25806 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25807 </UL><P>
25808 &lt;End of help on this topic&gt;
25809 </BODY>
25810 </HTML>
25811 ====== h_config_maxremstream =====
25812 <HTML>
25813 <HEAD>
25814 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
25815 </HEAD>
25816 <BODY>
25817 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
25819 This option affects low-level behavior of Alpine.
25820 The default value for this option is <EM>3</EM>.
25821 If your INBOX is accessed using the IMAP protocol
25822 from an IMAP server, that connection is kept open throughout the
25823 duration of your Alpine session, independent of the value of this option.
25824 The same is true of any 
25825 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
25826 you have defined.
25827 This option controls Alpine's behavior when connecting to remote IMAP folders
25828 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
25829 It specifies the maximum number of remote IMAP connections (other than
25830 those mentioned above) that Alpine will use for accessing the rest of your
25831 folders.
25832 If you set this option to zero, you will turn off most remote connection
25833 re-use.
25834 It's difficult to understand exactly what this option does, and it is usually
25835 fine to leave it set to its default value.
25836 It is probably more likely that you will be interested in setting the
25837 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
25838 instead of changing the value of this option.
25839 A slightly longer explanation of what is going on with this option
25840 is given in the next paragraphs.
25843 There are some time costs involved in opening and closing remote IMAP 
25844 folders, the main costs being the time you have to wait for the connection
25845 to the server and the time for the folder to open.
25846 Opening a folder may involve not only the time the server takes to do its
25847 processing but time that Alpine uses to do filtering.
25848 These times can vary widely.
25849 They depend on how loaded the server is, how large
25850 the folder being opened is, and how you set up filtering, among other things.
25851 Once Alpine has opened a connection to a particular folder, it will attempt
25852 to keep that connection open in case you use it again.
25853 In order to do this,
25854 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
25855 this option) IMAP connections you have alloted for this purpose.
25857 For example, suppose the value of this option is set to &quot;2&quot;.
25858 If your INBOX is accessed on a remote server using the IMAP protocol, that
25859 doesn't count as one of the remote connections but it is always kept open.
25860 If you then open another IMAP folder, that would be your first
25861 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
25862 If you open a third folder the second will be left open, in case you
25863 return to it.
25864 You won't be able to tell it has been left open.
25865 It will appear to be closed when you leave the folder but the connection
25866 will remain in the background.
25867 Now suppose you go back to the second folder (the first folder after the
25868 INBOX).
25869 A connection to that folder is still open so you won't have to wait
25870 for the startup time to open it.
25871 Meanwhile, the connection to the third folder will be left behind.
25872 Now, if you open a fourth folder, you will bump into the
25873 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
25874 than INBOX and you have the option set to &quot;2&quot;.
25875 The connection that is being used for
25876 the third folder will be re-used for this new fourth folder.
25877 If you go back to the third folder after this, it is no longer already
25878 connected when you get there.
25879 You'll still save some time since Alpine will re-use the connection to the
25880 fourth folder and you have already logged in on that connection,
25881 but the folder will have to be re-opened from scratch.
25883 If a folder is large and the startup cost is dominated by the time it takes
25884 to open that folder or to run filters on it, then it will pay to make the
25885 value of this option large enough to keep it open.
25886 On the other hand, if you only revisit a handful of folders or if
25887 the folders are small, then it might
25888 make more sense to keep this number small so that the reconnect
25889 time (the time to start up a new connection and authenticate)
25890 is eliminated instead.
25892 You may also need to consider the impact on the server.
25893 On the surface, a larger number here may cause a larger impact on the
25894 server, since you will have more connections open to the server.
25895 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
25896 associated with reopening a folder, but the <EM>server</EM> will be
25897 avoiding those costs as well.
25899 When twenty five minutes pass without any active use of an IMAP connection
25900 being saved for possible re-use, that connection will be shut down,
25903 <UL>   
25904 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25905 </UL><P>
25906 &lt;End of help on this topic&gt;
25907 </BODY>
25908 </HTML>
25909 ====== h_config_permlocked =====
25910 <HTML>
25911 <HEAD>
25912 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
25913 </HEAD>
25914 <BODY>
25915 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
25917 This option affects low-level behavior of Alpine.
25918 There is no default value for this option.
25919 It is related to the options
25920 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
25921 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
25922 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
25925 Note: changes made to this list take effect the next time you open a
25926 folder in the list.
25929 This is a list of folders that will be permanently kept open once they
25930 are first opened.
25931 The names in this list may be either the nickname of an Incoming folder
25932 or the full technical specification of a folder.
25933 The folders in this list need not be remote IMAP folders, they could usefully
25934 be local folders, as well.
25935 If a folder in the list is a newsgroup or is not accessed either locally
25936 or via IMAP, then the entry will be ignored.
25937 For example, folders accessed via NNTP or POP3 will not be kept open, since
25938 the way that new mail is found with those protocols involves closing and
25939 reopening the connection.
25941 Once a Stay Open folder has been opened, new-mail checking will continue
25942 to happen on that folder for the rest of the Alpine session.
25943 Your INBOX is always implicitly included in this Stay-Open list and doesn't
25944 need to be added explicitly.
25946 Another difference that you may notice between a Stay Open folder and a
25947 non-Stay Open folder is which message is selected as the current message
25948 when you enter the folder index.
25949 Normally, the starting position for an incoming folder (which most Stay Open
25950 folders will likely be) is controlled by the
25951 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
25952 However, if a folder is a Stay Open folder, when you re-enter the folder
25953 after the first time the current message will be the same as it was when
25954 you left the folder.
25955 An exception is made if you use the TAB command to get to the folder.
25956 In that case, the message number will be incremented by one from what it
25957 was when you left the folder.
25959 The above special behavior is thought to be useful.
25960 However, it is special and different from what you might at first expect.
25961 The feature
25962 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
25963 may be used to turn off this special treatment.
25965 If the message that was current when you left the folder no longer exists,
25966 then the regular startup rule will be used instead.
25969 <UL>   
25970 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25971 </UL><P>
25972 &lt;End of help on this topic&gt;
25973 </BODY>
25974 </HTML>
25975 ====== h_config_viewer_overlap =====
25976 <html>
25977 <header>
25978 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
25979 </header>
25980 <body>
25981 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
25983 This option specifies an aspect of Alpine's Message Viewing screen.  When
25984 the space bar is used to page forward in a message, the number of lines
25985 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
25986 bottom of the screen.  That is, if this was set to two lines, then the
25987 bottom two lines of the screen would be repeated on the top of the next
25988 screen.  The normal default value is "2".<p>
25989 <UL>   
25990 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25991 </UL><P>
25992 &lt;End of help on this topic&gt;
25993 </body>
25994 </html>
25995 ====== h_config_scroll_margin =====
25996 <HTML>
25997 <HEAD>
25998 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
25999 </HEAD>
26000 <BODY>
26001 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
26003 This option controls when Alpine's line-by-line scrolling occurs.
26004 Typically, when a selected item is at the top or bottom screen edge
26005 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
26006 displayed items are scrolled down or up by a single line.
26009 This option allows you to tell Alpine the number of lines from the top and
26010 bottom screen edge that line-by-line paging should occcur.  For example,
26011 setting this value to one (1) will cause Alpine to scroll the display
26012 vertically when you move to select an item on the display's top or
26013 bottom edge.
26016 By default, this variable is zero, indicating that scrolling happens
26017 when you move up or down to select an item immediately off the display's
26018 top or bottom edge.
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_wordseps =====
26028 <HTML>
26029 <HEAD>
26030 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
26031 </HEAD>
26032 <BODY>
26033 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
26035 This option affects how a &quot;word&quot; is defined in the composer.
26036 The definition of a word is used when using the Forward Word and Backward
26037 Word commands in the composer, as well as when using the spell checker.
26038 Whitespace is always considered a word separator.
26039 Punctuation (like question marks, periods, commas, and so on) is always
26040 a word separator if it comes at the end of a word.
26041 By default, a punctuation character that is in the middle of a word does
26042 not break up that word as long as the character before and the character
26043 after it are both alphanumeric.
26044 If you add a character to this option it will be considered a
26045 word separator even when it occurs in the middle of an alphanumeric word.
26046 For example, if you want to skip through each part of an address instead
26047 of skipping the whole address at once you might want to include &quot;@&quot;
26048 and &quot;.&quot; in this list.
26049 If you want the word-skipper to stop on each part of a UNIX filename you
26050 could add &quot;/&quot; to the list.
26051 The equal sign and dash are other possibilities you might find helpful.
26053 <UL>   
26054 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26055 </UL><P>
26056 &lt;End of help on this topic&gt;
26057 </BODY>
26058 </HTML>
26059 ====== h_config_reply_indent_string =====
26060 <HTML>
26061 <HEAD>
26062 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
26063 </HEAD>
26064 <BODY>
26065 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
26067 This option specifies an aspect of Alpine's Reply command.
26068 When a message is replied to and the text of the message is included, the
26069 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
26070 to each line indicating it is quoted text.
26071 (In case you haven't seen this before, &quot;string&quot; is a technical term
26072 that means chunk of text.)
26075 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
26076 in 1999 and its wide-spread adoption since then, you will usually be better off if you
26077 use one of the standard values,
26078 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
26081 This option specifies a different value for that string.
26082 If you wish to use a string that begins or ends with a space,
26083 enclose the string in double quotes.
26086 Besides simple text, the prepended string can be based
26087 on the message being replied to.
26088 The following tokens are substituted for the message's corresponding value:
26090 <DL>
26091 <DT>_FROM_</DT>
26092 <DD>This token gets replaced with the message sender's &quot;username&quot;.
26093 If the name is longer than six characters, only the first six characters are
26094 used.
26095 </DD>
26097 <DT>_NICK_</DT>
26098 <DD>This token gets replaced with the nickname of the message sender's
26099 address as found in your addressbook.
26100 If no addressbook entry is found,
26101 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
26102 If the nickname is longer than six characters, only the first six characters are
26103 used.
26104 </DD>
26106 <DT>_INIT_</DT>
26107 <DD>This token gets replaced with the initials of the sender of the message.
26108 </DD>
26110 </DL>
26112 NOTE: When the
26113 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
26114 feature is enabled, you are given the opportunity to edit the string, whether 
26115 it is the default or one automatically generated using the above tokens.
26117 If you change your <!--#echo var="VAR_reply-indent-string"-->
26118 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
26119 quoted text will not be flowed
26120 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
26121 when you reply.
26122 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
26123 set to the default value.
26125 <UL>   
26126 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26127 </UL><P>
26128 &lt;End of help on this topic&gt;
26129 </BODY>
26130 </HTML>
26131 ====== h_config_quote_replace_string =====
26132 <HTML>
26133 <HEAD>
26134 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
26135 </HEAD>
26136 <BODY>
26137 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
26139 This option specifies what string to use as a quote when <b>viewing</b> a
26140 message.  The standard way of quoting messages when replying is the string
26141 &quot;&gt;&nbsp;&quot; (quote space).
26142 With this variable set, viewing a message will
26143 replace occurrences of 
26144 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
26145 This setting works best when
26146 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
26147 or the equivalent setting in your correspondents' mail programs
26148 is set to the default
26149 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
26150 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
26152 By default, this setting will only work on messages that are flowed, which is
26153 the default way of sending messages for many mail clients including
26154 Alpine.  Enable the feature
26155 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
26156 to also have quote-replacement performed on non-flowed messages.
26159 Setting this option will replace  &quot;&gt;&quot; and 
26160 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
26161 spaces. To preserve those spaces enclose the full string in double quotes.
26163 No padding to separate the text of the message from the quote string is
26164 added. This means that if you do not add trailing spaces to the value of
26165 this variable, text will be displayed right next to the quote string,
26166 which may be undesirable. This can be avoided by adding a new string
26167 separated by a space from your selection of quote string replacement. This
26168 last string will be used for padding. For example, setting this variable to 
26169 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
26170 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
26171 a space from the last quote string to make it more readable.
26173 One possible setting for this variable could be
26174 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
26175 would have the effect of indenting each level of quoting four spaces and
26176 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
26177 more discernible by setting colors for quoted text.
26179 Replying to or forwarding the viewed message will preserve the original
26180 formatting of the message, so quote-replacement will not be performed on
26181 messages that are being composed.
26183 <UL>   
26184 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26185 </UL><P>
26186 &lt;End of help on this topic&gt;
26187 </BODY>
26188 </HTML>
26189 ====== h_config_empty_hdr_msg =====
26190 <HTML>
26191 <HEAD>
26192 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
26193 </HEAD>
26194 <BODY>
26195 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
26197 When sending, if both the To and Cc fields are empty and you
26198 are sending the message to a Bcc,
26199 Alpine will put a special address in the To line.  The default value is:
26202 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
26205 The reason for this is to avoid embarrassment caused by some Internet
26206 mail transfer software that interprets a &quot;missing&quot;
26207 <SAMP>To:</SAMP> header as an error and replaces it with an
26208 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
26209 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
26210 Bcc.  You may change the part of this message that comes before the
26211 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
26212 variable to something else.
26215 The normal default is &quot;undisclosed-recipients&quot;.
26218 <UL>   
26219 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26220 </UL><P>
26221 &lt;End of help on this topic&gt;
26222 </BODY>
26223 </HTML>
26224 ====== h_config_status_msg_delay =====
26225 <HTML>
26226 <HEAD>
26227 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
26228 </HEAD>
26229 <BODY>
26230 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
26232 This option has evolved over time, causing the possible values to be
26233 counter-intuitive.
26234 Read carefully before you set this option.
26235 First we explain what the option does, then there is a longer discussion
26236 following that.
26238 If this is set to zero, the default value, it has <EM>no</EM> effect.
26239 Positive and negative values serve two similar, but different purposes.
26241 If it is set to a positive number, it causes the cursor to move to the
26242 status line whenever a status message is printed and pause there for this
26243 many seconds.
26244 It will probably only be useful if the 
26245 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
26246 also turned on.
26247 Setting this option to a positive number can only be used to
26248 <EM>increase</EM> the status message delay.
26249 This may be useful for Braille displays, or other non-traditional displays.
26251 If it is set to a negative number the interpretation is a bit complicated.
26252 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
26253 allow you to read important status messages.
26254 Of course, this may cause you to miss some important messages.
26255 If you see a message flash by but miss what it says you can use the
26256 Journal command from the MAIN MENU to read it.
26257 If you set this option to a negative value, the delay will be
26258 no more than one second less than the absolute value
26259 of the value you set.
26260 So if you set it to -1, the delay will be no more than zero seconds, no
26261 delay at all.
26262 If you set it to -2, the delay will be no more than 1 second.
26263 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
26264 If the delay that Alpine would have used by default is less than this delay,
26265 then the smaller delay set by Alpine will be used.
26266 Setting this option to a negative value can only reduce the amount of
26267 delay, never increase it.
26269 Here is a more detailed explanation.
26270 Status messages are the messages that show up spontaneously in the
26271 status message line, usually the third line from the bottom of the screen.
26272 By default, Alpine assigns each status message it produces a minimum
26273 display time.
26274 Some status messages have a minimum display time of zero.
26275 You can see an example of such a message by paging up in this help text
26276 until you reach the top of the screen.
26277 If you try to page past the top you will see the message
26279 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
26281 in the status line.
26282 If there is another more important use of the status message line this message
26283 might be replaced quickly, or it even might not be shown at all.
26284 However, if there is no reason to get rid of the message, it might stay
26285 there for several seconds while you read the help.
26286 An example where it is replaced immediately happens when you page up in
26287 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
26288 command right after paging up.
26289 The message will disappear immediately without causing a delay (unless you
26290 have set this option to a positive value) to allow you to type input for
26291 the &quot;WhereIs&quot; command.
26292 Since it isn't a very important message, Alpine has set its minimum display
26293 time to zero seconds.
26295 Other messages have minimum display times of three or more seconds.
26296 These are usually error messages that Alpine thinks you ought to see.
26297 For example, it might be a message about a failed Save or a failed folder open.
26298 It is often the case that this minimum display time won't delay you in
26299 any way because the status message line is not needed for another reason.
26300 However, there are times when Alpine has to delay what it is doing in
26301 order to display a status message for the minimum display time.
26302 This happens when a message is being displayed and Alpine wants to ask
26303 for input from the keyboard.
26304 For example, when you Save a message you use the status message line.
26305 You get a prompt there asking for the name of the folder to save to.
26306 If there is a status message being displayed that has not
26307 yet displayed for its minimum
26308 time Alpine will display that status message surrounded with the characters
26309 &gt; and &lt; to show you that it is delaying.
26310 That might happen, for example, if you tried to save to a folder that
26311 caused an error, then followed that immediately with another Save command.
26312 You might find yourself waiting for a status message like
26314 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
26316 to finish displaying for three seconds.
26317 If that is something you find happening to you frequently, you may use
26318 negative values of this option to decrease or eliminate that delay, at
26319 the risk of missing the message.
26321 <UL>   
26322 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26323 </UL><P>
26324 &lt;End of help on this topic&gt;
26325 </BODY>
26326 </HTML>
26327 ====== h_config_active_msg_interval =====
26328 <HTML>
26329 <HEAD>
26330 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
26331 </HEAD>
26332 <BODY>
26333 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
26335 When Alpine is delayed for some reason it usually shows that
26336 something is happening with a small animated display in the status
26337 message line near the bottom of the screen.
26338 This option sets how frequently the characters (for example, a spinning bar)
26339 in the active status message lines are updated.
26340 At most, it can be set to be udpated 20 times per second. 
26343 Setting this value to zero will prevent display of the animations
26344 altogether.
26347 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
26348 can be used to remove the randomness from this animated display.
26351 <UL>   
26352 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26353 </UL><P>
26354 &lt;End of help on this topic&gt;
26355 </BODY>
26356 </HTML>
26357 ====== h_config_mailchecknoncurr =====
26358 <HTML>
26359 <HEADER>
26360 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
26361 </HEADER>
26362 <BODY>
26363 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
26365 This option is closely related to the
26366 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26367 option, as well as the
26368 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
26369 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
26370 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
26371 new-mail checking is disabled and this option will have no effect.
26373 Normally this option is set to zero, which means that the value used will be
26374 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
26375 If you set this option to a value different from zero
26376 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
26377 then that is the check interval that will be used
26378 for folders that are not the currently open folder or the INBOX.
26379 You may not even have any folders that are noncurrent and not the INBOX.
26380 If you do, it is likely that they are due to
26381 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
26382 you have configured.
26383 This option also affects the rate of mail checking done on cached
26384 connections to folders you previously had open but are no longer actively
26385 using.
26386 You aren't expected to understand that last sentence, but if you are interested
26387 take a look at
26388 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
26389 and the related options.
26391 <UL>   
26392 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26393 </UL><P>
26394 &lt;End of help on this topic&gt;
26395 </BODY>
26396 </HTML>
26397 ====== h_config_fifopath =====
26398 <HTML>
26399 <HEADER>
26400 <TITLE>OPTION: NewMail FIFO Path</TITLE>
26401 </HEADER>
26402 <BODY>
26403 <H1>OPTION: NewMail FIFO Path</H1>
26405 This option is only available in UNIX Alpine.
26406 However, there is a very similar feature built in to PC-Alpine.
26407 In PC-Alpine's Config menu at the top of the screen
26408 is an option called &quot;New Mail Window&quot;.
26410 You may have Alpine create a FIFO special file (also called a named pipe) where
26411 it will send a one-line message each time a new message is received in
26412 the current folder, the INBOX, or any open
26413 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
26414 To protect against two different Alpines both writing to the same FIFO, Alpine
26415 will only create the FIFO and write to it if it doesn't already exist.
26417 A possible way to use this option would be to have a separate window
26418 on your screen running the command
26420 <CENTER><SAMP>cat filename</SAMP></CENTER>
26422 where &quot;filename&quot; is the name of the file given for this option.
26423 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
26424 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
26425 You may be tempted to use &quot;tail -f filename&quot; to view the new
26426 mail log.
26427 However, the common implementations of the tail command will not do what you
26428 are hoping.
26430 The width of the messages produced for the FIFO may be altered with the
26431 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
26433 On some systems, fifos may only be created in a local filesystem.
26434 In other words, they may not be in NFS filesystems.
26435 This requirement is not universal.
26436 If the system you are using supports it, it should work.
26437 (It is often the case that your home directory is in an NFS filesystem.
26438 If that is the case, you might try using a file in the &quot;/tmp&quot;
26439 filesystem, which is usually a local filesytem.)
26440 Even when it is possible to use an NFS-mounted filesystem as a place to name
26441 the fifo (for example, your home directory), it will still be the case that
26442 the reader (probably the &quot;cat&quot; command) and the
26443 writer (Alpine) of the fifo must be running on the same system.
26445 <UL>   
26446 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26447 </UL><P>
26448 &lt;End of help on this topic&gt;
26449 </BODY>
26450 </HTML>
26451 ====== h_config_newmailwidth =====
26452 <HTML>
26453 <HEADER>
26454 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
26455 </HEADER>
26456 <BODY>
26457 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
26459 For UNIX Alpine, this option is only useful if you have turned on the
26460 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
26461 That option causes new mail messages to be sent to a fifo file.
26462 Those messages will be 80 characters wide by default.
26463 You can change the width of those messages by changing this option.
26464 For example, if you are reading those messages in another window you might
26465 want to set this width to the width of that other window.
26467 If you are using PC-Alpine, it has an option in the Config menu to turn
26468 on the &quot;New Mail Window&quot;.
26469 This present option also controls the width of that window.
26471 <UL>   
26472 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26473 </UL><P>
26474 &lt;End of help on this topic&gt;
26475 </BODY>
26476 </HTML>
26477 ====== h_config_mailcheck =====
26478 <HTML>
26479 <HEADER>
26480 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
26481 </HEADER>
26482 <BODY>
26483 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
26485 This option specifies, in seconds,
26486 how often Alpine will check for new mail.
26487 If set to zero, new-mail checking is disabled.
26488 (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
26489 current message is the last message of the folder.)
26490 There is a minimum value for this option, normally 15 seconds.
26491 The default value is normally 150 seconds.
26492 The higher you set this option, the easier it is on the server.
26494 There are some situations where automatic new-mail checking does not work.
26495 See the discussion about new-mail checking in
26496 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
26498 The new-mail checking will not happen exactly at the frequency that you specify.
26499 For example, Alpine may elect to defer a non-INBOX mail check if you
26500 are busy typing.
26501 Or, it may check more frequently than you have specified if that is
26502 thought to be necessary to keep the server from closing the connection
26503 to the folder due to inactivity.
26504 If Alpine checks for new mail as a side effect of another command, it will reset
26505 the timer, so that new-mail checking may seem to happen irregularly instead of
26506 every X seconds like clockwork.
26508 If you are anxious to know about new mail as soon as possible, set the check
26509 interval low, and you'll know about the new mail by approximately
26510 that amount of time after it arrives.
26511 If you aren't so worried about knowing right away, set this option to a
26512 higher value.
26513 That will save the server some processing time and may save you some of
26514 the time you spend waiting for new-mail checks to happen if you are
26515 dealing with a slow server or slow network connection.
26517 If you suspect that new-mail checking is causing slow downs for you,
26518 you may want to look into the options
26519 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
26520 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
26521 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
26522 which refine when mail checking is done.
26524 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
26525 there is a minimum time
26526 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
26527 between new-mail checks.
26528 Because of this minimum you may notice that new mail does not
26529 appear promptly when you expect it.
26530 The reason for this is to protect the server from over-zealous opening and
26531 closing of the Mail Drop folder, since that is a costly operation.
26533 <UL>   
26534 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26535 </UL><P>
26536 &lt;End of help on this topic&gt;
26537 </BODY>
26538 </HTML>
26539 ====== h_config_quell_checks_comp =====
26540 <HTML>
26541 <HEAD>
26542 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
26543 </HEAD>
26544 <BODY>
26545 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
26547 This option is closely related to the
26548 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26549 option, the
26550 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26551 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
26553 If this option is set, then the normal new-mail checking that happens
26554 while you are composing will not happen for folders other than your
26555 INBOX (which depends on the setting
26556 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
26558 You might want to set this option if you are experiencing delays while
26559 composing that you think might be related to the speed of the new-mail
26560 checks.
26562 Even with this option turned on, an occasional new-mail check may be done
26563 in order to keep the server from killing the connection to the folder.
26564 For example, IMAP servers may remove a connection to a folder if there
26565 has been no activity on the connection for 30 minutes or more.
26566 Instead of letting that happen, Alpine will check for new mail before the
26567 30 minutes is up even though you have turned on this feature to quell
26568 those checks.
26570 Besides new-mail checks, checkpoint operations on the folders
26571 will also be quelled when you set this option.
26572 The purpose of checkpointing is to write the changes to a folder out to
26573 disk periodically in order to avoid losing those changes when system or
26574 software problems occur.
26575 New-mail checking and checkpointing while you are not composing are not
26576 affected by this option.
26579 &lt;End of help on this topic&gt;
26580 </BODY>
26581 </HTML>
26582 ====== h_config_quell_checks_comp_inbox =====
26583 <HTML>
26584 <HEAD>
26585 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
26586 </HEAD>
26587 <BODY>
26588 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
26590 This option is closely related to the
26591 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26592 option, the
26593 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26594 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
26596 If this option is set, then the normal new-mail checking that happens
26597 while you are composing will not happen for your INBOX.
26598 Checking of other folders is controlled in a similar way with the
26599 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
26601 You might want to set this option if you are experiencing delays while
26602 composing that you think might be related to the speed of the new-mail
26603 checks.
26605 Even with this option turned on, an occasional new-mail check may be done
26606 in order to keep the server from killing the connection to the folder.
26607 For example, IMAP servers may remove a connection to a folder if there
26608 has been no activity on the connection for 30 minutes or more.
26609 Instead of letting that happen, Alpine will check for new mail before the
26610 30 minutes is up even though you have turned on this feature to quell
26611 those checks.
26613 Besides new-mail checks, checkpoint operations on the INBOX
26614 will also be quelled when you set this option.
26615 The purpose of checkpointing is to write the changes to a folder out to
26616 disk periodically in order to avoid losing those changes when system or
26617 software problems occur.
26618 New-mail checking and checkpointing while you are not composing are not
26619 affected by this option.
26621 &lt;End of help on this topic&gt;
26622 </BODY>
26623 </HTML>
26624 ====== h_config_maildropcheck =====
26625 <HTML>
26626 <HEADER>
26627 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
26628 </HEADER>
26629 <BODY>
26630 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
26632 New-mail checking for a
26633 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
26634 mail checking for a regular folder.
26635 One of the differences is that the connection to the Mail Drop is not
26636 kept open and so the cost of checking
26637 (delay for you and additional load for the server) may be significant.
26638 Because of this additional cost we set a minimum time that
26639 must pass between checks.
26640 This minimum only applies to the automatic checking done by Alpine.
26641 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
26642 at the end of a folder index, then the check is done right away.
26644 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
26645 new-mail checks.
26646 You may want to set this minimum high in order to avoid experiencing some
26647 of the delays associated with the checks.
26648 Note that the time between checks is still controlled by the regular
26649 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
26650 When Alpine is about to do an automatic check for new mail (because
26651 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
26652 new-mail check
26653 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
26654 the Mail Drop is checked for new mail as well.
26655 Therefore, it is only useful to set this option to a value that is higher
26656 than the <!--#echo var="VAR_mail-check-interval"-->.
26658 If this option is set to zero, automatic Mail Drop new-mail
26659 checking is disabled.
26660 There is a minimum value, normally 60 seconds.
26661 The default value is normally 60 seconds as well.
26662 This applies to the INBOX and to the currently open folder if that is
26663 different from the INBOX.
26666 <UL>   
26667 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26668 </UL><P>
26669 &lt;End of help on this topic&gt;
26670 </BODY>
26671 </HTML>
26672 ====== h_config_nntprange =====
26673 <HTML>
26674 <HEADER>
26675 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
26676 </HEADER>
26677 <BODY>
26678 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
26680 This option applies only to newsgroups accessed using the NNTP protocol.
26681 It does not, for example,
26682 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
26685 When you open a connection to a News server using the NNTP protocol, you
26686 normally have access to all of the articles in each newsgroup.
26687 If a server keeps a large backlog of messages it may speed performance
26688 some to restrict attention to only the newer messages in a group.
26689 This option allows you to set how many article numbers should be checked
26690 when opening a newsgroup.
26691 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
26692 of messages you ever want to see.
26693 For example, if you only ever wanted to look at the last 500 messages in each
26694 newsgroup you could set this option to 500.
26695 In actuality, it isn't quite that.
26696 Instead, for performance reasons, it specifies the range of article
26697 numbers to be checked, beginning
26698 with the highest numbered article and going backwards from there.
26699 If there are messages that have been canceled or deleted
26700 their article numbers are still counted as part of the range.
26702 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
26703 numbers
26704 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
26706 to be considered when reading a newsgroup.
26707 The number of messages that show up in your index will be less than or equal
26708 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
26711 The purpose of this option is simply to speed up access when reading news.
26712 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
26713 numbers, and can avoid downloading any information about the ignored articles.
26714 There is a cost you pay for this speedup.
26715 That cost is that there is no way for you to see those ignored articles.
26716 The articles that come before the range you specify are invisible to you and
26717 to Alpine, as if they did not exist at all.
26718 There is no way to see those messages using, for example, an unexclude command
26719 or something similar.
26720 The only way to see those articles is to set this option high enough (or
26721 set it to zero) and then to reopen the newsgroup.
26724 If this option is set to 0 (which is also the default),
26725 then the range is unlimited.
26726 This option applies globally to all NNTP servers and to all newsgroups
26727 on those servers.
26728 There is no way to set different values for different newsgroups or servers.
26731 <UL>   
26732 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26733 </UL><P>
26734 &lt;End of help on this topic&gt;
26735 </BODY>
26736 </HTML>
26737 ====== h_config_news_active =====
26738 <html>
26739 <header>
26740 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
26741 </header>
26742 <body>
26743 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
26745 This option tells Alpine where to look for the "active file" for newsgroups
26746 when accessing news locally, rather than via NNTP.  The default path is
26747 usually "/usr/lib/news/active".<p>
26748 <UL>   
26749 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26750 </UL><P>
26751 &lt;End of help on this topic&gt;
26752 </body>
26753 </html>
26754 ====== h_config_news_spool =====
26755 <html>
26756 <header>
26757 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
26758 </header>
26759 <body>
26760 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
26762 This option tells Alpine where to look for the "news spool" for newsgroups
26763 when accessing news locally, rather than via NNTP.  The default path is
26764 usually "/var/spool/news".<p>
26765 <UL>   
26766 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26767 </UL><P>
26768 &lt;End of help on this topic&gt;
26769 </body>
26770 </html>
26771 ====== h_config_image_viewer =====
26772 <html>
26773 <header>
26774 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
26775 </header>
26776 <body>
26777 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
26778 <body>
26779 This option specifies the program Alpine should call to view MIME
26780 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
26781 no longer needed, but remains for backward compatibility.  The more
26782 general method for associating external printing and viewing programs with
26783 specific MIME data types is to use the system's (or your personal)
26784 "mailcap" configuration file.<p>
26785 <UL>   
26786 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26787 </UL><P>
26788 &lt;End of help on this topic&gt;
26789 </body>
26790 </html>
26791 ====== h_config_domain_name =====
26792 <HTML>
26793 <HEAD>
26794 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
26795 </HEAD>
26796 <BODY>
26797 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
26799 This option is used only if the 
26800 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
26801 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
26802 strips the hostname from your return (&quot;From&quot;) address and when 
26803 completing unqualified addresses that you enter into the composer.
26805 If you set this, see also the <A HREF="h_config_quell_local_lookup">
26806 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
26809 <!--chtml if pinemode="os_windows"-->
26810 <P>This option is not applicable to PC-Alpine.
26811 <!--chtml else-->
26813 <!--chtml endif-->
26814 <UL>
26815 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26816 </UL>
26818 &lt;End of help on this topic&gt;
26819 </BODY>
26820 </HTML>
26821 ====== h_config_prune_date =====
26822 <HTML>
26823 <HEAD>
26824 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
26825 </HEAD>
26826 <BODY>
26827 <H1>OPTION: Last-Time-Prune Question</H1>
26829 This value records the last time you were asked about deleting old
26830 sent-mail.
26831 It is set automatically by Alpine at the beginning of each month.
26832 In the past, if you wished to suppress the monthly sent-mail
26833 pruning feature, you could set this to a date in the future.
26834 This value is relative to the year 1900, so 
26835 to set this, for example, to October 2005, use 105.10.
26837 You can still do that if you wish, or you can use the
26838 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
26839 a little more convenient to use.
26841 <UL>   
26842 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26843 </UL><P>
26844 &lt;End of help on this topic&gt;
26845 </BODY>
26846 </HTML>
26847 ====== h_config_goto_default =====
26848 <HTML>
26849 <HEAD>
26850 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
26851 </HEAD>
26852 <BODY>
26853 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
26855 This value affects Alpine's behavior when you use the Goto command.
26856 Alpine's usual behavior has two parts.  If your current folder is
26857 &quot;Inbox&quot;, Alpine will offer the last open folder as the
26858 default.  If the current folder is other than &quot;Inbox&quot;,
26859 &quot;Inbox&quot; is offered as the default.
26862 The available options include:
26864 <DL>
26866  <DT>folder-in-first-collection</DT>
26868  <DD> Alpine will offer the most recently visited folder in the default
26869 collection found in the &quot;Collection List&quot; screen as the default.
26870 </DD>
26872  <DT> inbox-or-folder-in-first-collection</DT>
26874  <DD> If the current folder is &quot;Inbox&quot;,
26875 Alpine will offer the most recently visited folder in the
26876 default collection found in the &quot;Collection List&quot; screen.
26877 If the current folder is other than &quot;Inbox&quot;,
26878 &quot;Inbox&quot; is offered as the default.
26879 </DD>
26881  <DT> inbox-or-folder-in-recent-collection</DT>
26883  <DD> This is Alpine's default behavior.
26884 If the current folder is &quot;Inbox&quot;,
26885 Alpine will offer the last open
26886 folder as the default.
26887 If the current folder is other than &quot;Inbox&quot;,
26888 &quot;Inbox&quot; is offered as the default.
26889 </DD>
26891  <DT> first-collection-with-inbox-default</DT>
26893  <DD> Instead of offering the most recently visited folder in the default
26894 collection, the default collection is offered but with &quot;Inbox&quot; as
26895 the default folder.
26896 If you type in a folder name it will be in the default collection.
26897 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
26898 </DD>
26900  <DT> most-recent-folder</DT>
26902  <DD> The last accepted value simply causes the most recently opened
26903 folder to be offered as the default regardless of the currently opened
26904 folder.
26905 </DD>
26906 </DL>
26909 NOTE: The default while a newsgroup is open remains the same; the last
26910 open newsgroup.
26913 <UL>   
26914 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26915 </UL><P>
26916 &lt;End of help on this topic&gt;
26917 </BODY>
26918 </HTML>
26919 ====== h_config_thread_lastreply_char =====
26920 <HTML>
26921 <HEAD>
26922 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
26923 </HEAD>
26924 <BODY>
26925 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
26927 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
26928 INDEX display when using a
26929 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
26930 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
26931 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
26932 The value of this option is a single character.
26933 This character is used instead of the vertical line character when there are
26934 no more replies directly to the parent of the current message.
26935 It can be used to &quot;round-off&quot; the bottom of the vertical line
26936 by setting it to a character such as a backslash (&#92;) or
26937 a backquote (&#96;).
26938 The default value of this option is the backslash character (&#92;).
26939 This option may not be set to the Empty Value.
26940 In that case, the default will be used instead.
26943 <UL>   
26944 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26945 </UL><P>
26946 &lt;End of help on this topic&gt;
26947 </BODY>
26948 </HTML>
26949 ====== h_config_thread_indicator_char =====
26950 <HTML>
26951 <HEAD>
26952 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
26953 </HEAD>
26954 <BODY>
26955 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
26957 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
26958 INDEX display when using a
26959 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26960 than &quot;none&quot; and sorting by Threads or OrderedSubject.
26961 The value of this option is a single character.
26962 This character is used to indicate that part of a thread (a conversation) is
26963 hidden beneath a message.
26964 The message could be expanded
26965 if desired with the &quot;/&quot; Collapse/Expand command.
26966 By default, the value of this option is the greater than sign (&gt;).
26968 If this option is set to the Empty Value, then the column (and the following
26969 blank column) will be deleted from the display.
26972 This option is closely related to the
26973 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
26974 Another similar option that affects the thread display is the
26975 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
26978 <UL>   
26979 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26980 </UL><P>
26981 &lt;End of help on this topic&gt;
26982 </BODY>
26983 </HTML>
26984 ====== h_config_thread_exp_char =====
26985 <HTML>
26986 <HEAD>
26987 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
26988 </HEAD>
26989 <BODY>
26990 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
26992 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
26993 INDEX display when using a
26994 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
26995 than &quot;none&quot;.
26996 The value of this option is a single character.
26997 This character is used to indicate that part of a thread has been expanded
26998 and could be collapsed if desired with
26999 the &quot;/&quot; Collapse/Expand command.
27000 By default, the value of this option is a dot (.).
27002 If this option is set to the Empty Value, then the column (and the following
27003 blank column) will be deleted from the display.
27006 This option is closely related to the
27007 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
27008 Another similar option that affects the thread display is the
27009 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
27012 <UL>   
27013 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27014 </UL><P>
27015 &lt;End of help on this topic&gt;
27016 </BODY>
27017 </HTML>
27018 ====== h_config_thread_index_style =====
27019 <HTML>
27020 <HEAD>
27021 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
27022 </HEAD>
27023 <BODY>
27024 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
27026 When a folder is sorted by Threads or OrderedSubject,
27027 this option will affect the INDEX displays.
27030 The possible values for this option are:
27032 <DL>
27033 <DT>regular-index-with-expanded-threads</DT>
27034 <DD>This is the default display.
27035 If the configuration option
27036 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
27037 is set to something other than &quot;none&quot;, then this setting
27038 will cause Alpine to start off with a MESSAGE INDEX with all of
27039 the threads expanded.
27040 That is, each message will have a line in the MESSAGE INDEX display.
27041 The Collapse/Expand command (/) may be used to manually collapse or
27042 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
27044 This setting affects the display when the folder is first threaded.
27045 The collapsed state may also be re-initialized by re-sorting the folder manually
27046 using the SortIndex command ($).
27047 After re-sorting the threads will once again all be expanded, even if you
27048 have previously collapsed some of them.
27050 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
27051 the display will be the regular default Alpine MESSAGE INDEX, but sorted
27052 in a different order.
27053 </DD>
27055 <DT>regular-index-with-collapsed-threads</DT>
27056 <DD>If the configuration option
27057 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
27058 is set to something other than &quot;none&quot;, then this setting
27059 will cause Alpine to start out with all of the threads collapsed instead of
27060 starting out with all of the threads expanded.
27061 The Collapse/Expand command (/) may be used to manually collapse or
27062 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
27064 This setting affects the display when the folder is first threaded.
27065 The collapsed state may also be re-initialized by re-sorting the folder manually
27066 using the SortIndex command ($).
27067 After re-sorting the threads will once again all be collapsed, even if you
27068 have previously expanded some of them.
27069 </DD>
27071 <DT>separate-index-screen-always</DT>
27072 <DD>With this setting and the next, you will see an index of threads
27073 instead of an
27074 index of messages, provided you have sorted by Threads or OrderedSubject.
27076 The THREAD INDEX contains a '*' in the first column if any message in the thread
27077 is marked Important.
27078 If not, it contains a '+' if any message in the thread is to you.
27079 The second column is blank. The third column contains a 'D' if all of the
27080 messages in the thread are deleted.
27081 Otherwise, it contains an 'N' if any of the messages in the thread are New.
27083 When you view a particular thread from the THREAD INDEX you will be
27084 in the MESSAGE INDEX display
27085 but the index will only contain messages from the thread you are viewing.
27086 </DD>
27088 <DT>separate-index-screen-except-for-single-messages</DT>
27089 <DD>This is very similar to the option above.
27090 When you are in the THREAD INDEX, one of the available commands
27091 is &quot;ViewThd&quot;.
27092 With the setting &quot;separate-index-screen-always&quot; (the option above)
27093 when you view a particular thread you will be in the
27094 MESSAGE INDEX display and the index will only contain messages from
27095 the thread you are viewing.
27096 If the thread you are viewing consists of a single message, the MESSAGE INDEX
27097 will be an index with only one message in it.
27098 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
27099 setting instead, then that index that contains a single message
27100 will be skipped and you will go directly from the THREAD INDEX into the
27101 MESSAGE TEXT screen.
27102 </DD>
27104 </DL>
27107 <UL>   
27108 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27109 </UL><P>
27110 &lt;End of help on this topic&gt;
27111 </BODY>
27112 </HTML>
27113 ====== h_config_thread_disp_style =====
27114 <HTML>
27115 <HEAD>
27116 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
27117 </HEAD>
27118 <BODY>
27119 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
27121 When a folder is sorted by Threads or OrderedSubject,
27122 this option will affect the MESSAGE INDEX display.
27123 By default, Alpine will display the MESSAGE INDEX in the
27124 &quot;show-thread-structure&quot; style if a folder is sorted
27125 by Threads or OrderedSubject.
27128 The possible values for this option are:
27130 <DL>
27131 <DT>none</DT>
27132 <DD>Regular index display.
27133 The same index line as would be displayed without threading is used.
27134 The only difference will be in the order of the messages.
27135 </DD>
27137 <DT>show-thread-structure</DT>
27138 <DD>Threaded Subjects will be indented and vertical bars and horizontal
27139 lines will be added to make it easier to see the relationships among
27140 the messages in a thread (a conversation).
27141 </DD>
27143 <DT>mutt-like</DT>
27144 <DD>This is the same as the option above except that the Subject
27145 is suppressed (is blank) if it matches the previous Subject in the thread.
27146 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
27147 Here is an example of what a mutt-like index might look like.
27148 In this example, the first column represents the message number, the
27149 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
27150 is set to &quot;regular-index-with-expanded-threads&quot;, and the
27151 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
27152 is set to a backslash:
27153 <PRE>
27154 &nbsp;&nbsp;&nbsp;1    Some topic
27155 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
27156 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
27157 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
27158 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
27159 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
27160 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
27161 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
27162 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
27163 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
27164 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
27165 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
27166 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
27167 &nbsp;&nbsp;&nbsp;14    Next topic
27168 </PRE>
27169 </DD>
27171 <DT>indent-subject-1</DT>
27172 <DD>Threaded Subjects will be indented one space per level of the conversation.
27173 The bars and lines that show up in the show-thread-structure display will
27174 not be there with this style.
27175 </DD>
27177 <DT>indent-subject-2</DT>
27178 <DD>Same as above but indent two spaces per level instead of one space.
27179 </DD>
27181 <DT>indent-from-1</DT>
27182 <DD>Similar to indent-subject-1, except that instead of indenting the
27183 Subject field one space the From field of a thread will be indented one
27184 space per level of the conversation.
27185 </DD>
27187 <DT>indent-from-2</DT>
27188 <DD>Same as above but indent two spaces per level instead of one space.
27189 </DD>
27191 <DT>show-structure-in-from</DT>
27192 <DD>The structure of the thread is illustrated with indenting, vertical bars,
27193 and horizontal lines just like with the show-thread-structure option, but
27194 the From field is used to show the relationships instead of the Subject field. 
27195 </DD>
27197 </DL>
27200 <UL>   
27201 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27202 </UL><P>
27203 &lt;End of help on this topic&gt;
27204 </BODY>
27205 </HTML>
27206 ====== h_config_pruning_rule =====
27207 <HTML>
27208 <HEAD>
27209 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
27210 </HEAD>
27211 <BODY>
27212 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
27214 By default, Alpine will ask at the beginning of each month whether or not
27215 you want to rename your sent-mail folder to a name like sent-mail-month-year.
27216 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
27217 change the format of the folder to sent-mail-yyyy-mm.)
27218 It will also ask whether you would like to delete old sent-mail folders.
27219 If you have defined
27220 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
27222 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
27223 Alpine will also ask about pruning those folders.
27226 With this option you may provide an automatic answer to these questions.
27227 The default value is to ask you what you'd like to do.
27230 The six possible values for this option are:
27232 <DL>
27233 <DT>ask about rename, ask about deleting</DT>
27234 <DD>This is the default.
27235 Alpine will ask whether you want to rename the folders and whether you
27236 want to delete each of the old folders.
27237 </DD>
27239 <DT>ask about rename, don't delete</DT>
27240 <DD>Alpine will ask whether you want to rename the folders, but won't
27241 ask about or delete old folders.
27242 </DD>
27244 <DT>always rename, ask about deleting</DT>
27245 <DD>This means you want to always answer yes and have Alpine automatically
27246 rename the folder if possible.
27247 You will also be asked about deleting old folders.
27248 </DD>
27250 <DT>always rename, don't delete</DT>
27251 <DD>This means you want to always answer yes and have Alpine automatically
27252 rename the folder if possible.
27253 There will be no deleting of old folders.
27254 </DD>
27256 <DT>don't rename, ask about deleting</DT>
27257 <DD>This means you want to always answer no.
27258 Alpine will not rename the folder.
27259 You will be asked about deleting old folders.
27260 </DD>
27262 <DT>don't rename, don't delete</DT>
27263 <DD>This means you want to always answer no.
27264 Alpine will not rename the folder.
27265 There will be no deleting of old folders, either.
27266 </DD>
27267 </DL>
27270 <UL>   
27271 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27272 </UL><P>
27273 &lt;End of help on this topic&gt;
27274 </BODY>
27275 </HTML>
27276 ====== h_config_reopen_rule =====
27277 <HTML>
27278 <HEAD>
27279 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
27280 </HEAD>
27281 <BODY>
27282 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
27284 Alpine normally checks for new mail in the currently open folder
27285 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
27288 There are some situations where automatic new-mail checking does not work.
27289 For example, if a mail folder is opened using the POP protocol or a newsgroup
27290 is being read using the NNTP protocol, then new-mail checking is disabled.
27293 It may be possible to check for new mail in these cases by reopening the
27294 folder.
27295 Alpine does not do this for you automatically, but you may do the commands
27296 manually to cause this to happen.
27297 You reopen by going back to the folder list screen from the message
27298 index screen with the &quot;&lt;&quot; command,
27299 and then going back into the message index screen with
27300 the &quot;&gt;&quot; command.
27301 (Actually, any method you would normally use to open a folder will work the
27302 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
27303 For example, the GoTo Folder command will work, or you may use L to go to the
27304 Folder List screen and Carriage Return to reopen the folder.)
27307 There are some cases where Alpine knows that reopening the folder should
27308 be useful as a way to discover new mail.
27309 At the time of this writing, connections made using the POP protocol,
27310 news reading using the NNTP protocol, local news reading, and local
27311 ReadOnly folders that are in the traditional UNIX or the MMDF format all
27312 fall into this category.
27313 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
27314 has no way of knowing, so it might also just be an exercise in futility.
27315 All remote, ReadOnly folders other than those listed just above fall into this
27316 category.
27317 The setting of this option together with the type of folder
27318 controls how Alpine will react to the apparent attempt to reopen a folder.
27321 If you don't reopen, then you will just be back in
27322 the message index with no change.
27323 You left the index and came back, but the folder remained &quot;open&quot;
27324 the whole time.
27325 However, if you do reopen the folder, the folder is closed and then reopened.
27326 In this case, the current state of the open folder is lost.
27327 The New status, Important and Answered flags,
27328 selected state, Zoom state, collapsed or expanded state of threads,
27329 current message number,
27330 and any other temporary state is all lost when the reopen happens.
27331 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
27334 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
27335 several places.
27336 That really implies the case where Alpine knows it is a good way to discover
27337 new mail, which is more than just POP and NNTP, but POP and NNTP are
27338 the cases of most interest.
27339 This option probably has more possible values than it deserves. They are:
27341 <DL>
27342 <DT>Always reopen</DT>
27343 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
27344 whenever you type a command that implies a reopen, regardless of the
27345 access method.
27346 In other words, it is assumed you would always answer Yes if asked
27347 about reopening.
27348 </DD>
27350 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
27351 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27352 will ask you whether to reopen other remote folders,
27353 with a default answer of Yes.
27354 </DD>
27356 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
27357 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27358 will ask you whether to reopen other remote folders,
27359 with a default answer of No.
27360 </DD>
27362 <DT>Yes for POP/NNTP, No for other remote</DT>
27363 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
27364 will assume a No answer for all other remote folders.
27365 </DD>
27367 <DT>Always ask [Yes]</DT>
27368 <DD>Alpine will not differentiate based on access method.
27369 It will always ask for all remote folders, with a default answer of Yes.
27370 </DD>
27372 <DT>Always ask [No]</DT>
27373 <DD>Alpine will not differentiate based on access method.
27374 It will always ask for all remote folders, with a default answer of No.
27375 </DD>
27377 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
27378 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
27379 of Yes.
27380 It will never attempt to reopen other remote folders.
27381 </DD>
27383 <DT>Ask about POP/NNTP [No], No for other remote</DT>
27384 <DD>This is the default.
27385 Alpine will ask if the access method is POP or NNTP, with a default answer
27386 of No.
27387 It will never attempt to reopen other remote folders.
27388 </DD>
27390 <DT>Never reopen</DT>
27391 <DD>Alpine will never attempt to reopen already open folders.
27392 </DD>
27393 </DL>
27396 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
27397 any of the other situations where it is likely that reopening is a good way
27398 to discover new mail.
27401 There is an alternative that may be of useful in some situations.
27402 Instead of manually checking for new mail you can set up a
27403 <A HREF="h_maildrop">Mail Drop</A>
27404 and automatically check for new mail.
27407 <UL>   
27408 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27409 </UL><P>
27410 &lt;End of help on this topic&gt;
27411 </BODY>
27412 </HTML>
27413 ====== h_config_inc_startup =====
27414 <HTML>
27415 <HEAD>
27416 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
27417 </HEAD>
27418 <BODY>
27419 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
27421 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
27422 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
27423 It determines which message will be the <EM>current message</EM> when
27424 the folder is first opened.
27425 The default value is &quot;first-unseen&quot;.
27428 The seven possible values for this option are:
27430 <DL>
27431 <DT>first-unseen</DT>
27432 <DD>The current message is set to the first
27433 unseen message that has not been marked deleted, or the last message if
27434 all of the messages have been seen previously.
27435 Messages which have not been seen or which have been seen but re-marked
27436 as New are considered unseen messages.
27437 See the note at the bottom of this help about newsgroups.
27438 </DD>
27440 <DT>first-recent</DT>
27441 <DD>Similar to the default, but rather than starting on the first
27442 unseen message Alpine starts on the first <EM>recent</EM> message.
27443 A message is recent if it arrived since the last time the folder was
27444 open.  This value causes the current message to be set to the first
27445 recent message if there is one, otherwise to the last
27446 message in the folder.
27447 </DD>
27449 <DT>first-important</DT>
27450 <DD>This will result in the current message being set to the first
27451 message marked Important (but not Deleted).
27452 If no messages are marked Important, then it will be the last message.
27453 Messages are marked Important by <EM>you</EM>, not by the sender, using
27455 <A HREF="h_common_flag">Flag command</A>.
27456 Or they may be marked Important by an Alpine
27457 <A HREF="h_mainhelp_filtering">Filter</A>
27458 that you have set up.
27459 </DD>
27461 <DT>first-important-or-unseen</DT>
27462 <DD>This selects the first of the first unseen and the first important
27463 messages.
27464 </DD>
27466 <DT>first-important-or-recent</DT>
27467 <DD>This selects the first of the first recent and the first important
27468 messages.
27469 </DD>
27471 <DT>first</DT>
27472 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
27473 If all messages are deleted you start on the last message.
27474 </DD>
27476 <DT>last</DT>
27477 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
27478 If all messages are deleted you start on the last message.
27479 </DD>
27480 </DL>
27483 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
27484 &quot;first-recent&quot; are the same and are affected by whether or not the
27485 feature 
27486 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
27487 is turned on. 
27488 Also, there is no permanent storage in news for an Important flag.
27489 This means that no messages will be marked Important when a newsgroup is
27490 first opened.
27493 <UL>   
27494 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27495 </UL><P>
27496 &lt;End of help on this topic&gt;
27497 </BODY>
27498 </HTML>
27499 ====== h_config_browser =====
27500 <HTML>
27501 <HEAD>
27502 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
27503 </HEAD>
27504 <BODY>
27505 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
27506 <!--chtml if pinemode="os_windows"-->
27507 PC-Alpine users do not need to enter anything here, unless:<UL>
27508 <LI> they want to override, for use with Alpine, the application defined
27509 in the Windows operating system for handling URLs; or
27510 <LI> they are (planning on) using the same configuration file with 
27511 Unix Alpine.
27512 </UL>
27514 Note that if using a viewer that has a space in its path, you should
27515 use the DOS name for that directory or file. Example:
27516 <PRE>
27517 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
27518 </PRE>
27519 <HR><P>
27520 <!--chtml endif-->
27521 This option affects Alpine's handling of URLs that are found in 
27522 messages you read.  Normally, only URLs Alpine can handle directly
27523 are automatically offered for selection in the &quot;Message
27524 Text&quot; screen.  When one or more applications
27525 capable of deciphering URLs on their command line are added here, Alpine
27526 will choose the first available to display URLs it cannot handle directly.
27527 A viewer's availability is based on its being specified with a <B>full
27528 directory path</B> and the evaluation of any optionally supplied
27529 parameters described below.
27532 Additionally, to support various connection methods and applications, each
27533 entry in this list can optionally begin with one or more of
27534 the following special tokens.  The allowed tokens include:
27537 <DL>
27538 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
27539 <DD>
27540 The <VAR>test-string</VAR> is a shell command that Alpine will run to
27541 evaluate a viewer's availability.  The command specified by the test
27542 string is run and if its resulting exit status is non-zero, Alpine will
27543 not consider the associated viewer for use.
27544 </DD>
27546 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
27547 <DD>
27548 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
27549 URL schemes that are to be used with the associated viewer.  This is
27550 the way to configure Alpine to recognize URLs other than the built-in set.
27552 It can also be used to override Alpine's built-in handlers.
27553 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
27554 and Alpine would use (provided it passed all other criteria) the associated
27555 viewer when it encounterd a URL of the form &quot;news:comp.mail.pine&quot;.
27557 </DD>
27558 </DL>
27561 By default, Alpine will simply append a space character followed by the
27562 selected URL prior to launching the command in your specified SHELL.  You can
27563 optionally specify where in the command the selected URL should appear
27564 by using the &quot;_URL_&quot; token.  All occurrences found in the command
27565 will be replaced with the selected URL before the command is handed
27566 to the shell.  If such replacement occurs, the default appending of the
27567 selected URL does not take place.
27570 NOTE: If the viewer you specify has any command-line arguments,
27571 including the &quot;_URL_&quot; token, you will need to add a
27572 double-quote character before the command path and after the last
27573 argument (see the &quot;lynx&quot; example below).
27576 So, here are some example entries:
27577 <PRE>
27578 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
27579               &quot;/usr/local/bin/lynx _URL_&quot;
27580               C:&#92;BIN&#92;NETSCAPE.BAT
27581 </PRE>
27583 This example shows that for the first viewer in the list to be used
27584 the environment variable &quot;DISPLAY&quot; must be defined.  If it
27585 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
27586 If neither condition is met,
27587 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
27588 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
27589 If the path to &quot;lynx&quot; is invalid,
27590 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
27591 Note that the last
27592 entry is a DOS/Windows path.  This is one way to support Alpine running
27593 on more than one architecture with the same configuration file.<P>
27595 <!--chtml if pinemode="os_windows"-->
27596 <!--chtml else-->
27597 Note that depending on the type of browser used and the method of 
27598 its invocation (such as whether it will open in a separate window) from
27599 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
27600 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
27601 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
27602 In other words, launching the browser from Alpine may make Alpine 
27603 &quot;disappear&quot; (although it is still &quot;running&quot;)
27604 until you close the browser again.<P>  
27605 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27606 environment: for advanced users and  systems administrators</A>
27607 </UL>
27608 <!--chtml endif-->
27609 <P>If you are unsure what browsers are available on your system or how to 
27610 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
27611 local computing support staff.
27612 <P><UL>
27613 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27614 </UL>
27616 &lt;End of help on this topic&gt;
27617 </BODY>
27618 </HTML>
27619 ====== h_config_history =====
27620 <HTML>
27621 <HEAD>
27622 <TITLE>OPTION: <!--#echo var="VAR_default-directories"--></TITLE>
27623 </HEAD>
27624 <BODY>
27625 <H1>OPTION: <!--#echo var="VAR_default-directories"--></H1>
27627 This option allows you to input a list of directories that Alpine will offer 
27628 for you to use when you are saving or exporting attachments. This is useful
27629 when navigating to specific directories becomes too tedious, or when you 
27630 need to do this on a daily basis, and want Alpine to remember this on a 
27631 permanent basis.
27633 The list of directories saved here can be accessed using the ^Y and ^V commands
27634 in the save prompt for attachments, or the export command.
27636 <P><UL>
27637 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27638 </UL>
27640 &lt;End of help on this topic&gt;
27641 </BODY>
27642 </HTML>
27643 ====== h_config_browser_xterm =====
27644 <HTML>
27645 <HEAD>
27646 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
27647 </HEAD>
27648 <BODY>
27649 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27650 environment: for advanced users and  systems administrators</H1>
27651 If you are using Alpine with an X-terminal (emulator) and want to define an 
27652 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
27653 you may want to do so in a manner that causes any <B>already</B> 
27654 invoked viewer application to be used for viewing URLs you select from Alpine 
27655 messages, and a <B>new</B> URL-viewer process to be 
27656 started <B>only</B> if the same application has <B>not already</B> 
27657 been launched -- for one reason, to avoid file-locking contentions among 
27658 multiple invocations of the same URL-viewer application.  
27659 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
27660 option does not do this.)  A method of doing that would be:<OL>
27661 <LI> use 
27662 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
27663 check (using commands appropriate for your Unix shell
27664 in place of <VAR>test-string</VAR>) for the presence of a 
27665 lockfile created by the URL-viewer application -- which implies that the 
27666 application is already running, though this is not foolproof. 
27667 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
27668 application with its appropriate command line option(s) to 
27669 show the URL selected from the Alpine message in an already open window of 
27670 that application, or perhaps in a new window of that application.  
27672 <LI> In the 
27673 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
27674 application without those command line options, but this time using the 
27675 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
27676 is defined.
27677 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
27678 windows environment (for instance, using VT-100 terminal emulation), you 
27679 may wish to specify a non-X windows URL-viewer application such as Lynx
27680 as the last entry.
27681 </OL><BR>
27682 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
27683 the command shell, the URL-viewer application(s), and possibly the specific 
27684 version of the latter, you are using.  
27686 Relevant command 
27687 line options for the Netscape browser for showing URLs (selected from Alpine) 
27688 when Netscape is already running are discussed in the document
27689 &quot;Remote Control of UNIX Netscape&quot; 
27690 found at the URL (as of 12 Aug. 1998):
27693 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
27695 <P>(If the URL-viewer application is 
27696 <B>not</B> running on the same host as Alpine, but being launched from an 
27697 applications server, you may not be able to use the command line options for 
27698 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
27700 <!--chtml if this-method="shown-to-work"-->
27701 An example using the Korn shell and the Netscape browser (first entry wrapped 
27702 because of its length, but should all appear on one line):
27704 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
27706 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
27707               &quot;/usr/local/bin/lynx '_URL_'&quot;
27709 <!--chtml endif-->
27711 <UL>   
27712 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27713 </UL><P>
27714 &lt;End of help on this topic&gt;
27715 </BODY>
27716 </HTML>
27717 ====== h_config_enable_full_hdr =====
27718 <HTML>
27719 <HEAD>
27720 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
27721 </HEAD>
27722 <BODY>
27723 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
27725 This feature enables the &quot;H Full Headers&quot; command which toggles between
27726 the display of all headers in the message and the normal edited view of
27727 headers.  The Full Header command also controls which headers are included
27728 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
27729 Full Header mode will respect the
27730 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
27731 feature setting.)
27733 If Full Header mode is turned on and you Forward a message, you will
27734 be asked if you'd like to forward the message as an attachment, as opposed
27735 to including the text of the message in the body of your new message.
27737 If you have also turned on the
27738 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
27739 option then the Full Headers command actually rotates through three states
27740 instead of just two.
27741 The first is the normal view with long quotes suppressed.
27742 The second is the normal view but with the long quotes included.
27743 The last enables the display of all headers in the message.
27744 When using Export, Pipe, Print, Forward, or Reply the quotes are
27745 never suppressed, so the first two states are identical.
27747 Normally, the Header Mode will reset
27748 to the default behavior when moving to a new message.
27749 The mode can be made to persist from message to message by setting the feature
27750 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
27752 <UL>   
27753 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27754 </UL><P>
27755 &lt;End of help on this topic&gt;
27756 </BODY>
27757 </HTML>
27758 ====== h_config_enable_full_hdr_and_text =====
27759 <HTML>
27760 <HEAD>
27761 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
27762 </HEAD>
27763 <BODY>
27764 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
27766 This feature affects how the &quot;H Full Headers&quot; command displays
27767 message text.  If set, the raw message text will be displayed.  This
27768 especially affects MIME formatted email, where the entire MIME format
27769 will be displayed.  This feature similarly affects how messages are
27770 included for the Export, Pipe, Print, Forward, and Reply functions.
27772 When viewing a raw message that has attachments with this feature set,
27773 you will not be able to view attachments without first leaving full 
27774 headers mode.  This is because MIME parsing is not done on the raw message.
27776 <UL>   
27777 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27778 </UL><P>
27779 &lt;End of help on this topic&gt;
27780 </BODY>
27781 </HTML>
27782 ====== h_config_enable_pipe =====
27783 <HTML>
27784 <HEAD>
27785 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
27786 </HEAD>
27787 <BODY>
27788 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
27790 This feature enables the "| Pipe" command that sends the current message
27791 to the specified command for external processing.
27794 A short description of how the pipe command works is given
27795 <A HREF="h_pipe_command">here</A>.
27798 <UL>   
27799 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27800 </UL><P>
27801 &lt;End of help on this topic&gt;
27802 </BODY>
27803 </HTML>
27804 ====== h_config_quell_full_hdr_reset =====
27805 <HTML>
27806 <HEAD>
27807 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
27808 </HEAD>
27809 <BODY>
27810 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
27812 The <A HREF="h_common_hdrmode">HdrMode Command</A>
27813 normally resets to the default state when switching to a new message.
27814 For example, if you've used the &quot;H&quot; command to turn on Full
27815 Headers for a message you are viewing, and then you type the Next command
27816 to look at the next message, the full headers will no longer be shown.
27817 Setting this feature disables that reset.
27818 Instead, the Header Mode remains the same from message to message.
27821 The presence or absence of the HdrMode command is determined by the
27822 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
27823 Feature-List option.
27825 <UL>   
27826 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27827 </UL><P>
27828 &lt;End of help on this topic&gt;
27829 </BODY>
27830 </HTML>
27831 ====== h_config_enable_tab_complete =====
27832 <HTML>
27833 <HEAD>
27834 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
27835 </HEAD>
27836 <BODY>
27837 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
27839 This feature enables the TAB key when at a prompt for a filename. In this
27840 case, TAB will cause the partial name already entered to be automatically
27841 completed, provided the partial name is unambiguous.
27842 This feature is on by default.
27844 Similarly, this feature also enables TAB completion of address book
27845 nicknames when at a prompt for a nickname,
27846 or when typing in an address field in the composer.
27848 &lt;End of help on this topic&gt;
27849 </BODY>
27850 </HTML>
27851 ====== h_config_quit_wo_confirm =====
27852 <HTML>
27853 <HEAD>
27854 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
27855 </HEAD>
27856 <BODY>
27857 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
27859 This feature controls whether or not Alpine will ask for confirmation when a
27860 Quit command is received.
27862 &lt;End of help on this topic&gt;
27863 </BODY>
27864 </HTML>
27865 ====== h_config_quote_replace_noflow =====
27866 <HTML>
27867 <HEAD>
27868 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
27869 </HEAD>
27870 <BODY>
27871 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
27873 This feature, which is only active when
27874 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
27875 also set,
27876 enables quote-replacement on non-flowed messages.  It is off
27877 by default because a non-flowed message is more dependent on its format,
27878 and thus quote-replacement may cause less-than-pleasing results.
27879 Setting this feature will cause quote-replacement similar to that of flowed
27880 messages, but with the added possibility of long lines being wrapped
27881 into new lines if the Quote-Replacement-String is longer than the string
27882 it is replacing, which is &quot;&gt;&nbsp;&quot;.
27884 &lt;End of help on this topic&gt;
27885 </BODY>
27886 </HTML>
27887 ====== h_config_enable_jump =====
27888 <HTML>
27889 <HEAD>
27890 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
27891 </HEAD>
27892 <BODY>
27893 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
27895 When this feature is set you may enter a number (followed by RETURN)
27896 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
27897 screens.  In other words, it obviates the need for typing the "J" for the
27898 Jump command.
27900 &lt;End of help on this topic&gt;
27901 </BODY>
27902 </HTML>
27903 ====== h_config_enable_alt_ed =====
27904 <HTML>
27905 <HEAD>
27906 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
27907 </HEAD>
27908 <BODY>
27909 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
27911 If this feature is set (the default), and the 
27912 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27913 <B>is not</B> set, entering
27914 the ^_ (Ctrl-underscore) key while composing a message will prompt you
27915 for the name of the editor you would like to use.
27917 If the environment variable $EDITOR is set, its value will be offered as
27918 a default.
27920 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
27921 <B>is</B> set, the ^_ key will activate the specified
27922 editor without prompting, in which case it is not necessary to
27923 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
27925 <UL>   
27926 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27927 </UL><P>
27928 &lt;End of help on this topic&gt;
27929 </BODY>
27930 </HTML>
27931 ====== h_config_alt_ed_now =====
27932 <HTML>
27933 <HEAD>
27934 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
27935 </HEAD>
27936 <BODY>
27937 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
27939 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
27940 variable are both set, Alpine will
27941 automatically activate the specified editor when the cursor is moved from
27942 the header of the message being composed into the message text.  For
27943 replies, the alternate editor will be activated immediately.  If this
27944 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
27945 automatically ask for the name of an alternate editor when the cursor
27946 is moved out of the header being composed, or if a reply is being done.
27948 <P><UL>
27949 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27950 </UL>
27952 &lt;End of help on this topic&gt;
27953 </BODY>
27954 </HTML>
27955 ====== h_config_enable_bounce =====
27956 <HTML>
27957 <HEAD>
27958 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
27959 </HEAD>
27960 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
27961 <BODY>
27963 Setting this feature enables the "B Bounce" command, which will prompt
27964 for an address and *remail* the message to the new recipient.  This command
27965 is used to re-direct messages that you have received in error, or need to
27966 be redirected for some other reason (e.g. list moderation).  The final
27967 recipient will see a header indicating that you have Resent the msg, but
27968 the message's From: header will show the original author of the message,
27969 and replies to it will go back to that author, and not to you.
27971 &lt;End of help on this topic&gt;
27972 </BODY>
27973 </HTML>
27974 ====== h_config_enable_agg_ops =====
27975 <HTML>
27976 <HEAD>
27977 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
27978 </HEAD>
27979 <BODY>
27980 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
27982 When this feature is set you may use the commands and subcommands that relate to
27983 performing operations on more than one message at a time.  We call these
27984 &quot;aggregate operations&quot;.  In particular, the 
27985 <!--chtml if pinemode="function_key"-->&quot;F5
27986 <!--chtml else-->&quot;;
27987 <!--chtml endif--> Select&quot;, 
27989 <!--chtml if pinemode="function_key"-->
27990 &quot;F6
27991 <!--chtml else-->
27992 &quot;A 
27993 <!--chtml endif-->
27994 Apply&quot;, and 
27995 <!--chtml if pinemode="function_key"-->
27996 &quot;F4
27997 <!--chtml else-->
27998 &quot;Z 
27999 <!--chtml endif-->
28000 Zoom&quot; commands are enabled by this feature.  Select is used to
28001 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
28002 then be used to apply any message command to all of the selected/tagged
28003 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
28004 view between just those Selected and all messages in the folder.
28006 This feature also enables the 
28007 <!--chtml if pinemode="function_key"-->
28008 &quot;F7&quot; 
28009 <!--chtml else-->
28010 &quot;^X&quot; 
28011 <!--chtml endif-->
28013 subcommand in the MESSAGE INDEX 
28014 WhereIs command that causes all messages matching the WhereIs argument to 
28015 become selected; and the Select, Select Current, and ZoomMode commands in the
28016 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
28018 Some related help topics are
28019 <UL>
28020 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28021 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28022 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
28023 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28024 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28025 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28026 </UL>
28028 <UL>   
28029 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28030 </UL><P>
28031 &lt;End of help on this topic&gt;
28032 </BODY>
28033 </HTML>
28035 ====== h_config_enable_flag =====
28036 <HTML>
28037 <HEAD>
28038 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
28039 </HEAD>
28040 <BODY>
28041 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
28043 Setting this feature enables the
28044 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
28045 command that allows you to
28046 manipulate the status flags associated with a message.  By default, Flag
28047 will set the "Important" flag, which results in an asterisk being
28048 displayed in column one of the MESSAGE INDEX for such messages.
28050 &lt;End of help on this topic&gt;
28051 </BODY>
28052 </HTML>
28053 ====== h_config_flag_screen_default =====
28054 <HTML>
28055 <HEAD>
28056 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
28057 </HEAD>
28058 <BODY>
28059 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
28061 The feature modifies the behavior of the
28062 <a href="h_common_flag">Flag</a>
28063 command (provided it too is
28064 <A HREF="h_config_enable_flag">enabled</A>).
28065 By default, when the "* Flag" command is selected,
28066 Alpine offers a prompt to set one of several flags and also offers the
28067 option of entering the detailed flag manipulation screen via the "^T"
28068 key. Enabling this feature causes Alpine to immediately enter the detailed
28069 flag screen rather than first offer the simple prompt.
28071 <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.
28073 &lt;End of help on this topic&gt;
28074 </BODY>
28075 </HTML>
28076 ====== h_config_flag_screen_kw_shortcut =====
28077 <HTML>
28078 <HEAD>
28079 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
28080 </HEAD>
28081 <BODY>
28082 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
28084 This feature modifies the behavior of the
28085 <a href="h_common_flag">Flag</a> command
28086 and the <A HREF="h_index_cmd_select">Select</A> command.
28087 This feature is set by default.
28088 When this feature is not set, when the "* Flag" command is selected,
28089 Alpine offers a prompt to set one of several flags and also offers the
28090 option of entering the detailed flag manipulation screen via the "^T"
28091 key.
28092 If you have
28093 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
28094 defined, then enabling this feature adds a shortcut way to set or unset
28095 keywords.
28096 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
28097 a keyword if you've given it a nickname) and that will set the keyword.
28099 An example is easier to understand than the explanation.
28100 The flag command can always be used to set the system flags.
28101 For example, to set the Answered flag you would type
28103 <CENTER><SAMP>* A</SAMP></CENTER>
28105 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
28106 option in the Config screen.
28107 By default, to set a keyword like &quot;Work&quot; you would usually
28108 have to go to the Flag Details screen using
28109 the &quot;^T To Flag Details&quot; command.
28110 Instead, if you have enabled this feature, you may type
28112 <CENTER><SAMP>* W</SAMP></CENTER>
28114 to set the Work flag, or
28116 <CENTER><SAMP>* ! W</SAMP></CENTER>
28118 to unset it.
28119 Just like for the other flag setting commands, the case of the letter does
28120 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
28121 keyword.
28123 Notice that you can only use this trick for one keyword that begins
28124 with &quot;W&quot;.
28125 If you happen to have a &quot;Work&quot; keyword and another keyword that is
28126 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
28127 your list of keywords.
28128 Also, there are five letters that are reserved for system
28129 flags and the NOT command.
28130 If you type &quot;* A&quot; it will always set the Answered flag, not
28131 your &quot;Aardvark&quot; keyword.
28132 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
28133 the Flag Details screen.
28135 Because enabling the
28136 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
28137 option causes Alpine to skip directly to the Flag Details screen when the
28138 Flag command is used, 
28139 setting it will cause this feature to have no effect at all.
28141 Similarly, when Selecting by Keyword, setting this option will allow you
28142 to use Keyword initials instead of full keywords.
28144 &lt;End of help on this topic&gt;
28145 </BODY>
28146 </HTML>
28147 ====== h_config_can_suspend =====
28148 <HTML>
28149 <HEAD>
28150 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
28151 </HEAD>
28152 <BODY>
28153 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
28155 Setting this feature will allow you to type ^Z (Control Z) to 
28156 <!--chtml if pinemode="os_windows"-->
28157 minimize Alpine into its icon, bringing into focus whatever
28158 application is running behind the PC-Alpine window.
28159 <!--chtml else-->
28160 temporarily suspend Alpine.
28163 This does not exit Alpine, but puts it in the background to watch
28164 for new mail and such.  Normally, you type a command, such
28165 as &quot;fg&quot; at your system prompt to return to your Alpine session.
28168 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
28169 adjusts whether Alpine is placed into the background of the shell its 
28170 running in or starts a news shell.
28171 <!--chtml endif-->
28174 <UL>   
28175 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28176 </UL><P>
28177 &lt;End of help on this topic&gt;
28178 </BODY>
28179 </HTML>
28180 ====== h_config_take_lastfirst ======
28181 <HTML>
28182 <HEAD>
28183 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
28184 </HEAD>
28185 <BODY>
28186 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
28188 Normally, when TakeAddr is used to copy an address from a message into
28189 an address book entry, Alpine will attempt to rewrite the full name of the
28190 address in the form
28193 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
28195 instead of<P>
28197 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
28200 It does this because many people find it useful to sort by Last name
28201 instead of First name.  If this feature is set, then the TakeAddr command
28202 will not attempt to reverse the name in this manner.
28204 &lt;End of help on this topic&gt;
28205 </BODY></HTML>
28206 ====== h_config_disable_regex ======
28207 <HTML>
28208 <HEAD>
28209 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
28210 </HEAD>
28211 <BODY>
28212 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
28214 Normally, the
28215 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
28216 option is interpreted as a regular expression.
28217 One type of address that might cause trouble is an address that
28218 contains a plus sign.
28219 If you want to have an address with a plus as one of your
28220 <!--#echo var="VAR_alt-addresses"-->
28221 and you don't want to use regular expressions, then setting this
28222 feature will cause Alpine to treat the addresses you list literally instead.
28224 &lt;End of help on this topic&gt;
28225 </BODY></HTML>
28226 ====== h_config_take_fullname ======
28227 <HTML>
28228 <HEAD>
28229 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
28230 </HEAD>
28231 <BODY>
28232 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
28234 Normally, when TakeAddr is used to copy an address or addresses
28235 from a message into an address book entry, Alpine will try to preserve
28236 the full name associated with each address in the list of addresses.
28237 The reason for this is so that if the entry is a list or later becomes a
28238 list, then information about the individual addresses in the list
28239 is preserved.
28240 If you would rather just have the simple addresses in the list of addresses,
28241 set this feature. For example, with the default setting you might
28242 see something like this in the ADDRESS BOOK editor after you type TakeAddr
28244 <PRE>
28245  Nickname  : nick
28246  Fullname  : Bedrock Elders
28247  Fcc       :
28248  Comment   :
28249  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
28250              Barney Rubble &lt;rubble@bedrock.org&gt;
28251 </PRE>
28253 but with this feature set it would look like
28255 <PRE>
28256  Nickname  : nick
28257  Fullname  : Bedrock Elders
28258  Fcc       :
28259  Comment   :
28260  Addresses : flint@bedrock.org,
28261              rubble@bedrock.org
28262 </PRE>
28264 instead. Note the difference in the Addresses field.
28266 &lt;End of help on this topic&gt;
28267 </BODY></HTML>
28268 ====== h_config_print_from ======
28269 <HTML>
28270 <HEAD>
28271 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
28272 </HEAD>
28273 <BODY>
28274 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
28276 If this feature is set, then the Berkeley-mail style From line is included
28277 at the start of each message that is printed.  This line looks something
28278 like the following, with the address replaced by the address from the
28279 From line of the message being printed:
28281 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
28282 14:11:06 1998
28284 &lt;End of help on this topic&gt;
28285 </BODY>
28286 </HTML>
28287 ====== h_config_expanded_distlists ======
28288 <HTML>
28289 <HEAD>
28290 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
28291 </HEAD>
28292 <BODY>
28293 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
28294 If this feature is set, then distribution lists in the address book
28295 screen will always be expanded automatically.
28297 &lt;End of help on this topic&gt;
28298 </BODY>
28299 </HTML>
28300 ====== h_config_compose_news_wo_conf ======
28301 <HTML>
28302 <HEAD>
28303 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
28304 </HEAD>
28305 <BODY>
28306 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
28307 This feature controls one aspect of Alpine's Composer.  If you enter the
28308 composer while reading a newsgroup, you will normally be prompted to
28309 determine whether you intend the new message to be posted to the current
28310 newsgroup or not.  If this feature is set, Alpine will not prompt you
28311 in this situation, and will assume that you do indeed wish to post
28312 to the newsgroup you are reading.
28314 &lt;End of help on this topic&gt;
28315 </BODY>
28316 </HTML>
28317 ====== h_config_compose_rejects_unqual ======
28318 <HTML>
28319 <HEAD>
28320 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
28321 </HEAD>
28322 <BODY>
28323 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
28325 This feature controls one aspect of the message composer; in particular,
28326 what happens when an unqualified name is entered into an address header.
28327 If set, unqualified names entered as addresses will be treated as errors
28328 unless they match an addressbook nickname.  Alpine will not attempt to turn
28329 them into complete addresses by adding your local domain.<P>
28331 A complete (fully qualified) address is one containing a username followed
28332 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
28333 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
28334 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
28336 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
28340 When you enter a fully qualified address, Alpine does not interpret or
28341 modify it, but simply passes it on to the mail-transport-agent (MTA) for
28342 your system.  Alpine conforms to the Internet standards governing message
28343 headers and will not send an unqualifed name to the MTA.  Therefore, when
28344 you enter an unqualified name, Alpine will normally attempt to turn it into
28345 a fully qualified address, first by checking to see if you have entered a
28346 matching nickname in your addressbook, or failing that, by simply adding
28347 your own domain to the name entered.  So if your address is
28348 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
28349 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
28350 that into &quot;fred@example.com&quot;.<P>
28352 There are situations where it is not desirable for Alpine to interpret such
28353 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
28354 turned out to be a typo (intended to be an addressbook nickname), but
28355 there actually was a &quot;fred&quot; in your local domain, the message might 
28356 be mis-delivered without your realizing it.  In order to reduce the likelihood
28357 of such accidents, setting this feature will cause Alpine to treat such
28358 addresses as errors, and require that you explicitly enter the full local
28359 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
28360 matches an address book nickname.<P>
28362 Consider this a safety feature against mis-directed mail.
28364 <UL>   
28365 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28366 </UL><P>
28367 &lt;End of help on this topic&gt;
28368 </BODY>
28369 </HTML>
28370 ====== h_config_quell_local_lookup ======
28371 <HTML>
28372 <HEAD>
28373 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
28374 </HEAD>
28375 <BODY>
28376 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
28378 This feature controls an aspect of Alpine's Composer, and if needed, will
28379 usually be set by your system manager in Alpine's system-wide configuration
28380 file. Specifically, if this feature is set, Alpine will not attempt to look
28381 in the system password file to find a Full Name for the entered address.
28383 Normally, names you enter into address fields (e.g. To: or Cc:) are
28384 checked against your address book(s) to see if they match an address book
28385 nickname.  Failing that, (in Unix Alpine) the name is then checked against
28386 the Unix password file.  If the entered name matches a username in the
28387 system password file, Alpine extracts the corresponding Full Name information
28388 for that individual, and adds that to the address being entered.
28390 However, password file matching can have surprising (incorrect) results if
28391 other users of the system do not receive mail at the domain you are using.
28392 That is, if either the 
28393 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
28394 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
28395 option
28396 is set such that the administrative domain of other users on the system
28397 isn't accurately reflected, Alpine should be told that a passwd file match
28398 is coincidental, and Full Name info will be incorrect.  For example, a
28399 personal name from the password file could get falsely paired with the
28400 entered name as it is turned into an address in the configured domain.
28402 If you are seeing this behavior, enabling this feature will prevent Unix
28403 Alpine from looking up names in the password file to find the Full Name
28404 for incomplete addresses you enter.<P>
28405 <UL>
28406 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28407 </UL>
28409 &lt;End of help on this topic&gt;
28410 </BODY>
28411 </HTML>
28412 ====== h_config_tab_checks_recent ======
28413 <HTML>
28414 <HEAD>
28415 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
28416 </HEAD>
28417 <BODY>
28418 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
28420 In a FOLDER LIST screen, the TAB key usually just changes which
28421 folder is highlighted.
28422 If this feature is set, then the TAB key will cause the number of
28423 recent messages and the total number of messages in the highlighted folder
28424 to be displayed instead.
28427 &lt;End of help on this topic&gt;
28428 </BODY>
28429 </HTML>
28430 ====== h_config_maildrops_preserve_state ======
28431 <HTML>
28432 <HEAD>
28433 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
28434 </HEAD>
28435 <BODY>
28436 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
28438 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
28439 Normally, when mail is moved from a Mail Drop folder to a destination
28440 folder, it is delivered as new mail.
28441 Any Seen/New, Answered, Important/Flagged state that has changed will be
28442 ignored.
28443 All of the mail will be considered unSeen, unAnswered, and unImportant after
28444 it is moved.
28446 If this feature is set, then the state changes that have been made
28447 to the messages in the Mail Drop folder will be preserved.
28449 In any case, messages that are already marked Deleted when the
28450 mail is to be moved from the Mail Drop will be ignored.
28452 &lt;End of help on this topic&gt;
28453 </BODY>
28454 </HTML>
28455 ====== h_config_preopen_stayopens ======
28456 <HTML>
28457 <HEAD>
28458 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
28459 </HEAD>
28460 <BODY>
28461 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
28463 This feature is related to the option
28464 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28465 Normally, Stay Open folders are only opened on demand, when the user
28466 asks to open them.
28467 From then on they are kept open for the duration of the session.
28468 However, if this feature is set, then the Stay Open folders will all be
28469 opened at startup, at the same time that the INBOX is opened.
28472 &lt;End of help on this topic&gt;
28473 </BODY>
28474 </HTML>
28475 ====== h_config_expunge_inbox ======
28476 <HTML>
28477 <HEAD>
28478 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
28479 </HEAD>
28480 <BODY>
28481 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
28483 The INBOX is normally treated differently from regular folders in several
28484 ways.
28485 One of the differences is that the normal &quot;close&quot; sequence of
28486 events is deferred until Alpine is exited, instead of happening when you
28487 leave the INBOX to view another folder.
28488 The &quot;close&quot; sequence normally includes the Expunging
28489 of deleted messages
28490 (either automatically or after a prompt, controlled by the features
28491 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28492 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28493 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28494 handling of the
28495 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
28498 If this feature is set the &quot;close&quot; sequence handling will take
28499 place every time you leave the INBOX.
28500 The INBOX will still be kept open, but the offer to Expunge and the archiving
28501 to the <!--#echo var="VAR_read-message-folder"-->
28502 will take place each time you leave the INBOX instead of only once at the
28503 end of the session.
28506 &lt;End of help on this topic&gt;
28507 </BODY>
28508 </HTML>
28509 ====== h_config_expunge_stayopens ======
28510 <HTML>
28511 <HEAD>
28512 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
28513 </HEAD>
28514 <BODY>
28515 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
28517 This feature is related to the option
28518 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28519 Stay Open folders are treated differently from regular folders in several
28520 ways.
28521 One of the differences is that the normal &quot;close&quot; sequence of
28522 events is deferred until Alpine is exited, instead of happening when you
28523 leave the folder to view another folder.
28524 The &quot;close&quot; sequence normally includes the Expunging
28525 of deleted messages
28526 (either automatically or after a prompt, controlled by the features
28527 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28528 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28529 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28530 handling of
28531 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
28534 If this feature is set the &quot;close&quot; sequence handling will take
28535 place when you leave the Stay Open folder.
28536 The folder will still be kept open, but the offer to Expunge and the archiving
28537 will take place each time you leave the folder instead of only once at the
28538 end of the session.
28539 This feature does not affect the INBOX, which will still only be processed
28540 when you exit Alpine.
28541 However, there is a similar feature that affects only the INBOX called
28542 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
28545 &lt;End of help on this topic&gt;
28546 </BODY>
28547 </HTML>
28548 ====== h_config_preserve_start_stop ======
28549 <HTML>
28550 <HEAD>
28551 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
28552 </HEAD>
28553 <BODY>
28554 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
28556 This feature controls how special control key characters, typically
28557 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
28558 are known as the "stop" and "start" characters and are sometimes used in
28559 communications paths to control data flow between devices that operate at
28560 different speeds.
28564 By default, Alpine turns the system's handling of these special characters
28565 off except during printing.  However, if you see Alpine reporting input errors
28566 such as:
28568 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
28570 and, at the same time, see your display become garbled, then it is likely
28571 that setting this option will solve the problem.  Be aware, though, that
28572 enabling this feature will also cause Alpine to ostensibly "hang" 
28573 whenever the Ctrl-S key combination is entered as the system is now
28574 interpreting such input as a "stop output" command.  To "start
28575 output"  again, simply type Ctrl-Q. 
28577 &lt;End of help on this topic&gt;
28578 </BODY>
28579 </HTML>
28580 ====== h_config_enable_incoming ======
28581 <HTML>
28582 <HEAD>
28583 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
28584 </HEAD>
28585 <BODY>
28586 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
28588 Alpine's Incoming Message Folders collection
28589 provides a convenient way to access multiple incoming folders.
28590 It is also useful if you have accounts on multiple computers.
28593 If set, this feature defines a pseudo-folder collection called
28594 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
28595 in this collection will be your INBOX, which will no longer show up in
28596 your Default folder collection.
28599 You may add more folders to the Incoming Message Folders collection by
28600 using the
28601 <!--chtml if pinemode="function_key"-->
28602 &quot;F10
28603 <!--chtml else-->
28604 &quot;A
28605 <!--chtml endif-->
28606 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
28607 the host the folder is stored on (which defaults to the same host used
28608 for your INBOX), a nickname, and the actual folder name.  Once a set
28609 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
28610 or MESSAGE TEXT screens) may be used to scan the folders for those
28611 with Recent messages.  If you add more folders to
28612 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
28613 no effect.
28615 NOTE: Normally the software that actually delivers mail (the stuff that happens
28616 before Alpine is involved) is in a better position to do delivery filtering
28617 than is Alpine itself.
28618 If possible, you may want to look at programs such as
28619 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
28620 filtering programs.
28621 If you'd prefer to have Alpine do the filtering for you, you may set that
28623 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
28625 <UL>   
28626 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28627 </UL><P>
28628 &lt;End of help on this topic&gt;
28629 </BODY>
28630 </HTML>
28631 ====== h_config_enable_incoming_checking ======
28632 <HTML>
28633 <HEAD>
28634 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
28635 </HEAD>
28636 <BODY>
28637 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
28639 This feature is only operational if you have enabled the optional
28640 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
28641 If you do have Incoming Message Folders and you also set this feature,
28642 then the number of Unseen messages in each folder will be displayed
28643 in the FOLDER LIST screen for the Incoming Message Folders.
28644 The number of Unseen messages in a folder will be displayed in parentheses
28645 to the right of the name of each folder.
28646 If there are no Unseen messages in a folder then only the name
28647 is displayed, not a set of parentheses with zero inside them.
28648 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
28649 the Incoming Message Folders to cause an immediate update.
28651 If a check for Unseen messages fails for a particular folder then Alpine
28652 will no longer attempt to check that folder for the duration of the
28653 session and this will be indicated by a question mark inside the
28654 parentheses.
28656 The features
28657 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
28658 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
28659 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
28660 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
28661 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
28662 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
28663 all affect how this feature behaves.
28665 <UL>   
28666 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28667 </UL><P>
28668 &lt;End of help on this topic&gt;
28669 </BODY>
28670 </HTML>
28671 ====== h_config_incoming_checking_total ======
28672 <HTML>
28673 <HEAD>
28674 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
28675 </HEAD>
28676 <BODY>
28677 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
28679 This option has no effect unless the feature
28680 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28681 is set, which in turn has no effect unless
28682 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28683 is set.
28685 When incoming folder checking is turned on the default is to display
28686 the number of unseen messages in each folder.
28687 More precisely, it is the number of undeleted unseen messages.
28688 Using this option you may also display the total number of messages
28689 in each folder.
28690 Instead of a single number representing the number of unseen messages
28691 you will get two numbers separated by a slash character.
28692 The first is the number of unseen messages and the second is the
28693 total number of messages.
28695 You may also use the recent message count instead of the unseen message
28696 count by turning on the feature
28697 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
28699 <UL>   
28700 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28701 </UL><P>
28702 &lt;End of help on this topic&gt;
28703 </BODY>
28704 </HTML>
28705 ====== h_config_incoming_checking_recent ======
28706 <HTML>
28707 <HEAD>
28708 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
28709 </HEAD>
28710 <BODY>
28711 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
28713 This option has no effect unless the feature
28714 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28715 is set, which in turn has no effect unless
28716 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28717 is set.
28719 When incoming folder checking is turned on the default is to display
28720 the number of unseen messages in each folder.
28721 More precisely, it is the number of undeleted unseen messages.
28722 Using this option you may display the number of recent messages instead
28723 of the number of unseen messages.
28724 A message is only counted as recent if this is the first session to
28725 see it, so the recent count might be less than the unseen count.
28726 The difference between the two would be accounted for by the unseen messages
28727 in the folder which were there previously but have not been looked at yet.
28729 If you simultaneously run more than one email client at a time
28730 (for example, you run more than one Alpine in parallel) then turning
28731 this feature on can cause some confusion.
28732 The confusion stems from the fact that each message is only considered to be
28733 recent in one session.
28734 That means that the counts of new messages may be different in the two
28735 Alpines running side by side, because each incoming message will only be
28736 counted as recent in one of the two sessions.
28738 You may also display the total number of messages
28739 in each folder by using the
28740 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
28741 option.
28743 <UL>   
28744 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28745 </UL><P>
28746 &lt;End of help on this topic&gt;
28747 </BODY>
28748 </HTML>
28749 ====== h_config_attach_in_reply ======
28750 <HTML>
28751 <HEAD>
28752 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
28753 </HEAD>
28754 <BODY>
28755 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
28757 This feature controls an aspect of Alpine's Reply command. If set, any MIME
28758 attachments that were part of the original message will automatically be
28759 included in the Reply.
28761 &lt;End of help on this topic&gt;
28762 </BODY>
28763 </HTML>
28764 ====== h_config_include_header =====
28765 <HTML>
28766 <HEAD>
28767 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
28768 </HEAD>
28769 <BODY>
28770 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
28772 This feature controls an aspect of Alpine's Reply command. If set, and the
28773 original message is being included in the reply, then headers from that
28774 message will also be part of the reply.
28776 &lt;End of help on this topic&gt;
28777 </HEAD>
28778 </HTML>
28779 ====== h_config_sig_at_bottom =====
28780 <HTML>
28781 <HEAD>        
28782 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
28783 </HEAD>
28784 <BODY>
28785 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
28787 This feature controls an aspect of Alpine's Reply command.  If this feature
28788 is set, and the original message is being included in the reply, then the
28789 contents of your signature file (if any) will be inserted after the included
28790 message.
28792 This feature does not affect the results of a Forward command.
28794 &lt;End of help on this topic&gt;
28795 </BODY>
28796 </HTML>
28797 ====== h_config_sigdashes =====
28798 <HTML>
28799 <HEAD>
28800 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
28801 </HEAD>
28802 <BODY>
28803 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
28805 This feature enables support for the common USENET news convention 
28806 of preceding a message signature with the special line consisting of 
28807 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
28810 When enabled and a
28811 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
28812 Alpine will insert the special line before including the file's text (unless
28813 the special line already exists somewhere in the file's text).
28816 In addition, when you Reply or Followup to a message containing one of
28817 these special lines and choose to include its text, Alpine will observe
28818 the convention of not including text beyond the special line in your
28819 reply.
28820 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28821 mode is enabled and turned on, then Alpine <EM>will</EM>
28822 include the text beyond the special line regardless of the setting of
28823 this feature.
28826 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
28827 for a related feature.
28830 <UL>   
28831 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28832 </UL><P>
28833 &lt;End of help on this topic&gt;
28834 </BODY>
28835 </HTML>
28836 ====== h_config_new_thread_blank_subject =====
28837 <HTML>
28838 <HEAD>
28839 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
28840 </HEAD>
28841 <BODY>
28842 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
28844 When this feature is enabled (the default) Alpine will create a new thread
28845 every time that the subject line becomes empty at any time during composition.
28848 This behavior is particularly useful in case you are replying to a message.
28849 Replying to a message causes the message to be in the same thread than the
28850 original message that is being replied to. However, many authors want to create
28851 a new message (in a different thread) while replying to a message, and they do
28852 this by changing the full subject, by first deleting the original subject and
28853 typing the new subject of the current message.
28856 Enabling this feature causes that any time that the subject is deleted, the 
28857 message being composed will be considered the first message of a new thread.
28860 <UL>   
28861 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28862 </UL><P>
28863 &lt;End of help on this topic&gt;
28864 </BODY>
28865 </HTML>
28866 ====== h_config_strip_sigdashes =====
28867 <HTML>
28868 <HEAD>
28869 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
28870 </HEAD>
28871 <BODY>
28872 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
28874 This feature doesn't do anything if the feature
28875 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
28876 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
28877 then turning on this feature enables support for the convention
28878 of not including text beyond the sigdashes line when Replying or Following
28879 up to a message and including the text of that message.
28880 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
28881 mode is enabled and turned on, then Alpine <EM>will</EM>
28882 include the text beyond the special line regardless of the setting of
28883 this feature.
28885 In other words, this is a way to turn on the signature stripping behavior
28886 without also turning on the dashes-adding behavior.
28888 <UL>   
28889 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28890 </UL><P>
28891 &lt;End of help on this topic&gt;
28892 </BODY>
28893 </HTML>
28894 ====== h_config_forward_as_attachment =====
28895 <HTML>
28896 <HEAD>
28897 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
28898 </HEAD>
28899 <BODY>
28900 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
28902 This feature affects the way forwarded message text is handled.  When set, rather than 
28903 include the text of the forwarded message below any additional text you provide in the
28904 composer, the forwarded message is attached in its entirety to the message you send.
28906 This is useful in that it keeps the text you provide in the composer distinct from the
28907 text of the forwarded message.  Similarly, it allows the recipient to 
28908 conveniently operate on the forwarded message.  For example, they might reply directly to
28909 the sender of the forwarded message, or process it as part of a spam report.
28910 <UL>   
28911 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28912 </UL><P>
28913 &lt;End of help on this topic&gt;
28914 </BODY>
28915 </HTML>
28916 ====== h_config_preserve_field =====
28917 <HTML>
28918 <HEAD>
28919 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
28920 </HEAD>
28921 <BODY>
28922 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
28924 This feature affects Alpine's behavior when one replies to a message. 
28925 When you receive a message, some or all of the recipients of the message 
28926 have been added to the To: and Cc: fields. If you reply to such message, 
28927 and this feature is disabled, then the original sender of the message is 
28928 added to the To: field, and all other recipients are added to the Cc: 
28929 field, while your address is added to the From: field.
28932 However, if this feature is enabled, then Alpine will preserve the 
28933 original fields as sent in the original message, so the Cc: and To: 
28934 fields will be preserved. The sender's address will be added to the To: 
28935 field, while your address is added to the From: field.
28938 The behavior of this feature is that replies to all messages will behave 
28939 in the way described above. If you only intend this to happen on a per 
28940 message basis, then keep this feature disabled, and when replying to a 
28941 message you will see a new option in the menu for the &quot;Reply to all 
28942 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
28943 make Alpine toggle its question so you can preserve the To: and Cc: 
28944 fields for that message only.
28946 <UL>   
28947 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28948 </UL><P>
28949 &lt;End of help on this topic&gt;
28950 </BODY>
28951 </HTML>
28952 ====== h_config_sub_lists =====
28953 <HTML>
28954 <HEAD>
28955 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
28956 </HEAD>
28957 <BODY>
28958 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
28960 This feature affects the subcommands available when Saving, 
28961 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
28962 available. This command allows you to type in a substring of the folder
28963 you are looking for and when you type ^X it will display all folders
28964 that contain that substring in their names.
28965 This feature is set by default.
28968 &lt;End of help on this topic&gt;
28969 </BODY>
28970 </HTML>
28971 ====== h_config_scramble_message_id =====
28972 <HTML>
28973 <HEAD>
28974 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
28975 </HEAD>
28976 <BODY>
28977 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
28979 Normally the Message-ID header that Alpine generates when sending a message
28980 contains the name of the computer from which the message is being sent.
28981 Some believe that this hostname could be used by spammers or could
28982 be used by others for nefarious purposes.
28983 If this feature is set, that name will be transformed with a simple
28984 Rot13 transformation.
28985 The result will still have the correct syntax for a Message-ID but the
28986 part of the MessageID that is often a domain name will not be an actual
28987 domain name because the letters will be scrambled.
28989 In addition, other information such as the name program, version, and
28990 a code for operating system used to build Alpine, will be encoded using
28991 the Rot13 transformation, except for the version number which will be
28992 encoded using a Rot5 transformation.
28994 It is possible (but unlikely?) that some spam detection
28995 software will use that as a reason to reject the mail as spam.
28996 It has also been reported that some spam detection software uses the
28997 fact that there are no dots after the &quot;@&quot; as a reason to reject
28998 messages.
28999 If your PC-Alpine Message-ID is using a name without a dot that is because
29000 that is what Windows thinks is your &quot;Full computer name&quot;.
29001 The method used to set this varies from one type of Windows to another but
29002 check under Settings -> Control Panel -> System and
29003 look for Network Identification or Computer Name or something similar.
29004 How to set it is beyond the scope of Alpine.
29007 &lt;End of help on this topic&gt;
29008 </BODY>
29009 </HTML>
29010 ====== h_downgrade_multipart_to_text =====
29011 <HTML>
29012 <HEAD>
29013 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
29014 </HEAD>
29015 <BODY>
29016 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
29019 This feature affects Alpine's behavior when sending mail.  Internet
29020 standards require Alpine to translate all non-ASCII characters in
29021 messages that it sends using MIME encoding.  This encoding can be
29022 ostensibly broken for recipients if any agent between Alpine and the
29023 recipient, such as an email list expander, appends text to the
29024 message, such as list information or advertising.  When sending such
29025 messages Alpine attempts to protect such encoding by placing extra
29026 MIME boundaries around the message text.
29028 These extra boundaries are invisible to recipients that 
29029 use MIME-aware email programs (the vast majority).  However, if
29030 you correspond with users of email programs that are not MIME-aware,
29031 or do not handle the extra boundaries gracefully, you can
29032 use this feature to prevent Alpine from including the extra
29033 MIME information.  Of course, it will increase the likelihood
29034 that non-ASCII text you send may appear corrupt to the recipient.
29036 &lt;End of help on this topic&gt;
29037 </BODY>
29038 </HTML>
29039 ====== h_config_show_sort =====
29040 <HTML>
29041 <HEAD>
29042 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
29043 </HEAD>
29044 <BODY>
29045 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
29047 If this feature is set and there is sufficient space on the screen,
29048 a short indication of the current sort order will be
29049 added in the titlebar (the top line on the screen), before the name
29050 of the folder.
29051 For example, with the default Arrival sort in effect,
29052 the display would have the characters
29054 <P><CENTER>[A]</CENTER><P>
29056 added between the title of the screen and the folder name.
29057 The letters are the same as the letters you may type to manually
29058 sort a folder with the SortIndex command ($).
29059 The letters in the table below are the ones that may show
29060 up in the titlebar line.
29062 <TABLE>   
29063 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
29064 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
29065 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
29066 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
29067 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
29068 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
29069 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
29070 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
29071 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
29072 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
29073 </TABLE>
29075 If the sort order is Reversed, the letter above will be preceded by the letter
29076 &quot;R&quot;, for example
29078 <P><CENTER>[RS]</CENTER><P>
29080 means that a Reverse Subject sort is in effect.
29081 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
29082 left out, and just an &quot;R&quot; is shown.
29084 <P><CENTER>[R]</CENTER>
29087 &lt;End of help on this topic&gt;
29088 </BODY>
29089 </HTML>
29090 ====== h_config_disable_reset_disp =====
29091 <HTML>
29092 <HEAD>
29093 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
29094 </HEAD>
29095 <BODY>
29096 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
29098 UNIX Alpine only.
29100 This feature affects Alpine's behavior when using
29101 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
29102 Normally, before the display filter is run, the terminal mode is reset
29103 to what it was before you started Alpine.
29104 This may be necessary if the filter requires the use of the terminal.
29105 For example, it may need to interact with you.
29106 If you set this feature, then the terminal mode will not be reset.
29107 One thing that turning on this feature should fix is the coloring of
29108 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
29109 breaks because the terminal reset resets the color state of the terminal.
29112 &lt;End of help on this topic&gt;
29113 </BODY>
29114 </HTML>
29115 ====== h_config_disable_sender =====
29116 <HTML>
29117 <HEAD>
29118 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
29119 </HEAD>
29120 <BODY>
29121 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
29123 This feature affects Alpine's generation of the &quot;Sender:&quot; or
29124 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
29125 header fields.
29126 By default, Alpine will generate such a header in situations where the
29127 username or domain are not the same as
29128 the &quot;From:&quot; header on the message.
29129 With this feature set,
29130 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
29131 This may be desirable on a system that is virtually hosting many domains,
29132 and the sysadmin has other methods available for tracking a message to
29133 its originator.
29135 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
29138 &lt;End of help on this topic&gt;
29139 </BODY>
29140 </HTML>
29141 ====== h_config_use_sender_not_x =====
29142 <HTML>
29143 <HEAD>
29144 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
29145 </HEAD>
29146 <BODY>
29147 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
29149 Normally Alpine adds a header line
29150 labeled &quot;X-X-Sender&quot;, if the sender is
29151 different from the From: line.
29152 The standard specifies that this header
29153 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
29154 Setting this feature causes
29155 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
29157 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
29160 &lt;End of help on this topic&gt;
29161 </BODY>
29162 </HTML>
29163 ====== h_config_use_fk =====
29164 <HTML>
29165 <HEAD>
29166 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
29167 </HEAD>
29168 <BODY>
29169 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
29171 This feature specifies that Alpine will respond to function keys instead of
29172 the normal single-letter commands. In this mode, the key menus at the
29173 bottom of each screen will show function key designations instead of the
29174 normal mnemonic key.
29177 &lt;End of help on this topic&gt;
29178 </BODY>
29179 </HTML>
29180 ====== h_config_cancel_confirm =====
29181 <HTML>
29182 <HEAD>
29183 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
29184 </HEAD>
29185 <BODY>
29186 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
29188 This feature affects what happens when you type ^C to cancel a composition.
29189 By default, if you attempt to cancel a composition by typing ^C, you will be
29190 asked to confirm the cancellation by typing a &quot;C&quot;
29191 for <EM>C</EM>onfirm.
29192 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
29193 risky because the &quot;^C Y&quot; needed to cancel a message
29194 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
29196 If this feature is set the confirmation asked for
29197 will be a &quot;<EM>Y</EM>es&quot;
29198 instead of a &quot;<EM>C</EM>onfirm&quot; response.
29201 &lt;End of help on this topic&gt;
29202 </BODY>
29203 </HTML>
29204 ====== h_config_compose_maps_del =====
29205 <HTML>
29206 <HEAD>
29207 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
29208 </HEAD>
29209 <BODY>
29210 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
29212 This feature affects the behavior of the DELETE key.
29213 If set, Delete will be equivalent to ^D, and delete
29214 the current character.  Normally Alpine defines the Delete key
29215 to be equivalent to ^H, which deletes the <EM>previous</EM>
29216 character.
29219 &lt;End of help on this topic&gt;
29220 </BODY>
29221 </HTML>
29222 ====== h_config_compose_bg_post =====
29223 <HTML>
29224 <HEAD>
29225 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
29226 </HEAD>
29227 <BODY>
29228 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
29230 This feature affects the behavior of Alpine's mail sending.  If set, this
29231 feature enables a subcommand in the composer's "Send?" confirmation
29232 prompt.  The subcommand allows you to tell Alpine to handle the actual
29233 posting in the background.  While this feature usually allows posting
29234 to appear to happen very fast, it has no affect on the actual delivery
29235 time it takes a message to arrive at its destination.
29238 Please Note:
29239 <OL>
29240  <LI>This feature will have no effect if the feature
29241        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
29242        is set.
29243  <LI>This feature isn't supported on all systems.  All DOS and Windows,
29244        as well as several Unix ports, do not recognize this feature.
29245  <LI>Error handling is significantly different when this feature is
29246         enabled.  Any message posting failure results in the message
29247         being appended to your &quot;Interrupted&quot; mail folder.  When you
29248         type the <A HREF="h_common_compose">C</A>ompose command,
29249         Alpine will notice this folder and
29250         offer to extract any messages contained.  Upon continuing a 
29251         failed message, Alpine will display the nature of the failure 
29252         in the status message line.
29253  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
29254         for message data to
29255         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
29256         if you typically run close to any sort of disk-space limits or quotas.
29257 </OL>
29259 &lt;End of help on this topic&gt;
29260 </BODY>
29261 </HTML>
29262 ====== h_config_compose_dsn =====
29263 <HTML>
29264 <HEAD>
29265 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
29266 </HEAD>
29267 <BODY>
29268 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
29270 This feature affects the behavior of Alpine's mail sending.  If set, this
29271 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
29272 prompt.  The subcommand allows you to tell Alpine to request the type of
29273 Delivery Status Notification (DSN) that you would like.  Most users will
29274 be happy with the default, and need not enable this feature.
29276 If the feature
29277 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29278 then this feature has no effect and the type of DSN is not selectable.
29281 Turning on this feature and then turning on the DSNOpts from the send
29282 prompt reveals four on-off toggles at the bottom of the screen.
29283 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
29284 that no notification be returned to you, even if there is a delivery
29285 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
29286 server that you are willing (or not) to receive delay notifications, which
29287 happen when there is an unusual delay at some mail server (in that mail
29288 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
29289 Success requests that you be sent a DSN message when the message is
29290 successfully delivered to the recipients mailbox.  Setting NoErrRets will
29291 automatically turn off Delay and Success notification, and will flip the
29292 toggles to show that.  Similarly, turning on Delay and/or Success will
29293 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
29294 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
29295 the full message be returned in any failed DSN.  RetHdrs requests that
29296 only the headers be returned in any failed DSN.  Notice that this command
29297 applies only to failed delivery status reports.  For delay or success
29298 reports, the full message is never returned, only the headers are returned.
29301 If you don't enable the DSN feature or if you don't turn it on for a
29302 particular message, the default is that you will be notified about failures,
29303 you might be notified about delays, and you won't be notified about
29304 successes.  You will usually receive the full message back when there is
29305 a failure.
29308 If you turn on the DSNOpts the default is to return as much information as
29309 possible to you.  That is, by default, the Success and Delay options are
29310 turned on and the full message will be returned on failure.
29313 The sending prompt will display the current DSN request (if any) in a
29314 shorthand form.  It will be:
29316 <P><CENTER>[Never]</CENTER>
29319 if you have requested NoErrRets.  Otherwise, it will look something like:
29321 <P><CENTER>[FDS-Hdrs]</CENTER>
29324 The &quot;F&quot; will always be there, indicating that you will be notified
29325 of failures.  (Alpine doesn't provide a way to request no failure notification
29326 and at the same time request either success or delay notification.  The only
29327 way to request no failure notifications is to request no notifications at
29328 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
29329 requested Delay and/or Success notification.  If one of those is missing,
29330 that means you are requesting no notification of the corresponding type.
29331 After the dash it will say either Hdrs or Full.  Hdrs means to return only
29332 the headers and Full means to return the full message (applies to
29333 failure notifications only).
29336 NOTE: This feature relies on your system's mail transport agent or
29337 configured
29338 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
29339 having the negotiation mechanism introduced in
29340 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
29341 &quot;Delivery Status Notification&quot; (DSN).  If the mail tranport agent you
29342 are using doesn't support DSN, a short warning will be shown to you on
29343 the message line at the bottom of the screen after you send your message,
29344 but your message will have been sent anyway.
29347 Note that DSNs don't provide a mechanism to request read receipts.  That
29348 is, if you request notification on success you are notified when the
29349 message is delivered to the mailbox, not when the message is read.
29352 ESMTP allows for graceful migration to upgraded mail transfer agents, but
29353 it is possible that this feature might cause problems for some servers. 
29356 &lt;End of help on this topic&gt;
29357 </BODY>
29358 </HTML>
29359 ====== h_config_auto_zoom =====
29360 <HTML>
29361 <HEAD>
29362 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
29363 </HEAD>
29364 <BODY>
29365 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
29367 This feature affects the behavior of the Select command.
29368 If set, the select command will automatically perform a zoom
29369 after the select is complete.
29370 This feature is set by default.
29372 Some related help topics are
29373 <UL>
29374 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29375 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29376 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29377 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29378 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29379 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29380 </UL>
29383 &lt;End of help on this topic&gt;
29384 </BODY>
29385 </HTML>
29386 ====== h_config_auto_unzoom =====
29387 <HTML>
29388 <HEAD>
29389 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
29390 </HEAD>
29391 <BODY>
29392 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
29394 This feature affects the behavior of the Apply command.  If set, and if
29395 you are currently looking at a Zoomed Index view of selected messages,
29396 the Apply command will do the operation you specify, but then will
29397 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
29398 the normal Index view after the Apply. 
29399 This feature is set by default.
29402 Some related help topics are
29403 <UL>
29404 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29405 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29406 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29407 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29408 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29409 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29410 </UL>
29412 &lt;End of help on this topic&gt;
29413 </BODY>
29414 </HTML>
29415 ====== h_config_auto_unselect =====
29416 <HTML>
29417 <HEAD>
29418 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
29419 </HEAD>
29420 <BODY>
29421 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
29423 This feature affects the behavior of the Apply command.  If set,
29424 the Apply command will do the operation you specify, but then will
29425 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
29426 the normal Index view after the Apply. 
29429 Some related help topics are
29430 <UL>
29431 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29432 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29433 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29434 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29435 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29436 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29437 </UL>
29439 &lt;End of help on this topic&gt;
29440 </BODY>
29441 </HTML>
29442 ====== h_config_fast_recent =====
29443 <HTML>
29444 <HEAD>
29445 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
29446 </HEAD>
29447 <BODY>
29448 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
29450 This feature controls the behavior of the TAB key when traversing folders
29451 in the optional 
29452 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
29453 collection or in optional <!--#echo var="VAR_news-collections"-->.
29456 When the TAB
29457 (<A HREF="h_common_nextnew">NextNew</A>)
29458 key is pressed, the default behavior is to
29459 explicitly examine the status of the folder for the number of recent
29460 messages (messages delivered since the last time it was viewed).
29461 Depending on the size and number of messages in the folder, this test
29462 can be time consuming.
29465 Enabling this feature will cause Alpine to only test for the existence of
29466 any recent messages rather than to obtain the count.  This is much faster
29467 in many cases.  The downside is that you're not given the number of recent
29468 messages when prompted to view the next folder.
29469 If the feature
29470 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
29471 is turned on, then the present feature will have no effect.
29474 <UL>   
29475 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29476 </UL><P>
29477 &lt;End of help on this topic&gt;
29478 </BODY>
29479 </HTML>
29480 ====== h_config_arrow_nav =====
29481 <HTML>
29482 <HEAD>
29483 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
29484 </HEAD>
29485 <BODY>
29486 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
29488 This feature controls the behavior of the left and right arrow keys.
29489 If set, the left and right arrow keys will operate like the usual
29490 navigation keys &lt; and &gt;.
29491 This feature is set by default.
29494 If you set this feature, and do not like the changed behavior of the up/down 
29495 arrow 
29496 keys when navigating through the FOLDER LIST screen -- 
29497 <B>first</B> from column to column, if more than one folder is 
29498 displayed per row, 
29499 and <B>then</B> from row to row -- you may either also wish to set the feature 
29500 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
29501 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
29502 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
29503 folders in each column.
29505 <UL>   
29506 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29507 </UL><P>
29508 &lt;End of help on this topic&gt;
29509 </BODY>
29510 </HTML>
29511 ====== h_config_relaxed_arrow_nav =====
29512 <HTML>
29513 <HEAD>
29514 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
29515 </HEAD>
29516 <BODY>
29517 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
29519 This feature controls the behavior of the left, right, up and down
29520 arrow keys in the FOLDER LIST screen when the &quot;<A
29521 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
29522 set.
29523 This feature is set by default.
29527 When this feature is set, the left and right
29528 arrow keys in the FOLDER LIST screen
29529 move the highlight bar to the left or right, and the up and
29530 down arrows move it up or down.
29533 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
29534 feature is not set;
29535 the left and right arrow keys in the Folder List screen strictly
29536 track the commands bound to the '&lt;' and '&gt;' keys, and the up
29537 and down arrow keys move the highlight bar to the previous and next
29538 folder or directory name.
29541 <UL>   
29542 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29543 </UL><P>
29544 &lt;End of help on this topic&gt;
29545 </BODY>
29546 </HTML>
29547 ====== h_config_alt_compose_menu =====
29548 <HTML>
29549 <HEAD>
29550 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
29551 </HEAD>
29552 <BODY>
29553 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
29555 This feature controls the menu that is displayed when Compose is selected.
29556 If set, a list of options will be presented, with each option representing
29557 the type of composition that could be used. This feature is most useful for
29558 users who want to avoid being prompted with each option separately, or who
29559 want to avoid the checking of remote postponed or form letter folders.
29560 The possible types of composition are:
29563 New, for starting a new composition. Note that if New is selected and roles
29564 are set, roles are checked for matches and applied according to the setting
29565 of the matching role.
29568 Interrupted, for continuing an interrupted composition. This option is only
29569 offered if an interrupted message folder is detected.
29572 Postponed, for continuing postponed compositions. This option is offered
29573 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
29574 the postponed folder actually exists. This option is especially handy
29575 for avoiding having to check for the existence of a remote postponed folder.
29578 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
29579 is set in the config, and is not checked for existence for reasons similar
29580 to those explained by the postponed option.
29583 setRole, for selecting a role to apply to a composition.
29586 &lt;End of help on this topic&gt;
29587 </BODY>
29588 </HTML>
29589 ====== h_config_alt_role_menu =====
29590 <HTML>
29591 <HEAD>
29592 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
29593 </HEAD>
29594 <BODY>
29595 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
29597 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
29598 a role and compose a new message using that role.
29599 When this feature is set, the role command will first ask whether you want to
29600 Compose a new message, Forward the current message, Reply to the
29601 current message, or Bounce the current message.
29602 If you are not in the MESSAGE INDEX and are not viewing a message,
29603 then there is no current message and the question will be skipped.
29604 After you have chosen to Compose, Forward, Reply, or Bounce you will
29605 then choose the role to be used.
29607 When Bouncing the &quot;Set From&quot; address is used for the
29608 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
29609 provided that the option
29610 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
29611 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
29612 set.
29613 Other actions of the role are ignored when Bouncing.
29616 &lt;End of help on this topic&gt;
29617 </BODY>
29618 </HTML>
29619 ====== h_config_always_spell_check =====
29620 <HTML>
29621 <HEAD>
29622 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
29623 </HEAD>
29624 <BODY>
29625 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
29627 When this feature is set, every composed message will be spell-checked before
29628 being sent.
29630 &lt;End of help on this topic&gt;
29631 </BODY>
29632 </HTML>
29633 ====== h_config_quell_asterisks =====
29634 <HTML>
29635 <HEAD>
29636 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
29637 </HEAD>
29638 <BODY>
29639 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
29641 When you are running Alpine you will sometimes be asked for a password
29642 in a prompt on the third line from the bottom of the screen.
29643 Normally each password character you type will cause an asterisk to echo
29644 on the screen. That gives you some feedback to know that your typing is
29645 being recognized.
29646 There is a very slight security risk in doing it this way because someone
29647 watching over your shoulder might be able to see how many characters there
29648 are in your password.
29649 If you'd like to suppress the echoing of the asterisks set this feature.
29651 &lt;End of help on this topic&gt;
29652 </BODY>
29653 </HTML>
29654 ====== h_config_quell_flowed_text =====
29655 <HTML>
29656 <HEAD>
29657 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
29658 </HEAD>
29659 <BODY>
29660 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
29662 Alpine generates flowed text where possible.
29663 The method for generating flowed text is defined by
29664 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
29665 the benefit of doing so is
29666 to send message text that can properly be viewed both on normal width displays
29667 and on displays with smaller or larger than normal screen widths.
29668 With flowed text, a space at the end of a line tells the receiving mail
29669 client that the following line belongs to the same paragraph.
29670 Quoted text will also be affected, with only the innermost
29671 level of &quot;&gt;&quot; quoting being followed by a space.
29672 However, if you have changed the
29673 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29674 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29675 quoted text will not be flowed.
29676 For this reason, we recommend that you leave your
29677 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
29679 This feature turns off the generation of flowed text, as it might be
29680 desired to more tightly control how a message is displayed on the receiving end.
29682 If this feature is <EM>not</EM> set, you can control on a message by message
29683 basis whether or not flowed text is generated.
29684 You do this by typing ^V at the Send confirmation prompt that you get
29685 after typing ^X to send a message.
29686 ^V is a toggle that turns flowing off and back on if typed again.
29687 If for some reason flowing cannot be done on a particular message, then the
29688 ^V command will not be available.
29689 This would be the case, for example, if this feature was set, or if your
29690 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
29691 If the feature
29692 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29693 then the opportunity to control on a message by message basis
29694 whether or not flowed text is generated is lost.
29696 When this feature is not set and you have typed ^V to turn off flowing,
29697 the Send confirmation prompt will change to look like
29699 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
29701 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
29702 also turn off the sending of flowed text messages, but it differs in that
29703 it also trims all trailing white space from a message before sending it.
29705 If alternate editors are used extensively, be aware that a message will still
29706 be sent flowed if this feature is unset.  In most cases this will be fine,
29707 but if the editor has a &quot;flowed text&quot; mode, it would be best to
29708 use that.
29710 &lt;End of help on this topic&gt;
29711 </BODY>
29712 </HTML>
29713 ====== h_config_strip_ws_before_send =====
29714 <HTML>
29715 <HEAD>
29716 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
29717 </HEAD>
29718 <BODY>
29719 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
29721 By default, trailing whitespace is not stripped from
29722 a message before sending.  Trailing whitespace should have no effect on an
29723 email message, and in flowed text can aid in delimiting paragraphs.
29724 However, the old behavior of stripping trailing whitespace was in place
29725 to better deal with older clients that couldn't handle certain types of
29726 text encodings.  This feature restores the old behavior
29728 Trailing whitespace is of aid to flowed-text-formatted messages, which are
29729 generated by default but can be turned off via the
29730 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
29731 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
29732 of flowed text.
29734 &lt;End of help on this topic&gt;
29735 </BODY>
29736 </HTML>
29737 ====== h_config_alt_reply_menu =====
29738 <HTML>
29739 <HEAD>
29740 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></TITLE>
29741 </HEAD>
29742 <BODY>
29743 <H1>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></H1>
29745 Note that if this option is enabled, then the option
29746 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
29747 is ignored. See below to understand why.
29749 When you reply to a message, a series of questions are asked that 
29750 determines how your reply will be handled by Alpine. This feature only 
29751 affects the result of the first question you are asked, and its purpose is 
29752 to set values that could override defaults set in Alpine's main 
29753 configuration screen. As a result, this menu allows you to configure even 
29754 more features than you would be able to do without this option. For 
29755 example, this menu always allows you to override or select a <A 
29756 HREF="h_rules_roles">Role</A> if you have defined one, or allows you to 
29757 override your indent string, regardless of if you have enabled 
29758 <A HREF="h_config_prefix_editing"><!--#echo var="FEAT_enable-reply-indent-string-editing"--></A>.
29759 The full list of options can be found below.
29761 Here is an example of how this option works. After you press Reply,
29762 if you see &quot;A Inc Attach&quot; in the menu, it means that 
29763 if you press &quot;A&quot;, then Alpine will include the attachments
29764 of the original message, and the default is not to include them. 
29765 Conversely, if you see &quot;A No Attach&quot; 
29766 then by pressing &quot;A&quot; Alpine will not include
29767 attachments in your reply, and the default is that Alpine will 
29768 include them in your reply. The value that you see when you 
29769 start your reply is controlled by the option
29770 <A HREF="h_config_attach_in_reply">
29771 <!--#echo var="FEAT_include-attachments-in-reply"-->
29772 </A>. If the feature is enabled, then Alpine will display 
29773 &quot;A No Attach&quot; to override the default behavior. You can
29774 toggle between the two values of this option by pressing &quot;A&quot;.
29775 Remember that the value that you see in the menu is the action that will 
29776 be done when you press the associated command.
29778 Below are your options:
29779 <OL>
29780 <LI><B>A</B>: This determines if Alpine will include or not the 
29781 attachments sent to you in the message that you are replying to. The default 
29782 is to use the value of the configuration option 
29783 <A HREF="h_config_attach_in_reply"><!--#echo var="FEAT_include-attachments-in-reply"--></A> and can be overriden by using this command.
29785 <LI><B>H</B>: This command determines if the headers of a message are
29786 included in the body of the message that is being replied to. By default 
29787 Alpine will use the value of the configuration option 
29788 <A HREF="h_config_include_header"><!--#echo var="FEAT_include-header-in-reply"--></A>. 
29789 Observe that by toggling this option to include headers, text will be toggled
29790 to be included by default.
29792 <LI><B>R</B>: Can be used to set a role different from the default.
29794 <LI><B>S</B>: Determines if Alpine will strip the signature from a 
29795 message. The default is to strip the signature when the message is not
29796 viewed in headers mode, and you either have enabled
29797 <A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A> 
29799 <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>.
29801 <LI><B>Ctrl-R</B>: Can be used to edit the 
29802 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>.
29803 </OL>
29805 In order to include the text of the original message in the reply
29806 you either need to press 'y' to include the original text, or 'n' to 
29807 exclude it from the reply. Pressing return will execute the default 
29808 action, which is to include text only if the option
29809 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
29810 is enabled. However, notice that the default is to include text if you edit the 
29811 reply indent string or if you explicitly set through this menu that you
29812 want headers included in the reply message.
29815 &lt;End of help on this topic&gt;
29816 </BODY>
29817 </HTML>
29818 ====== h_config_del_from_dot =====
29819 <HTML>
29820 <HEAD>
29821 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
29822 </HEAD>
29823 <BODY>
29824 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
29826 This feature controls the behavior of the Ctrl-K command in the composer.
29827 If set, ^K will cut from the current cursor position to the end of the line,
29828 rather than cutting the entire line.
29831 &lt;End of help on this topic&gt;
29832 </BODY>
29833 </HTML>
29834 ====== h_config_print_index =====
29835 <HTML>
29836 <HEAD>
29837 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
29838 </HEAD>
29839 <BODY>
29840 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
29842 This feature controls the behavior of the Print command when in the
29843 MESSAGE INDEX screen.  If set, the print command will give you a prompt
29844 asking if you wish to print the message index, or the currently highlighted
29845 message. If not set, the message will be printed.
29848 &lt;End of help on this topic&gt;
29849 </BODY>
29850 </HTML>
29851 ====== h_config_allow_talk =====
29852 <HTML>
29853 <HEAD>
29854 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
29855 </HEAD>
29856 <BODY>
29857 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
29859 UNIX Alpine only.
29861 By default, permission for others to &quot;talk&quot; to your terminal is turned
29862 off when you are running Alpine.  When this feature is set, permission is
29863 instead turned on.  If enabled, you may see unexpected messages in the
29864 middle of your Alpine screen from someone attempting to contact you via the
29865 &quot;talk&quot; program.
29868 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
29869 talk daemon on your system will attempt to print a message on your screen 
29870 when someone else is trying to contact you.  If you wish to see these
29871 messages while you are running Alpine, you should enable this feature.
29874 If you do enable this feature and see a &quot;talk&quot; message, you must 
29875 suspend or quit Alpine before you can respond.
29878 &lt;End of help on this topic&gt;
29879 </BODY>
29880 </HTML>
29881 ====== h_config_send_filter_dflt =====
29882 <HTML>
29883 <HEAD>
29884 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
29885 </HEAD>
29886 <BODY>
29887 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
29888 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
29889 configured, setting this feature will cause
29890 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
29891 instead of unfiltered, the usual default.
29893 <UL>   
29894 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29895 </UL><P>
29896 &lt;End of help on this topic&gt;
29897 </BODY>
29898 </HTML>
29899 ====== h_config_custom_print =====
29900 <HTML>
29901 <HEAD>
29902 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
29903 </HEAD>
29904 <BODY>
29905 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
29907 When this feature is set, the print command will have an additional
29908 subcommand called "C CustomPrint".  If selected, you will have
29909 the opportunity to enter any system print command --instead of being 
29910 restricted to using those that have been previously configured in the 
29911 printer setup menu.
29914 &lt;End of help on this topic&gt;
29915 </BODY>
29916 </HTML>
29917 ====== h_config_enable_dot_files =====
29918 <HTML>
29919 <HEAD>
29920 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
29921 </HEAD>
29922 <BODY>
29923 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
29925 When this feature is set, files beginning with dot (".") will be
29926 visible in the file browser.  For example, you'll be able to select them
29927 when using the browser to add an attachment to a message.
29929 &lt;End of help on this topic&gt;
29930 </BODY>
29931 </HTML>
29932 ====== h_config_enable_dot_folders =====
29933 <HTML>
29934 <HEAD>        
29935 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
29936 </HEAD>
29937 <BODY>
29938 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
29940 When this feature is set, folders beginning with dot (".") may be added
29941 and viewed.
29943 &lt;End of help on this topic&gt;
29944 </BODY>
29945 </HTML>
29946 ====== h_config_ff_between_msgs =====
29947 <HTML>
29948 <HEAD>
29949 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
29950 </HEAD>
29951 <BODY>
29952 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
29954 Setting this feature causes a formfeed to be printed between messages when
29955 printing multiple messages (with Apply Print command).
29957 &lt;End of help on this topic&gt;
29958 </BODY>
29959 </HTML>
29960 ====== h_config_blank_keymenu =====
29961 <HTML>
29962 <HEAD>
29963 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
29964 </HEAD>
29965 <BODY>
29966 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
29968 If this feature is set the command key menu that normally appears on the
29969 bottom two lines of the screen will not usually be there.  Asking for
29970 help with ^G or ? will cause the key menu to appear instead of causing
29971 the help message to come up.  If you want to actually see the help text,
29972 another ^G or ? will show it to you.  After the key menu has popped
29973 up with the help key it will remain there for an O for Other command but
29974 disappear if any other command is typed.
29976 &lt;End of help on this topic&gt;
29977 </BODY>
29978 </HTML>
29979 ====== h_config_enable_mouse =====
29980 <HTML>
29981 <HEAD>
29982 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
29983 </HEAD>
29984 <BODY>
29985 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
29987 This feature controls whether or not an X terminal mouse can be used with
29988 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
29989 being used, the left mouse button on the mouse can be used to select text
29990 or commands.
29991 Clicking on a command at the bottom of the screen will behave as if you had
29992 typed that command.
29993 Clicking on an index line will move the current message highlight to
29994 that line.
29995 Double-clicking on an index line will view the message.
29996 Double-clicking on a link will view the link.
29998 This type of mouse support will also work in some terminal emulators which are
29999 not actually X terminals, but which have extra code to support the xterm
30000 style mouse.
30001 For those emulators you not only need to turn this feature on but you also
30002 have to set the $DISPLAY environment variable even though it isn't needed
30003 for your terminal.
30004 That will cause Alpine to think that it is an xterm and to properly interpret the
30005 escape sequences sent by the mouse.
30007 Note: if this feature is set, the behavior of X terminal cut-and-paste is
30008 also modified.  It is sometimes possible to hold the shift key down while clicking
30009 left or middle mouse buttons for the normal xterm cut/paste operations. 
30010 There is also an Alpine command to toggle this mode on or off.
30011 The command is Ctrl-&#92; (Control-backslash).
30013 &lt;End of help on this topic&gt;
30014 </BODY>
30015 </HTML>
30016 ====== h_config_enable_xterm_newmail =====
30017 <HTML>
30018 <HEAD>        
30019 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
30020 </HEAD>
30021 <BODY>
30022 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
30024 This feature controls whether or not Alpine will attempt to announce new
30025 mail arrival when it is running in an X terminal window and that window
30026 is iconified.  If set, and the $DISPLAY variable indicates that an X
30027 terminal is being used, Alpine will send appropriate escape sequences to
30028 the X terminal to modify the label on Alpine's icon to indicate that new
30029 mail has arrived. Alpine will also modify the Alpine window's title to
30030 indicate new mail.
30031 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
30033 &lt;End of help on this topic&gt;
30034 </BODY></HTML>
30035 ====== h_config_enable_newmail_short_text =====
30036 <HTML>
30037 <HEAD>        
30038 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
30039 </HEAD>
30040 <BODY>
30041 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
30043 This feature controls the text to be displayed in an icon in the event
30044 of a new message arrival.  Normally, the message will
30045 be the one that is displayed on the screen.  This feature shortens the
30046 message to a count of the number of new messages in brackets.  This may be
30047 more useful for those who use the window's title bar in the task bar as a
30048 new mail indicator.  This feature is only useful if the
30049 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
30050 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
30051 feature, this feature is only relevant when run in an xterm environment.
30053 &lt;End of help on this topic&gt;
30054 </BODY></HTML>
30055 ====== h_config_copy_to_to_from =====
30056 <HTML>
30057 <HEAD>
30058 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
30059 </HEAD>
30060 <BODY>
30061 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
30063 This feature affects the From address used when Replying to a message.
30064 It is probably only useful if you have some
30065 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
30066 defined.
30067 When enabled, it checks to see if any of the addresses in the To or Cc
30068 fields of the message you are replying to is one of your addresses.
30069 If it is, and there is only one of them, then that address is used as
30070 the From address in the message you are composing.
30071 In other words, you will be using a From address that is the same
30072 as the To address that was used to get the mail to you in the first place.
30075 If a role is being used and it has a From address defined, that From address will
30076 be used rather than the one derived from this feature.
30079 <UL>   
30080 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30081 </UL><P>
30082 &lt;End of help on this topic&gt;
30083 </BODY>
30084 </HTML>
30085 ====== h_config_prefix_editing =====
30086 <HTML>
30087 <HEAD>
30088 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
30089 </HEAD>
30090 <BODY>
30091 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
30093 This feature affects the Reply command's &quot;Include original message
30094 in Reply?&quot; prompt.  When enabled, it causes the
30095 &quot;Edit Indent String&quot; sub-command to appear which allows 
30096 you to edit the string Alpine would otherwise use to denote included 
30097 text from the message being replied to.<P>
30099 Thus, you can change Alpine's default message quote character (usually
30100 an angle bracket) on a per message basis. So you could change your quoted message to
30101 look, for example, like this:<p>
30103 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
30105 John: I just wanted to say hello and to congratulate you
30106 John: on a job well done!</pre><p>
30108 The configuration option
30109 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
30110 may be used to change what appears as the default string to be edited.
30112 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
30113 currently being replied to.
30115 If you change your <!--#echo var="VAR_reply-indent-string"-->
30116 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
30117 quoted text will not be flowed
30118 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
30119 when you reply.
30120 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
30121 set to the default value.
30123 <UL>   
30124 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30125 </UL><P>
30126 &lt;End of help on this topic&gt;
30127 </BODY>
30128 </HTML>
30129 ====== h_config_enable_search_and_repl =====
30130 <HTML>
30131 <HEAD>
30132 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
30133 </HEAD>
30134 <BODY>
30135 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
30137 This feature modifies the behavior of Alpine's composer.  Setting this
30138 feature causes Alpine to offer the "^R Replace" subcommand, which
30139 allows you to search and replace text strings in a message you are composing, 
30140 inside the "^W Where is" command.  
30144 To search and replace text, first enter the text to be replaced at the 
30145 "Search: " prompt.  Then, rather than pressing Enter to just search for that
30146 text, press ^R, which turns the prompt into 
30150 Search (to replace): 
30154 and then press Enter.  The cursor will highlight the first occurrence 
30155 of the text string you entered, and the prompt will show: 
30159 Replace "<your text string>" with : 
30163 where <your text string> is what you entered at the previous prompt;
30164 here, enter the replacement text.  To only replace the highlighted 
30165 occurrence, simply press Enter now; to replace all occurrences in the 
30166 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
30167 each replacement.
30171 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
30172 ^X toggles between "Replace All" and "Replace One."
30176 If you previously searched for text in a message, it will be offered for 
30177 re-use as part of the prompt, shown in [ ] brackets.
30180 &lt;End of help on this topic&gt;
30181 </BODY>
30182 </HTML>
30183 ====== h_config_enable_view_attach =====
30184 <HTML>
30185 <HEAD>
30186 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
30187 </HEAD>
30188 <BODY>
30189 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
30191 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30192 Setting this feature causes Alpine to present attachments in boldface.
30193 The first available attachment is displayed in inverse.  This is the
30194 "selected" attachment.  Pressing RETURN will cause Alpine to display
30195 the selected attachment.  Use the arrow keys to change which of the
30196 attachments displayed in boldface is the current selection.
30200 Speaking of arrow keys, the Up and Down Arrows will select the next
30201 and previous attachments if one is available on the screen for selection.
30202 Otherwise, they will simply adjust the viewed text one line up or down.
30206 Similarly, when selectable items are present in a message, the Ctrl-F key
30207 can be used to select the next item in the message independent of which
30208 portion of the viewed message is currently displayed. The Ctrl-B key can
30209 be used to select the previous item in the same way. 
30210 <P> 
30211 &lt;End of help on this topic&gt;
30212 </BODY>
30213 </HTML>
30214 ====== h_config_enable_y_print =====
30215 <HTML>
30216 <HEAD>
30217 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
30218 </HEAD>
30219 <BODY>
30220 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
30222 This feature modifies the behavior of Alpine's Print command.
30224 By default, Alpine's print command is available by pressing the "%" key.  
30225 (This command is a substantial change from Pine versions before 4.00 -- 
30226 where the print command was "Y" -- based on numerous complaints about 
30227 printing being invoked inadvertently, since Y also means "Yes.")  
30231 This feature is supplied to mitigate any disruption or anxiety users 
30232 might feel as a result of this change.  
30236 Enabling this feature will cause Alpine to recognize both the old
30237 command, "Y" for Prynt, as well the new "%" method for invoking
30238 printing.  Note, key menu labels are not changed as a result of
30239 enabling this feature.
30243 &lt;End of help on this topic&gt;
30244 </BODY>
30245 </HTML>
30246 ====== h_config_enable_lessthan_exit =====
30247 <HTML>
30248 <HEAD>
30249 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
30250 </HEAD>
30251 <BODY>
30252 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
30254 If this feature is set, then on screens where there is an Exit command
30255 but no < command, the < key will perform the same function as the Exit
30256 command.
30257 This feature is set by default.
30259 &lt;End of help on this topic&gt;
30260 </BODY>
30261 </HTML>
30262 ====== h_config_enable_view_url =====
30263 <HTML>
30264 <HEAD>
30265 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
30266 </HEAD>
30267 <BODY>
30268 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
30269 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30270 When this feature is set (the default) Alpine will select possible URLs from the
30271 displayed text and display them in boldface for selection.
30273 The first available URL is displayed in inverse.  This is the
30274 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
30275 the selected URL via either built-in means as with mailto:, imap:,
30276 news:, and nntp:, or via an external application as defined
30277 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30278 variable.
30280 Use the arrow keys to change which of the URLs displayed in boldface
30281 is the current selection.
30283 Speaking of arrow keys, the Up and Down Arrows will select the next
30284 and previous URL if one is available on the screen for selection (unless 
30285 you have set the feature 
30286 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
30287 Otherwise, they will simply adjust the viewed text one line up or down.
30289 Similarly, when selectable items are present in a message, the Ctrl-F
30290 key can be used to select the next item in the message independent
30291 of which portion of the viewed message is currently displayed. The
30292 Ctrl-B key can be used to select the previous item in the same way.
30294 <UL>   
30295 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30296 </UL><P>
30297 &lt;End of help on this topic&gt;
30298 </BODY>
30299 </HTML>
30300 ====== h_config_enable_view_web_host =====
30301 <HTML>
30302 <HEAD>
30303 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
30304 </HEAD>
30305 <BODY>
30306 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
30308 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30309 When this feature is set (the default) Alpine will select possible web hostnames
30310 from the displayed text and display them in boldface for selection.  
30311 This can be useful when you receive messages referencing World Wide Web 
30312 sites without the use of complete URLs; for example, specifying only 
30313 &quot;www.some.site.com&quot; (which will <B>not</B> become a 
30314 selectable 
30315 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
30316 rather than explicitly
30317 &quot;http://www.some.site.com&quot;.  
30319 The first available hostname is displayed in inverse.  This is the
30320 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
30321 the selected hostname via an external application as defined
30322 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30323 variable.
30325 Use the arrow keys (unless you have set the feature 
30326 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30327 to change which of the hostnames displayed in
30328 boldface is the current selection.
30330 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30331 key can be used to select the next web hostname in the message independent
30332 of which portion of the viewed message is currently displayed. The
30333 Ctrl-B key can be used to select the previous web hostnames in the same way.
30335 <UL>   
30336 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30337 </UL><P>
30338 &lt;End of help on this topic&gt;
30339 </BODY>
30340 </HTML>
30341 ====== h_config_enable_view_addresses =====
30342 <HTML>
30343 <HEAD>
30344 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
30345 </HEAD>
30346 <BODY>
30347 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
30349 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30350 Setting this feature causes Alpine to select possible email addresses
30351 from the displayed text and display them in boldface for selection.  
30354 The first available email address is displayed in inverse.  This is the
30355 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
30356 the message composition screen with the To: field filled in with the
30357 selected address.
30359 Use the arrow keys (unless you have set the feature 
30360 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30361 to change which of the hostnames displayed in
30362 boldface is the current selection.
30364 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30365 key can be used to select the next web hostname in the message independent
30366 of which portion of the viewed message is currently displayed. The
30367 Ctrl-B key can be used to select the previous web hostnames in the same way.
30369 <UL>   
30370 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30371 </UL><P>
30372 &lt;End of help on this topic&gt;
30373 </BODY>
30374 </HTML>
30375 ====== h_config_enable_view_arrows =====
30376 <HTML>
30377 <HEAD>
30378 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
30379 </HEAD>
30380 <BODY>
30381 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
30383 This feature modifies Up and Down arrow key behavior in Alpine's
30384 MESSAGE TEXT screen when selectable Attachments, URL's, or
30385 web-hostnames are presented. Alpine's usual behavior is to move to
30386 the next or previous selectable item if currently displayed or
30387 simply to adjust the screen view by one line.
30391 Setting this feature causes the UP and Down arrow key to behave as
30392 if no selectable items were present in the message.
30396 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
30397 item) functionality is unchanged.
30400 &lt;End of help on this topic&gt;
30401 </BODY>
30402 <HTML>
30403 ====== h_config_quell_charset_warning =====
30404 <HTML>
30405 <HEAD>
30406 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
30407 </HEAD>
30408 <BODY>
30409 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
30411 By default, if the message you are viewing contains characters that are
30412 not representable in your
30413 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
30414 then Alpine will
30415 add a warning to the start of the displayed text.
30416 If this option is set, then that editorial message will be suppressed.
30418 Setting this feature also suppresses the comment about the character set
30419 in header lines.
30420 For example, when viewing a message you might see
30422 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
30424 in the From header if your Character-Set is something other than ISO-8859-2.
30425 If you set this feature, the comment about the character set will
30426 no longer be there.
30428 &lt;End of help on this topic&gt;
30429 </BODY>
30430 </HTML>
30431 ====== h_config_quell_host_after_url =====
30432 <HTML>
30433 <HEAD>
30434 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
30435 </HEAD>
30436 <BODY>
30437 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
30439 By default, links in HTML text are displayed with the host the link
30440 references appended, within square brackets, to the link text.  Alpine
30441 does this to help indicate where a link will take you, particularly when
30442 the link text might suggest a different destination.
30445 Setting this feature will prevent the server name from being appended
30446 to the displayed text.
30449 &lt;End of help on this topic&gt;
30450 </BODY>
30451 </HTML>
30452 ====== h_config_prefer_plain_text =====
30453 <HTML>
30454 <HEAD>
30455 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
30456 </HEAD>
30457 <BODY>
30458 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
30460 A message being viewed may contain alternate versions of the same content.
30461 Those alternate versions are supposed to be ordered by the sending software such that the
30462 first alternative is the least preferred and the last alternative is the
30463 most preferred. Alpine will normally display the most-preferred version that
30464 it knows how to display. This is most often encountered where the two
30465 alternate versions are a plain text version and an HTML version, with the
30466 HTML version listed last as the most preferred.
30468 If this option is set, then any plain text version will be preferred to
30469 all other versions.
30471 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
30472 which will temporarily change the sense of this option.
30473 If this option is set you will first see the plain text version of a
30474 message.
30475 If you then type the &quot;A&quot; command, you will see the most preferred version,
30476 most likely HTML, instead.
30477 Typing the &quot;A&quot; command a second time will switch it back.
30478 Alternatively, if the present option is not set you will originally see
30479 the most preferred version of the message and typing &quot;A&quot; will switch to
30480 the plain text version.
30482 &lt;End of help on this topic&gt;
30483 </BODY>
30484 </HTML>
30485 ====== h_config_pass_control =====
30486 <HTML>
30487 <HEAD>
30488 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
30489 </HEAD>
30490 <BODY>
30491 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
30493 It is probably not useful to set this option.
30494 This is a legacy option left behind &quot;just in case&quot;.
30495 Multi-byte characters that have an octet that has the same
30496 value as a control character are permitted through whether or not
30497 this option is turned on.
30499 This feature controls how certain characters contained in messages are
30500 displayed.
30501 If set, all characters in a message will be sent to the
30502 screen. Normally, control characters are displayed as shown below to
30503 avoid a garbled screen and to 
30504 avoid inadvertently changing terminal setup parameters.
30505 Control characters are usually displayed as two character sequences like
30506 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
30507 for Control-C,
30508 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
30509 for ESCAPE,
30510 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
30511 for DELETE, and
30512 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
30513 for the character with value 133 (0x85).
30514 (The DEL character is displayed as ^?, regular control characters are displayed
30515 as the character ^ followed by the character obtained by adding the
30516 five low-order bits of the character to 0x40, and the C1
30517 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
30518 character obtained by adding the
30519 five low-order bits of the character to 0x40.)
30520 Sometimes, in cases where changing a single control character into a
30521 two-character sequence would confuse Alpine's display routines,
30522 a question mark is substituted for the control character.
30524 If you wish to filter out regular control characters but pass the
30525 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30526 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.
30528 &lt;End of help on this topic&gt;
30529 </BODY>
30530 </HTML>
30531 ====== h_config_pass_c1_control =====
30532 <HTML>
30533 <HEAD>
30534 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
30535 </HEAD>
30536 <BODY>
30537 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
30539 It is probably not useful to set this option.
30540 This is a legacy option left behind &quot;just in case&quot;.
30541 Multi-byte characters that have an octet that has the same
30542 value as a control character are permitted through whether or not
30543 this option is turned on.
30545 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30546 is set, then this feature has no effect.
30547 However, if you wish to filter out regular control characters but pass the
30548 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30549 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30550 unset and set this feature.
30552 &lt;End of help on this topic&gt;
30553 </BODY>
30554 </HTML>
30555 ====== h_config_fcc_on_bounce =====
30556 <HTML>
30557 <HEAD>
30558 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
30559 </HEAD>
30560 <BODY>
30561 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
30563 This feature controls an aspect of Alpine's behavior when bouncing a
30564 message. If set, normal FCC ("File Carbon Copy") processing will be
30565 done, just as if you had composed a message to the address you are
30566 bouncing to.  If not set, no FCC of the message will be saved. 
30568 &lt;End of help on this topic&gt;
30569 </BODY>
30570 </HTML>
30571 ====== h_config_show_cursor =====
30572 <HTML>
30573 <HEAD>
30574 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
30575 </HEAD>
30576 <BODY>
30577 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
30579 This feature controls an aspect of Alpine's displays.  If set, the system
30580 cursor will move to convenient locations in the displays.  For example,
30581 to the beginning of the status field of the highlighted index line, or
30582 to the highlighted word after a successful WhereIs command.  It is intended
30583 to draw your attention to an "interesting" spot on the screen.
30585 &lt;End of help on this topic&gt;
30586 </BODY>
30587 </HTML>
30588 ====== h_config_sort_fcc_alpha =====
30589 <HTML>
30590 <HEAD>
30591 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
30592 </HEAD>
30593 <BODY>
30594 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
30596 This feature controls an aspect of Alpine's FOLDER LIST screen.
30597 If set, the default Fcc folder will be sorted alphabetically with the other
30598 folders instead of appearing right after the INBOX.
30600 &lt;End of help on this topic&gt;
30601 </BODY>
30602 </HTML>
30603 ====== h_config_sort_save_alpha =====
30604 <HTML>
30605 <HEAD>
30606 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
30607 </HEAD>
30608 <BODY>
30609 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
30611 This feature controls an aspect of Alpine's FOLDER LIST screen.
30612 If set, the default save folder will be sorted alphabetically with the other
30613 folders instead of appearing right after the INBOX (and default FCC folder).
30615 &lt;End of help on this topic&gt;
30616 </BODY>
30617 </HTML>
30618 ====== h_config_single_list =====
30619 <HTML>
30620 <HEAD>
30621 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
30622 </HEAD>
30623 <BODY>
30624 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
30626 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30627 the folders will be listed one per line instead of several per line
30628 in the FOLDER LIST display.
30630 &lt;End of help on this topic&gt;
30631 </BODY>
30632 </HTML>
30633 ====== h_config_vertical_list =====
30634 <HTML>
30635 <HEAD>
30636 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
30637 </HEAD>
30638 <BODY>
30639 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
30641 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30642 the folders will be listed alphabetically down the columns rather
30643 than across the columns as is the default.
30645 &lt;End of help on this topic&gt;
30646 </BODY>
30647 </HTML>
30648 ====== h_config_verbose_post =====
30649 <HTML>
30650 <HEAD>
30651 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
30652 </HEAD>
30653 <BODY>
30654 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
30655 This feature controls an aspect of Alpine's message sending.  When enabled,
30656 Alpine will send a VERB (i.e., VERBose) command early in the posting process
30657 intended to cause the SMTP server to provide a more detailed account of
30658 the transaction.  This feature is typically only useful to system
30659 administrators and other support personel as an aid in troublshooting
30660 problems.
30662 Note, this feature relies on a specific capability of the system's mail
30663 transport agent or configured 
30664 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
30665 It is possible that this
30666 feature will cause problems for some tranport agents, and may result in
30667 sending failure.  In addition, as the verbose output comes from the mail
30668 transport agent, it is likely to vary from one system to another. 
30669 <P><UL>
30670 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30671 </UL><P>
30672 &lt;End of help on this topic&gt;
30673 </BODY>
30674 </HTML>
30675 ====== h_config_auto_reply_to =====
30676 <HTML>
30677 <HEAD>
30678 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
30679 </HEAD>
30680 <BODY>
30681 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
30683 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
30684 will not prompt when a message being replied to contains a "Reply-To:"
30685 header value, but will simply use its value (as opposed to using the
30686 "From:" field's value).
30690 Note: Using the "Reply-To:" address is usually the preferred behavior,
30691 however, some mailing list managers choose to place the list's address in
30692 the "Reply-To:" field of any message sent out to the list.  In such
30693 cases, this feature makes it all too easy for personal replies to be
30694 inadvertently sent to the entire mail list, so be careful! 
30696 &lt;End of help on this topic&gt;
30697 </BODY>
30698 </HTML>
30699 ====== h_config_del_skips_del =====
30700 <HTML>
30701 <HEAD>
30702 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
30703 </HEAD>
30704 <BODY>
30705 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
30707 This feature controls an aspect of Alpine's Delete command.  If set, this
30708 feature will cause the Delete command to advance past following messages that
30709 are marked deleted.  In other words, pressing "D" will both mark the
30710 current message deleted and advance to the next message that is not marked
30711 deleted.
30712 This feature is set by default.
30714 &lt;End of help on this topic&gt;
30715 </BODY></HTML>
30716 ====== h_config_expunge_manually =====
30717 <HTML>
30718 <HEAD>
30719 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
30720 </HEAD>
30721 <BODY>
30722 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
30724 Normally, when you close a folder that contains deleted messages you are
30725 asked if you want to expunge those messages from the folder permanently.
30726 If this feature is set, you won't be asked and the deleted messages will
30727 remain in the folder.
30728 If you choose to set this feature you will have to expunge the
30729 messages manually using the eXpunge command, which you can use while
30730 in the MESSAGE INDEX screen.
30731 If you do not expunge deleted messages the size of your
30732 folder will continue to increase until you are out of disk space.
30734 <UL>   
30735 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30736 </UL><P>
30737 &lt;End of help on this topic&gt;
30738 </BODY>
30739 </HTML>
30740 ====== h_config_auto_expunge =====
30741 <HTML>
30742 <HEAD>
30743 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
30744 </HEAD>
30745 <BODY>
30746 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
30748 This features controls an aspect of Alpine's eXpunge command.  If set, you
30749 will <B>not</B> be prompted to confirm your intent before the expunge takes 
30750 place.
30751 Actually, this is only true for the INBOX folder and for folders in the
30752 Incoming Folders collection. See the feature
30753 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
30755 <UL>   
30756 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30757 </UL><P>
30758 &lt;End of help on this topic&gt;
30759 </BODY>
30760 </HTML>
30761 ====== h_config_full_auto_expunge =====
30762 <HTML>
30763 <HEAD>
30764 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
30765 </HEAD>
30766 <BODY>
30767 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
30769 This features controls an aspect of Alpine's eXpunge command.  If set, you
30770 will <B>not</B> be prompted to confirm your intent before the expunge 
30771 takes place.  This feature sets this behavior for all folders, unlike the
30772 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
30773 feature that works only for incoming folders.
30775 <UL>   
30776 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30777 </UL><P>
30778 &lt;End of help on this topic&gt;
30779 </BODY>
30780 </HTML>
30781 ====== h_config_auto_read_msgs =====
30782 <HTML>
30783 <HEAD>
30784 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
30785 </HEAD>
30786 <BODY>
30787 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
30788 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
30789 and the 
30790 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
30791 option is also set, then Alpine will
30792 automatically transfer all read messages to the designated folder and mark
30793 them as deleted in the INBOX.  Messages in the INBOX marked with an 
30794 &quot;N&quot; (meaning New, or unseen) are not affected.
30796 <UL>   
30797 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30798 </UL><P>
30799 &lt;End of help on this topic&gt;
30800 </BODY>
30801 </HTML>
30802 ====== h_config_auto_fcc_only =====
30803 <HTML>
30804 <HEAD>
30805 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
30806 </HEAD>
30807 <BODY>
30808 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
30809 This features controls an aspect of Alpine's composer.
30810 The only time this feature will be used is if you attempt to send mail
30811 that has no recipients but does have an Fcc.
30812 Normally, Alpine will ask if you really mean to copy the message only to
30813 the Fcc.
30814 That is, it asks if you really meant to have no recipients.
30815 If this feature is set, you
30816 will <B>not</B> be prompted to confirm your intent to make only a copy
30817 of a message with no recipients.
30819 This feature is closely related to
30820 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
30821 The difference between this feature and that feature is that this feature
30822 considers a Bcc to be a recipient while that feature will ask for confirmation
30823 even if there is a Bcc when there is no To, Cc, or Newsgroup.
30824 The default values also differ. This feature defaults to asking the question
30825 and you have to turn it off.
30826 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
30827 unless you turn it on.
30830 <UL>   
30831 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30832 </UL><P>
30833 &lt;End of help on this topic&gt;
30834 </BODY>
30835 </HTML>
30836 ====== h_config_mark_fcc_seen =====
30837 <HTML>
30838 <HEAD>
30839 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
30840 </HEAD>
30841 <BODY>
30842 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
30844 This features controls the way Fccs (File carbon copies) are
30845 made of the messages you send.
30848 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
30849 copy will be marked as Unseen.
30850 When you look at the folder it was saved in the message will appear to
30851 be a New message until you read it.
30852 When this feature is enabled, the message will be marked as having
30853 been Seen.
30856 <UL>   
30857 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30858 </UL><P>
30859 &lt;End of help on this topic&gt;
30860 </BODY>
30861 </HTML>
30862 ====== h_config_no_fcc_attach =====
30863 <HTML>
30864 <HEAD>
30865 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
30866 </HEAD>
30867 <BODY>
30868 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
30870 This features controls the way Fcc's (File carbon copies) are
30871 made of the messages you send.
30874 Normally, Alpine saves an exact copy of your message as it was sent.
30875 When this feature is enabled, the &quot;body&quot; of the message
30876 you send (the text you type in the composer) is preserved in the 
30877 copy as before, however all attachments are replaced with text
30878 explaining what had been sent rather than the attachments themselves.
30881 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
30882 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
30883 allows you to interactively set whether or not attachments are saved
30884 to the Fcc'd copy.
30887 <UL>   
30888 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30889 </UL><P>
30890 &lt;End of help on this topic&gt;
30891 </BODY>
30892 </HTML>
30893 ====== h_config_read_in_newsrc_order =====
30894 <HTML>
30895 <HEAD>
30896 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
30897 </HEAD>
30898 <BODY>
30899 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
30901 This feature controls the order in which newsgroups will be presented.  If
30902 set, they will be presented in the same order as they occur in your 
30903 <!--chtml if pinemode="os_windows"-->
30904 &quot;NEWSRC&quot;
30905 <!--chtml else-->
30906 &quot;.newsrc&quot;
30907 <!--chtml endif-->
30908 file (the default location of which can be changed with the 
30909 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
30911 If not set, the newsgroups will be presented in alphabetical order.
30913 <UL>   
30914 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30915 </UL><P>
30916 &lt;End of help on this topic&gt;
30917 </BODY>
30918 </HTML>
30919 ====== h_config_quell_tz_comment =====
30920 <HTML>
30921 <HEAD>
30922 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
30923 </HEAD>
30924 <BODY>
30925 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
30927 Normally, when Alpine generates a Date header for outgoing mail,
30928 it will try to include the symbolic timezone at the end of the
30929 header inside parentheses.
30930 The symbolic timezone is often three characters long, but on
30931 some operating systems, it may be longer.
30932 Apparently there are some SMTP servers in the world that will reject an
30933 incoming message if it has a Date header longer than about 80 characters.
30934 If this feature is set, the symbolic timezone normally generated by
30935 Alpine will not be included.
30936 You probably don't need to worry about this feature unless you run into
30937 the problem described above.
30940 &lt;End of help on this topic&gt;
30941 </BODY>
30942 </HTML>
30943 ====== h_config_post_wo_validation =====
30944 <HTML>
30945 <HEAD>
30946 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
30947 </HEAD>
30948 <BODY>
30949 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
30951 This feature controls whether the NNTP server is queried as newsgroups
30952 are entered for posting.  Validation over slow links (e.g. dialup using
30953 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
30955 &lt;End of help on this topic&gt;
30956 </BODY>
30957 </HTML>
30958 ====== h_config_send_wo_confirm =====
30959 <HTML>
30960 <HEAD>
30961 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
30962 </HEAD>
30963 <BODY>
30964 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
30966 By default, when you send or post a message you will be asked to confirm
30967 with a question that looks something like:
30970 <CENTER><SAMP>Send message?</SAMP></CENTER>
30973 If this feature is set, you
30974 will <B>not</B> be prompted to confirm your intent to send
30975 and your message will be sent.
30977 If this feature is set it disables some possibilities and renders some
30978 other features meaningless.
30979 You will not be able to use
30980 <A HREF="h_config_sending_filter">Sending Filters</A>,
30981 Verbose sending mode,
30982 <A HREF="h_config_compose_bg_post">Background Sending</A>,
30983 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
30984 or ^V to turn off the generation of flowed text for this message.
30985 These options are normally available as suboptions in the Send prompt, but
30986 with no Send prompt the options are gone.
30989 A somewhat related feature is
30990 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
30991 which may be used to eliminate the extra confirmation
30992 question when posting to a newsgroup.
30994 <UL>   
30995 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30996 </UL><P>
30997 &lt;End of help on this topic&gt;
30998 </BODY>
30999 </HTML>
31000 ====== h_config_quell_filtering_done_message =====
31001 <HTML>
31002 <HEAD>
31003 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
31004 </HEAD>
31005 <BODY>
31006 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
31008 If you use Filter Rules that move messages or set status of messages
31009 you sometimes see a message from Alpine that looks like
31012 <CENTER><SAMP>filtering done</SAMP></CENTER>
31015 If this feature is set, this message will be suppressed.
31016 If the feature
31017 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
31018 is set then this message will be suppressed regardless.
31021 <UL>   
31022 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31023 </UL><P>
31024 &lt;End of help on this topic&gt;
31025 </BODY>
31026 </HTML>
31027 ====== h_config_quell_filtering_messages =====
31028 <HTML>
31029 <HEAD>
31030 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
31031 </HEAD>
31032 <BODY>
31033 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
31035 If you use Filter Rules that move messages or set status of messages
31036 you sometimes see messages from Alpine that look like
31039 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
31045 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
31051 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
31054 If this feature is set, these messages will be suppressed.
31055 The feature
31056 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
31057 is related.
31060 <UL>   
31061 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31062 </UL><P>
31063 &lt;End of help on this topic&gt;
31064 </BODY>
31065 </HTML>
31066 ====== h_config_quell_post_prompt =====
31067 <HTML>
31068 <HEAD>
31069 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
31070 </HEAD>
31071 <BODY>
31072 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
31074 By default, when you post a message to a newsgroup you are asked to confirm
31075 that you want to post with the question
31078 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
31081 If this feature is set, you
31082 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
31083 and your message will be posted.
31086 <UL>   
31087 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31088 </UL><P>
31089 &lt;End of help on this topic&gt;
31090 </BODY>
31091 </HTML>
31092 ====== h_config_check_mail_onquit =====
31093 <HTML>
31094 <HEAD>
31095 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
31096 </HEAD>
31097 <BODY>
31098 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
31100 If this feature is set, Alpine will check for new mail after you give the
31101 Quit command.
31102 If new mail has arrived since the previous check, you will be notified
31103 and given the choice of quitting or not quitting.
31105 <UL>   
31106 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31107 </UL><P>
31108 &lt;End of help on this topic&gt;
31109 </BODY>
31110 </HTML>
31111 ====== h_config_inbox_no_confirm =====
31112 <HTML>
31113 <HEAD>
31114 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
31115 </HEAD>
31116 <BODY>
31117 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
31119 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
31120 command and there are no more folders or newsgroups to visit, you are asked
31121 if you want to return to the INBOX.
31122 If this feature is set you will not be asked.
31123 It will be assumed that you do want to return to the INBOX.
31125 <UL>   
31126 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31127 </UL><P>
31128 &lt;End of help on this topic&gt;
31129 </BODY>
31130 </HTML>
31131 ====== h_config_dates_to_local =====
31132 <HTML>
31133 <HEAD>
31134 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
31135 </HEAD>
31136 <BODY>
31137 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
31139 Normally, the message dates that you see in the
31140 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
31141 For example, if a message was sent to you from a few timezones to the east
31142 it might appear that it was sent from the future;
31143 or if it was sent from somewhere to the west it might appear
31144 as if it is from yesterday even though it was sent only a few minutes ago.
31145 If this feature is set an attempt will be made to convert the dates
31146 to your local timezone to be displayed.
31148 Note that this does not affect the results of Select by Date or of
31149 anything else other than these displayed dates.
31150 When viewing the message you may look at the original unconverted value of the Date
31151 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
31153 <UL>   
31154 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31155 </UL><P>
31156 &lt;End of help on this topic&gt;
31157 </BODY>
31158 </HTML>
31159 ====== h_config_tab_no_prompt =====
31160 <HTML>
31161 <HEAD>
31162 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
31163 </HEAD>
31164 <BODY>
31165 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
31167 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
31168 command and there is a problem checking a folder, you are asked
31169 whether you want to continue with the search in the following folder or not.
31170 This question gives you a chance to stop the NextNew processing.
31171 (The checking problem might be caused by the fact that the folder does not
31172 exist, or by an authentication problem, or by a server problem
31173 of some sort.)
31176 If this feature is set you will not be asked.
31177 It will be assumed that you do want to continue.
31179 <UL>   
31180 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31181 </UL><P>
31182 &lt;End of help on this topic&gt;
31183 </BODY>
31184 </HTML>
31185 ====== h_config_input_history =====
31186 <HTML>
31187 <HEAD>
31188 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
31189 </HEAD>
31190 <BODY>
31191 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
31193 Many of the prompts that ask for input in the status line near the
31194 bottom of the screen will respond to Up Arrow and Down Arrow
31195 with the history of previous entries.
31196 For example, in the MESSAGE INDEX screen when you use the WhereIs
31197 command the text you entered will be remembered and can be recalled
31198 by using the Up Arrow key.
31199 Another example, when saving a message the folders saved to will
31200 be remembered and can be recalled using the arrow keys.
31202 In the Save prompt, some users prefer that the Up and Down arrow keys
31203 be used for the Previous Collection and Next Collection commands
31204 instead of for a history of previous saves.
31205 If this option is set the Up and Down arrow keys will become synonyms for the
31206 Previous Collection and Next Collection (^P and ^N) commands in the
31207 prompt for the name of a folder to Save to or in the prompt for the
31208 name of a folder to GoTo.
31209 When this feature is not set (the default), ^P and ^N will change the
31210 collection and the arrow keys will show the history.
31212 <UL>   
31213 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31214 </UL><P>
31215 &lt;End of help on this topic&gt;
31216 </BODY>
31217 </HTML>
31218 ====== h_config_confirm_role =====
31219 <HTML>
31220 <HEAD>
31221 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
31222 </HEAD>
31223 <BODY>
31224 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
31226 If you have roles, when you Reply to or Forward a message, or Compose
31227 a new message, Alpine
31228 will search through your roles for one that matches.
31229 Normally, if no matches are found you will be placed into the composer
31230 with no opportunity to select a role.
31231 If this feature is set, then you will be asked to confirm that you don't
31232 want a role.
31233 This will give you the opportunity to select a role (with the ^T command).
31234 If you confirm no role with a Return, you will be placed in
31235 the composer with no role.
31236 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
31237 These behave the same as if you pressed the Return.
31238 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
31239 match what you might type if there was a role match.)
31241 If you are using the alternate form of the Compose command called
31242 &quot;Role&quot;, then all of your roles will be available to you,
31243 independent of the value of this feauture and of the values set for all of
31244 Reply Use, Forward Use, and Compose Use.
31246 <UL>   
31247 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31248 </UL><P>
31249 &lt;End of help on this topic&gt;
31250 </BODY>
31251 </HTML>
31252 ====== h_config_news_cross_deletes =====
31253 <HTML>
31254 <HEAD>
31255 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
31256 </HEAD>
31257 <BODY>
31258 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
31260 This feature controls what Alpine does when you delete a message in a
31261 newsgroup that appears in more than one newsgroup.  Such a message
31262 is sometimes termed a &quot;crossposting&quot; in that it was posted
31263 across several newsgroups.
31266 Alpine's default behavior when you delete such a message is to remove
31267 only the copy in the current newsgroup from view when you use the
31268 &quot;Exclude&quot; command or the next time you visit the newsgroup.
31271 Enabling this feature causes Alpine to remove every occurrence of the
31272 message from all newsgroups it appears in and to which you are
31273 subscribed.
31276 NOTE: As currently implemented, enabling this feature may increase the
31277 time it takes the Expunge command and newsgroup closing to complete.
31280 <UL>   
31281 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31282 </UL><P>
31283 &lt;End of help on this topic&gt;
31284 </BODY>
31285 </HTML>
31286 ====== h_config_news_catchup =====
31287 <HTML>
31288 <HEAD>
31289 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
31290 </HEAD>
31291 <BODY>
31292 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
31294 This feature controls what Alpine does as it closes a newsgroup.
31295 When set, Alpine will offer to delete all messages from the newsgroup
31296 as you are quitting Alpine or opening a new folder.
31299 This feature is useful if you typically read all the interesting messages
31300 in a newsgroup each time you open it.  This feature saves you from
31301 having to delete each message in a newsgroup as you read it or from
31302 selecting all the messages and doing an
31303 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
31304 move on to the next folder or newsgroup.
31307 <UL>   
31308 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31309 </UL><P>
31310 &lt;End of help on this topic&gt;
31311 </BODY>
31312 </HTML>
31313 ====== h_config_next_thrd_wo_confirm =====
31314 <HTML>
31315 <HEAD>
31316 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
31317 </HEAD>
31318 <BODY>
31319 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
31321 This feature controls an aspect of Alpine's Next and Prev commands in
31322 the case where you are using one of the
31323 &quot;separate-index-screen&quot; styles for the configuration option
31324 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
31325 and currently have the folder sorted by a Threaded or OrderedSubject sort.
31326 When you are Viewing a particular thread you have a
31327 MESSAGE INDEX of only the messages in that thread.
31328 If you press the Next command with the last message in the thread highlighted
31329 you will normally be asked if you want to &quot;View next thread?&quot;,
31330 assuming there is a next thread to view.
31331 If this feature is set it will be assumed that you always want to view the
31332 next thread and you won't be asked to confirm that.
31333 Similarly, if the first message of the thread is highlighted and you
31334 press the Prev command, this feature will prevent the question
31335 &quot;View previous thread&quot;.
31337 This feature only has an effect in the MESSAGE INDEX screen.
31338 If you then view a particular message from that screen and press the
31339 Next command, you will be sent to the next thread without being asked,
31340 independent of the setting of this feature.
31342 The feature
31343 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
31345 &lt;End of help on this topic&gt;
31346 </BODY>
31347 </HTML>
31348 ====== h_config_kw_braces =====
31349 <HTML>
31350 <HEAD>
31351 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
31352 </HEAD>
31353 <BODY>
31354 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
31356 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
31357 TEXT screens.
31358 If you have modified the
31359 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31360 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
31361 are used to display keywords or their initials along with the Subject; then
31362 this option may be used to modify the resulting display slightly.
31363 By default, the keywords or initials displayed for these tokens will be
31364 surrounded with curly braces ({ and }) and a trailing space.
31365 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
31366 a message, the &quot;SUBJKEY&quot; token will normally look like
31368 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
31370 and the SUBJKEYINIT token would look like
31372 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
31374 The default character before the keywords is the left brace ({) and the
31375 default after the keywords is the right brace followed by a space (} ).
31377 This option allows you to change that.
31378 You should set it to two values separated by a space.
31379 The values may be quoted if they include space characters.
31380 So, for example, the default value could be specified explicitly by setting this
31381 option to
31383 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
31385 The first part wouldn't need to be quoted (but it doesn't hurt).
31386 The second part does need the quotes because it includes a space character.
31387 If you wanted to change the braces to brackets you could use
31389 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
31391 Inside the quotes you can use backslash quote to mean quote, so
31393 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
31395 would produce
31397 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
31399 It is also possible to color keywords in the index using the
31400 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
31402 It is not possible to change the fact that a space character is used to
31403 separate the keywords if more than one keyword is set for a message.
31404 It is also not possible to change the fact that there are no separators
31405 between the keyword initials if more than one keyword is set.
31407 &lt;End of help on this topic&gt;
31408 </BODY>
31409 </HTML>
31410 ====== h_config_opening_sep =====
31411 <HTML>
31412 <HEAD>
31413 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
31414 </HEAD>
31415 <BODY>
31416 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
31418 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
31419 With some setups the text of the subject is followed
31420 by the opening text of the message if there is any room available in the index line.
31421 If you have configured your
31422 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31423 to include one of the Subject tokens that causes this behavior
31424 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
31425 to modify what is displayed slightly.
31426 By default, the Subject is separated from the opening text of the message by
31427 the three characters space dash space;
31429 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
31431 Use this option to set it to something different.
31432 The value must be quoted if it includes any space characters.
31433 For example, the default value could be specified explicitly by setting this
31434 option to
31436 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
31438 &lt;End of help on this topic&gt;
31439 </BODY>
31440 </HTML>
31441 ====== h_config_select_wo_confirm =====
31442 <HTML>
31443 <HEAD>
31444 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
31445 </HEAD>
31446 <BODY>
31447 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
31449 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
31450 These commands all take text input to specify the name of the folder or
31451 file to be used, but allow you to press ^T for a list of possible names.
31452 If set, the selected name will be used immediately, without further
31453 opportunity to confirm or edit the name.
31455 Some related help topics are
31456 <UL>
31457 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
31458 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
31459 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
31460 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
31461 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
31462 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
31463 </UL>
31465 &lt;End of help on this topic&gt;
31466 </BODY>
31467 </HTML>
31468 ====== h_config_save_part_wo_confirm =====
31469 <HTML>
31470 <HEAD>
31471 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
31472 </HEAD>
31473 <BODY>
31474 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
31476 This feature controls an aspect of Alpine's Save command.
31477 By default, when you Save a message that has some deleted parts, you will
31478 be asked to confirm that you want to Save with a prompt that looks like:
31480 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
31482 If this feature is set, you will not be asked.
31484 &lt;End of help on this topic&gt;
31485 </BODY>
31486 </HTML>
31487 ====== h_config_use_resentto =====
31488 <HTML>
31489 <HEAD>
31490 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
31491 </HEAD>
31492 <BODY>
31493 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
31495 This feature is turned off by default because turning it on causes problems
31496 with some deficient IMAP servers.
31497 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
31498 <A HREF="h_rule_patterns">Pattern</A>
31499 contains a To header pattern and this feature is turned on,
31500 then a check is made in the message to see
31501 if a Resent-To header is present, and that is used instead of the To header.
31502 If this feature is not turned on, then the regular To header will always
31503 be used.
31506 &lt;End of help on this topic&gt;
31507 </BODY>
31508 </HTML>
31509 ====== h_config_use_reg_start_for_stayopen =====
31510 <HTML>
31511 <HEAD>
31512 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
31513 </HEAD>
31514 <BODY>
31515 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
31517 This feature affects which message is selected as the current message
31518 when you enter a
31519 <A HREF="h_config_permlocked">Stay Open</A> folder.
31521 Normally, the starting position for an incoming folder (which most Stay Open
31522 folders will likely be) is controlled by the
31523 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
31524 However, if a folder is a Stay Open folder, when you re-enter the folder
31525 after the first time the current message will be the same as it was when
31526 you left the folder.
31527 An exception is made if you use the TAB command to get to the folder.
31528 In that case, the message number will be incremented by one from what it
31529 was when you left the folder.
31531 The above special behavior is thought to be useful.
31532 However, it is special and different from what you might at first expect.
31533 If this feature is set, then Stay Open folders will not be treated specially
31534 as far as the startup rule is concerned.
31537 &lt;End of help on this topic&gt;
31538 </BODY>
31539 </HTML>
31540 ====== h_config_use_current_dir =====
31541 <HTML>
31542 <HEAD>
31543 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
31544 </HEAD>
31545 <BODY>
31546 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
31548 This feature controls an aspect of several commands. 
31549 If set, your &quot;current working directory&quot; 
31550 <!--chtml if pinemode="running"-->
31551 (which, at least for your current Alpine &quot;session,&quot; 
31552 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
31553 <!--chtml endif-->
31554 will be used instead of your home directory 
31555 <!--chtml if pinemode="running"-->
31556 (which, in the present configuration of your system, is
31557  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
31558 <!--chtml endif-->
31559 for all of the following operations:<UL>
31560     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
31561     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
31562     <LI> <!--chtml if pinemode="function_key"-->F4
31563          <!--chtml else-->Ctrl-R
31564          <!--chtml endif--> file inclusion in the COMPOSER
31565     <LI> <!--chtml if pinemode="function_key"-->F5
31566          <!--chtml else-->Ctrl-J
31567          <!--chtml endif--> file attachment in the COMPOSER
31568 </UL>
31569 <!--chtml if pinemode="os_windows"-->
31571 If you are starting PC-Alpine from a desktop icon or the Start menu, 
31572 you can set the &quot;current drive&quot; 
31573 by specifying it in the &quot;Start in:&quot; 
31574 box found in the Shortcut tab of the Properties.  
31575 <!--chtml endif-->
31577 <UL>   
31578 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31579 </UL>
31582 &lt;End of help on this topic&gt;
31583 </BODY>
31584 </HTML>
31585 ====== h_config_save_wont_delete =====
31586 <HTML>
31587 <HEAD>
31588 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
31589 </HEAD>
31590 <BODY>
31591 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
31593 This feature controls one aspect of the Save command.  If set, Save will
31594 not mark the message &quot;deleted&quot; (its default behavior) after
31595 it has been copied to the designated folder.
31598 &lt;End of help on this topic&gt;
31599 </BODY>
31600 </HTML>
31601 ====== h_config_use_boring_spinner =====
31602 <HTML>
31603 <HEAD>
31604 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
31605 </HEAD>
31606 <BODY>
31607 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
31609 When Alpine is delayed for some reason it usually shows that
31610 something is happening with a small animated display in the status
31611 message line near the bottom of the screen.
31612 Setting this feature will cause that animation to be the same
31613 each time instead of having Alpine choose a random animation.
31614 You may turn the animation off altogether by setting the
31615 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
31616 option to zero.
31619 &lt;End of help on this topic&gt;
31620 </BODY>
31621 </HTML>
31622 ====== h_config_unsel_wont_advance =====
31623 <HTML>
31624 <HEAD>
31625 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
31626 </HEAD>
31627 <BODY>
31628 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
31630 This feature controls one aspect of the Unselect Current message command.
31631 Normally, when the Unselect current message command (:) is typed when the
31632 current message is selected, the message will be unselected and the next
31633 message will become the current message.
31634 If this feature is set, the cursor will not advance to the next message.
31635 Instead, the current message will remain the current message after
31636 unselecting.
31639 &lt;End of help on this topic&gt;
31640 </BODY>
31641 </HTML>
31642 ====== h_config_prune_uses_iso =====
31643 <HTML>
31644 <HEAD>
31645 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
31646 </HEAD>
31647 <BODY>
31648 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
31650 By default, Alpine asks monthly whether or not you would like to rename
31651 some folders to a new name containing the date.
31652 It also asks whether or not you would like to delete some old folders.
31653 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
31654 explanation.
31657 By default, the name used when renaming a folder looks like
31659 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
31661 For example, the first time you run Alpine in May of 2004,
31662 the folder &quot;sent-mail&quot; might be renamed to
31664 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
31666 If this feature is set, the name used will be of the form
31668 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
31670 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
31671 month (01, 02, ..., 12).
31672 For the April, 2004 example above, it would instead be
31674 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
31676 because April is the 4th month of the year.
31677 A reason you might want to set this feature is so that the folders
31678 will sort in chronological order.
31681 &lt;End of help on this topic&gt;
31682 </BODY>
31683 </HTML>
31684 ====== h_config_save_advances =====
31685 <HTML>
31686 <HEAD>
31687 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
31688 </HEAD>
31689 <BODY>
31690 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
31692 This feature controls one aspect of the Save command.  If set, Save will
31693 (in addition to copying the current message to the designated folder) also
31694 advance to the next message.
31697 &lt;End of help on this topic&gt;
31698 </BODY>
31699 </HTML>
31700 ====== h_config_force_arrow =====
31701 <HTML>
31702 <HEAD>
31703 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
31704 </HEAD>
31705 <BODY>
31706 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
31708 This feature affects Alpine's MESSAGE INDEX display routine.
31709 If set, the normal inverse-video cursor will be
31710 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
31711 second column of the index display.
31713 This is the same index cursor you get if you turn on
31714 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
31715 line coloring will still be present if this feature is turned on and
31716 <!--#echo var="FEAT_assume-slow-link"--> is off.
31718 An alternative version of the Arrow cursor is available by including the
31719 <A HREF="h_config_index_arrow_color">ARROW</A>
31720 token in the
31721 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31723 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
31724 but that is not implemented.
31727 &lt;End of help on this topic&gt;
31728 </BODY>
31729 </HTML>
31730 ====== h_config_ignore_size =====
31731 <HTML>
31732 <HEAD>
31733 <TITLE>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></TITLE>
31734 </HEAD>
31735 <BODY>
31736 <H1>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></H1>
31738 When you have an account residing in an IMAP server, Alpine records the 
31739 size of each message as reported by the server. However, when Alpine saves 
31740 a message in such IMAP server, Alpine will compute the size of the message 
31741 independently, from the data it received. If these two numbers do not 
31742 match for a message, Alpine asks you if you still want to take the risk of 
31743 saving such message, since data corruption or loss of data could result 
31744 from this save.
31747 Sometimes the root of this problem is that the IMAP server does not 
31748 compute sizes correctly, and there will not be loss of information when 
31749 saving such message. Enabling this feature will make Alpine ignore such 
31750 error and continue saving the message without producing any warnings or 
31751 ever stopping the process, as if there had not been any error. This option 
31752 applies to all IMAP servers that you use, so if you enable this feature, 
31753 size discrepancy warnings will not be given for any IMAP server you 
31754 connect to.
31757 Example of a server where you could reproduce this problem is the Gmail 
31758 IMAP server. Another example can be found in some versions of the Exchange 
31759 server.
31762 It is recommended that this feature be disabled most of the time and only 
31763 enabled when you find a server which you can determine that has the above 
31764 mentioned defect, but be disabled again after making the save operation 
31765 succeed.
31768 &lt;End of help on this topic&gt;
31769 </BODY>
31770 </HTML>
31771 ====== h_config_force_low_speed =====
31772 <HTML>
31773 <HEAD>
31774 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
31775 </HEAD>
31776 <BODY>
31777 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
31779 UNIX Alpine only.
31781 This feature affects Alpine's display routines.  If set, the normal
31782 inverse-video cursor (used to highlight the current item in a list) will be
31783 replaced by an &quot;arrow&quot; cursor and other
31784 screen update optimizations for
31785 low-speed links (e.g. 2400 bps dialup connections) will be activated.
31786 One of the optimizations is that colored index lines (set up with Indexcolor
31787 Rules) will not be colored.
31788 If you are just turning this feature on because you like using
31789 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
31790 coloring by turning this feature off and the
31791 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
31794 &lt;End of help on this topic&gt;
31795 </BODY>
31796 </HTML>
31797 ====== h_config_show_delay_cue =====
31798 <HTML>
31799 <HEAD>
31800 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
31801 </HEAD>
31802 <BODY>
31803 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
31805 If set, this feature will cause an asterisk to appear in the upper
31806 left-hand corner of the screen whenever Alpine checks for new mail.
31807 Two asterisks whenever Alpine saves (checkpoints) the state of the current
31808 mailbox to disk.
31810 <!--chtml if pinemode="os_windows"-->
31812 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
31813 it is trying to open a network connection (e.g, to open your INBOX
31814 on an IMAP
31815 server) or read from the network connection.  A greater-than symbol,
31816 will be displayed when PC-Alpine is trying to write to the network
31817 connection (e.g, sending a command to your IMAP server).
31818 <!--chtml endif-->
31821 &lt;End of help on this topic&gt;
31822 </BODY>
31823 </HTML>
31824 ====== h_config_color_style =====
31825 <HTML>
31826 <HEAD>
31827 <TITLE>OPTION: Color Style</TITLE>
31828 </HEAD>
31829 <BODY>
31830 <H1>OPTION: Color Style</H1>
31832 UNIX Alpine only.
31834 If the terminal or terminal emulator you are using is capable of displaying
31835 colors, this option controls whether or not color will be used in Alpine.
31836 If you turn color on and things are set up correctly,
31837 you should see color appear on the screen immmediately.
31838 Modern terminal emulators are usually capable of displaying colors.
31840 The available options include:
31843 <DL>
31844 <DT>no-color</DT>
31845 <DD>Don't use color.
31846 </DD>
31848 <DT>use-termdef</DT>
31849 <DD>In order to decide if your terminal is capable of color, Alpine looks in
31850 the terminal capabilities database, TERMINFO or TERMCAP, depending on
31851 how Alpine was compiled.
31852 This is a good option to choose if you switch between a color and a non-color
31853 terminal with the same Alpine configuration.
31854 Alpine will know to use color on the color terminal because it is described
31855 in the termcap entry, and Alpine will know to use black and white on the
31856 non-color terminal.
31857 The Alpine Technical Notes
31858 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/tech-notes/">http://www.washington.edu/alpine/tech-notes/</A></SAMP></CENTER>
31859 have more information on configuring a TERMCAP or TERMINFO
31860 entry for color Alpine.
31861 This is usually something a system administrator does.
31862 </DD>
31864 <DT>force-ansi-8color</DT>
31865 <DD>This is probably the setting that most people should use.
31866 Because setting up a termcap entry is confusing and because the
31867 terminal capabilities database is often not correctly configured for color,
31868 this choice and the next may be easier for you to use.
31869 If your terminal emulator responds to ANSI color escape sequences, which
31870 many do, this option will cause Alpine to believe your terminal will respond
31871 to the escape sequences that produce eight different foreground and background
31872 colors.
31873 The escape sequences used to set the foreground colors are
31875   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31877 where the color_number is an ASCII digit between 0 and 7.
31878 The numbers 0 through 7 should correspond to the colors black, red, green,
31879 yellow, blue, magenta, cyan, and white.
31880 Some terminal emulators use a pre-ANSI scheme that swaps
31881 the colors blue and red and the colors yellow and cyan.
31882 This will cause the default colors to be different, but other than that
31883 things should work fine.
31884 There is also a 9th color available, the last one shown, which is the default
31885 color from the terminal emulator.
31886 When used as a background color some people refer to this color as
31887 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
31888 shown in the color swatch of the SETUP COLOR screen.
31889 The foreground transparent color is shown as
31890 the color of the &quot;TRAN&quot; text.
31891 (The transparent color will not work correctly in a PC-Alpine configuration.)
31892 The escape sequences used to set the background colors are the same
31893 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
31894 The escape sequences for foreground and background default colors (transparent)
31895 are 39m and 49m.
31897 Note: With the Tera Term terminal emulator this setting works well.
31898 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
31899 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
31900 menu, in the &quot;Window&quot; submenu.
31901 </DD>
31903 <DT>force-ansi-16color</DT>
31904 <DD>Many terminal emulators know about the same eight colors above
31905 plus eight more.
31906 This option attempts to use all 16 colors.
31907 The same escape sequences as for the eight-color terminal are used
31908 for the first eight colors.
31909 The escape sequences used to set foreground colors 8-15 are the same as
31910 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
31911 The background color sequences for colors 8-15 are the same as for 0-7
31912 except the &quot;4&quot; is replaced with &quot;10&quot;.
31913 You can tell if the 16 colors are working by turning on this option
31914 and then going into one of the color configuration screens, for example,
31915 the configuration screen for Normal Color.
31916 If you see 16 different colors to select from (plus a 17th for
31917 the transparent color), it's working.
31918 </DD>
31920 <DT>force-xterm-256color</DT>
31921 <DD>Some versions of xterm (and some other terminal emulators)
31922 have support for 256 colors.
31923 The escape sequences used to set the foreground colors are
31925   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
31927 where the color_number is an ASCII digit between 0 and 255.
31928 Background colors are the same with the 38 replaced with a 48.
31929 The numbers 0 through 15 are probably similar to the 16 color version
31930 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
31931 The terminal default (transparent) color is the 257th color at the bottom.
31932 Some terminal emulators will misinterpret these escape sequences causing
31933 the terminal to blink or overstrike characters or to do something else
31934 undesirable.
31936 The PuTTY terminal emulator has an option called &quot;Allow terminal to
31937 use xterm 256-colour mode&quot; which allows PuTTY to work well with
31938 this 256-color setting.
31940 </DD>
31941 </DL>
31944 The normal default is &quot;no-color&quot;.
31947 Once you've turned on color you may set the
31948 colors of many objects on the screen individually.
31949 For example, you may add colors to the status letters on the MESSAGE
31950 INDEX page.
31951 Most categories of color that Alpine supports are configurable here.
31952 For example, &quot;Normal Color&quot;
31953 is the color used to display most of the text in Alpine, and
31954 &quot;Reverse Color&quot; is used to display highlighted text, such as the
31955 current message in the MESSAGE INDEX.
31957 Lines in the MESSAGE INDEX may also be colored.
31958 Use Setup Rules to get to the Indexcolor configuration screen.
31961 <UL>   
31962 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31963 </UL><P>
31964 &lt;End of help on this topic&gt;
31965 </BODY>
31966 </HTML>
31967 ====== h_config_disable_index_locale_dates =====
31968 <HTML>
31969 <HEAD>
31970 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
31971 </HEAD>
31972 <BODY>
31973 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
31975 This feature affects the display of dates in the MESSAGE INDEX.
31976 Normally an attempt is made to localize the dates
31977 used in the MESSAGE INDEX display to your locale.
31978 This is controlled with the
31979 LC_TIME locale setting on a UNIX system.
31980 On Windows the Regional Options control panel may be used to set the date format.
31981 At the programming level, Alpine is using the strftime routine
31982 to print the parts of a date.
31984 If this feature is set, dates are displayed in English and
31985 with the conventions of the United States.
31988 <UL>   
31989 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31990 </UL><P>
31991 &lt;End of help on this topic&gt;
31992 </BODY>
31993 </HTML>
31994 ====== h_config_auto_open_unread =====
31995 <HTML>
31996 <HEAD>
31997 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
31998 </HEAD>
31999 <BODY>
32000 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
32002 This feature controls the behavior of the TAB key when traversing folders
32003 in the optional 
32004 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
32005 collection or in optional <!--#echo var="VAR_news-collections"-->.
32007 When the TAB
32008 (<A HREF="h_common_nextnew">NextNew</A>)
32009 key is pressed, and there
32010 are no more unseen messages in the current (incoming message or news)
32011 folder, Alpine will search the list of folders in the current collection for
32012 one containing New or Recent (new since the last time the folder was
32013 opened) messages.
32014 This behavior may be modified slightly with the
32015 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
32016 feature that causes Alpine to look for Unseen messages instead of Recent
32017 messages.
32018 Normally, when such a folder is found, Alpine will ask
32019 whether you wish to open the folder.  If this feature is set, Alpine will
32020 automatically open the folder without prompting.
32022 This feature also affects some other similar situations.
32023 If you have a
32024 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
32025 that is equal to one of the &quot;separate-&quot; values, and you are
32026 viewing a thread; then when you type the NextNew command and are at the
32027 end of the current thread you will automatically go to the next thread
32028 if this feature is set.
32029 By default, you would be asked if you want to view the next thread.
32030 You will also be asked at times whether or not you want to view the next
32031 thread after you delete the last message in the thread.
32032 Setting this feature will also cause that question to be skipped.
32035 <UL>   
32036 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32037 </UL><P>
32038 &lt;End of help on this topic&gt;
32039 </BODY>
32040 </HTML>
32041 ====== h_config_auto_include_reply =====
32042 <HTML>
32043 <HEAD>
32044 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
32045 </HEAD>
32046 <BODY>
32047 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
32049 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
32050 will ask whether you wish to include the original message in your reply.
32051 If this feature is set and the feature
32052 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
32053 is <EM>not</EM> set, then the original message will be included in the reply
32054 automatically, without prompting.
32056 &lt;End of help on this topic&gt;
32057 </BODY>
32058 </HTML>
32059 ====== h_config_select_in_bold =====
32060 <HTML>
32061 <HEAD>
32062 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
32063 </HEAD>
32064 <BODY>
32065 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
32067 This feature controls an aspect of Alpine's 
32068 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
32069 commands; in
32070 particular, the Select and WhereIs commands. Select and WhereIs (with the
32071 ^X subcommand) will search the current folder for messages meeting a
32072 specified criteria, and &quot;tag&quot; the resulting messages with an 
32073 &quot;X&quot; in the
32074 first column of the applicable lines in the MESSAGE INDEX.  If this feature
32075 is set, instead of using the &quot;X&quot; to denote a selected message, 
32076 Alpine will
32077 attempt to display those index lines in boldface. Whether this is
32078 preferable to the &quot;X&quot; will depend on personal taste and the type of
32079 terminal being used.
32081 <UL>   
32082 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32083 </UL><P>
32084 &lt;End of help on this topic&gt;
32085 </BODY>
32086 </HTML>
32087 ====== h_config_alt_auth =====
32088 <HTML>
32089 <HEAD>
32090 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
32091 </HEAD>
32092 <BODY>
32093 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
32095 This feature affects how Alpine connects to IMAP servers.
32096 It's utility has largely been overtaken by events,
32097 but it may still be useful in some circumstances.
32098 If you only connect to modern IMAP servers that support
32099 &quot;TLS&quot; you can ignore this feature.
32102 Details:
32105 By default, Alpine will attempt to connect to an IMAP server on the
32106 normal IMAP service port (143), and if the server offers &quot;Transport Layer
32107 Security&quot; (TLS) and Alpine has been compiled with encryption capability,
32108 then a secure (encrypted) session will be negotiated.
32111 With this feature enabled, before connecting on the normal IMAP port, Alpine
32112 will first attempt to connect to an alternate IMAP service port (993) used
32113 specifically for encrypted IMAP sessions via the Secure Sockets Layer
32114 (SSL) method.
32115 If the SSL attempt fails, Alpine will then try the default
32116 behavior described in the previous paragraph.
32119 TLS negotiation on the normal port is preferred, and supersedes the use of
32120 SSL on port 993, but older servers may not provide TLS support.
32121 This feature may be convenient when accessing IMAP servers that do not support
32122 TLS, but do support SSL connections on port 993.
32123 However, it is important to understand that with this feature enabled,
32124 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
32125 but it will proceed to make an insecure connection if that is the only
32126 option offered by the server, or if the Alpine in question has been built
32127 without encryption capability.
32130 Note that this feature specifies a per-user (or system-wide) default
32131 behavior, but host/folder specification flags may be used to control the
32132 behavior of any specific connection.
32133 This feature interacts with some of
32134 the possible host/folder path specification flags as follows:
32137 The <SAMP>/tls</SAMP> host flag, for example,
32140 <CENTER><SAMP>{foo.example.com/tls}INBOX</SAMP></CENTER>
32142 will over-ride this feature for the specified host by bypassing the
32143 SSL connection attempt.
32144 Moreover, with <SAMP>/tls</SAMP> specified,
32145 the connection attempt will fail if the
32146 service on port 143 does not offer TLS support.
32149 The <SAMP>/ssl</SAMP> host flag, for example,
32152 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
32154 will insist on an SSL connection for the specified host,
32155 and will fail if the SSL service on port 993 is not available.
32156 Alpine will not subsequently retry a connection
32157 on port 143 if <SAMP>/ssl</SAMP> is specified.
32160 <UL>   
32161 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32162 </UL><P>
32163 &lt;End of help on this topic&gt;
32164 </BODY>
32165 </HTML>
32166 ====== h_config_file_dir ======
32167 <HTML>
32168 <HEAD>
32169 <TITLE>OPTION: File Directory</TITLE>
32170 </HEAD>
32171 <BODY>
32172 <H1>OPTION: File Directory</H1>
32174 PC-Alpine only.
32176 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
32177 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
32178 Message Index's &quot;E&nbsp;Export&quot; command.
32181 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
32182 component, Alpine assumes the file exists in the user's home directory.
32183 Under Windows operating systems, this definition isn't always clear.  This 
32184 feature allows you to explictly set where Alpine should look for files
32185 without a leading path.
32188 NOTE: this feature's value is ignored if either 
32189 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
32190 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
32193 <UL>   
32194 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32195 </UL><P>
32196 &lt;End of help on this topic&gt;
32197 </BODY>
32198 </HTML>
32199 ====== h_config_quote_all_froms =====
32200 <HTML>
32201 <HEAD>
32202 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
32203 </HEAD>
32204 <BODY>
32205 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
32207 This feature controls an aspect of the Save command (and also the way
32208 outgoing messages are saved to an FCC folder).  If set, Alpine will add
32209 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
32210 when they are saved to another folder, including lines syntactically
32211 distinguishable from the type of message separator line commonly used on
32212 Unix systems.
32215 The default behavior is that a &quot;>&quot; will be prepended only to lines
32216 beginning with &quot;From &quot; that might otherwise be confused with a message
32217 separator line on Unix systems.  If pine is the only mail program you use,
32218 this default is reasonable.  If another program you use has trouble
32219 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
32220 enable this feature.  This feature only applies to the common Unix mailbox
32221 format that uses message separator lines beginning with &quot;From &quot;.  If
32222 Alpine has been configured to use a different mailbox format (possibly
32223 incompatible with other mail programs), then this issue does not arise,
32224 and the feature is irrelevant.
32227 &lt;End of help on this topic&gt;
32228 </BODY>
32229 </HTML>
32230 ====== h_config_normal_color =====
32231 <HTML>
32232 <HEAD>
32233 <TITLE>OPTION: Normal Color</TITLE>
32234 </HEAD>
32235 <BODY>
32236 <H1>OPTION: Normal Color</H1>
32238 Sets the color Alpine normally uses.
32239 The foreground color is the color of the actual character and the
32240 background color is the color of the area behind the character.
32241 By default this color is black characters on a white background.
32243 <A HREF="h_color_setup">Descriptions of the available commands</A>
32245 Look <A HREF="h_edit_nav_cmds">here</A>
32246 to see the available Editing and Navigation commands.
32248 &lt;End of help on this topic&gt;
32249 </BODY>
32250 </HTML>
32251 ====== h_config_reverse_color =====
32252 <HTML>
32253 <HEAD>
32254 <TITLE>OPTION: Reverse Color</TITLE>
32255 </HEAD>
32256 <BODY>
32257 <H1>OPTION: Reverse Color</H1>
32259 Sets the color Alpine uses for reverse video characters.
32260 The foreground color is the color of the actual character and the
32261 background color is the color of the area behind the character.
32263 <A HREF="h_color_setup">Descriptions of the available commands</A>
32265 Look <A HREF="h_edit_nav_cmds">here</A>
32266 to see the available Editing and Navigation commands.
32268 &lt;End of help on this topic&gt;
32269 </BODY>
32270 </HTML>
32271 ====== h_config_title_color =====
32272 <HTML>
32273 <HEAD>
32274 <TITLE>OPTION: Title Color</TITLE>
32275 </HEAD>
32276 <BODY>
32277 <H1>OPTION: Title Color</H1>
32279 Sets the color Alpine uses for the titlebar (the top line on the screen).
32280 The foreground color is the color of the actual character and the
32281 background color is the color of the area behind the character.
32282 By default, the Title Color is black characters on a yellow background.
32284 The actual titlebar color may be different from the Title Color if
32285 the option
32286 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
32287 is set to some value other than the default.
32288 It may also be different if the current folder is closed and the
32289 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
32290 color is set to something different from the Title Color.
32292 <A HREF="h_color_setup">Descriptions of the available commands</A>
32294 Look <A HREF="h_edit_nav_cmds">here</A>
32295 to see the available Editing and Navigation commands.
32297 &lt;End of help on this topic&gt;
32298 </BODY>
32299 </HTML>
32300 ====== h_config_titleclosed_color =====
32301 <HTML>
32302 <HEAD>
32303 <TITLE>OPTION: Title Closed Color</TITLE>
32304 </HEAD>
32305 <BODY>
32306 <H1>OPTION: Title Closed Color</H1>
32308 Sets the color Alpine uses for the titlebar (the top line on the screen)
32309 when the current folder is closed.
32310 The foreground color is the color of the actual character and the
32311 background color is the color of the area behind the character.
32312 By default, the Title Color Closed Color is white characters on a red background.
32314 By setting this color to something noticeable you will be alerted to the
32315 fact that the current folder is closed, perhaps unexpectedly.
32317 &lt;End of help on this topic&gt;
32318 </BODY>
32319 </HTML>
32320 ====== h_config_status_color =====
32321 <HTML>
32322 <HEAD>
32323 <TITLE>OPTION: Status Color</TITLE>
32324 </HEAD>
32325 <BODY>
32326 <H1>OPTION: Status Color</H1>
32328 Sets the color Alpine uses for status messages written to the message
32329 line near the bottom of the screen.
32330 The foreground color is the color of the actual character and the
32331 background color is the color of the area behind the character.
32332 By default, the Status Color is the same as the Reverse Color.
32334 <A HREF="h_color_setup">Descriptions of the available commands</A>
32336 Look <A HREF="h_edit_nav_cmds">here</A>
32337 to see the available Editing and Navigation commands.
32339 &lt;End of help on this topic&gt;
32340 </BODY>
32341 </HTML>
32342 ====== h_config_index_opening_color =====
32343 <HTML>
32344 <HEAD>
32345 <TITLE>OPTION: Index Opening Color</TITLE>
32346 </HEAD>
32347 <BODY>
32348 <H1>OPTION: Index Opening Color</H1>
32350 With some setups the text of the subject is followed
32351 by the opening text of the message if there is any room available in the index line.
32352 If you have configured your
32353 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32354 to include one of the Subject tokens that causes this behavior
32355 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
32356 this opening text with this option.
32357 This coloring takes place for all but the current index line, and the Opening
32358 Color appears to be in front of any color from an Index Color Rule.
32360 By default the Index Opening Color is gray characters on a white background.
32363 <A HREF="h_color_setup">Descriptions of the available commands</A>
32365 Look <A HREF="h_edit_nav_cmds">here</A>
32366 to see the available Editing and Navigation commands.
32368 &lt;End of help on this topic&gt;
32369 </BODY>
32370 </HTML>
32371 ====== h_config_index_pri_color =====
32372 <HTML>
32373 <HEAD>
32374 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
32375 </HEAD>
32376 <BODY>
32377 <H1>OPTION: Index Priority Symbol Colors</H1>
32379 The X-Priority header is a non-standard header that is used in a
32380 somewhat standard way by many mail programs.
32381 Alpine expects the value of this header to be a digit with a value
32382 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
32383 Alpine can be made to display an indication of this priority in
32384 messages by use of one of the tokens
32385 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
32386 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
32387 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32390 You may set the color used to draw these tokens by use of the colors
32391 Index High Priority Symbol Color and Index Low Priority Symbol Color.
32392 This coloring takes place for all but the current index line, and the Priority
32393 Color appears to be in front of any color from an Index Color Rule.
32394 If the priority has a value of 1 or 2 the High Priority color will be
32395 used,
32396 and if the value is 4 or 5 the Low Priority color will be used.
32398 If you don't set these colors the index line will be colored in the same color as
32399 the bulk of the index line.
32402 <A HREF="h_color_setup">Descriptions of the available commands</A>
32404 Look <A HREF="h_edit_nav_cmds">here</A>
32405 to see the available Editing and Navigation commands.
32407 &lt;End of help on this topic&gt;
32408 </BODY>
32409 </HTML>
32410 ====== h_config_index_subject_color =====
32411 <HTML>
32412 <HEAD>
32413 <TITLE>OPTION: Index Subject Color</TITLE>
32414 </HEAD>
32415 <BODY>
32416 <H1>OPTION: Index Subject Color</H1>
32418 You may set the color used to draw the Subject part of the index line.
32419 This coloring takes place for all but the current index line, and the Subject
32420 Color appears to be in front of any color from an Index Color Rule.
32422 If you don't set this color it will be colored in the same color as
32423 the bulk of the index line.
32426 <A HREF="h_color_setup">Descriptions of the available commands</A>
32428 Look <A HREF="h_edit_nav_cmds">here</A>
32429 to see the available Editing and Navigation commands.
32431 &lt;End of help on this topic&gt;
32432 </BODY>
32433 </HTML>
32434 ====== h_config_index_from_color =====
32435 <HTML>
32436 <HEAD>
32437 <TITLE>OPTION: Index From Color</TITLE>
32438 </HEAD>
32439 <BODY>
32440 <H1>OPTION: Index From Color</H1>
32442 You may set the color used to draw the From part of the index line.
32443 This coloring takes place for all but the current index line, and the From
32444 Color appears to be in front of any color from an Index Color Rule.
32446 If you don't set this color it will be colored in the same color as
32447 the bulk of the index line.
32450 <A HREF="h_color_setup">Descriptions of the available commands</A>
32452 Look <A HREF="h_edit_nav_cmds">here</A>
32453 to see the available Editing and Navigation commands.
32455 &lt;End of help on this topic&gt;
32456 </BODY>
32457 </HTML>
32458 ====== h_config_index_arrow_color =====
32459 <HTML>
32460 <HEAD>
32461 <TITLE>OPTION: Index Arrow Color</TITLE>
32462 </HEAD>
32463 <BODY>
32464 <H1>OPTION: Index Arrow Color</H1>
32466 If you have configured your
32467 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32468 to include the &quot;ARROW&quot; token, you may set the color of
32469 the arrow displayed with this option.
32470 If you don't set the color it will be colored in the same color as
32471 the bulk of the index line.
32474 <A HREF="h_color_setup">Descriptions of the available commands</A>
32476 Look <A HREF="h_edit_nav_cmds">here</A>
32477 to see the available Editing and Navigation commands.
32479 &lt;End of help on this topic&gt;
32480 </BODY>
32481 </HTML>
32482 ====== h_config_index_color =====
32483 <HTML>
32484 <HEAD>
32485 <TITLE>OPTION: Index Colors</TITLE>
32486 </HEAD>
32487 <BODY>
32488 <H1>OPTION: Index Colors</H1>
32490 You may add color to the single character symbols that give the status
32491 of each message in the MESSAGE INDEX.
32492 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
32493 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
32494 screen depending on whether the message is addressed to you, and whether
32495 the message is marked Important, is Deleted, is Answered, or is New.
32496 The color for each of those characters may be specified by setting the
32497 &quot;Index-to-me&quot; Symbol Color,
32498 the &quot;Index-important&quot; Symbol Color,
32499 the &quot;Index-deleted&quot; Symbol Color,
32500 the &quot;Index-answered&quot; Symbol Color,
32501 and the &quot;Index-new&quot; Symbol Color.
32502 There are also two other symbol colors called &quot;Index-recent&quot;
32503 and &quot;Index-unseen&quot;.
32504 These two colors will only be used if you have configured your
32505 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
32506 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
32508 The default colors for these symbols are:
32509 <TABLE>
32510 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
32511 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
32512 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32513 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
32514 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
32515 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32516 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32517 </TABLE>
32519 Besides coloring the message status symbols, you may also color the
32520 entire index line.
32521 This is done by using the
32522 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
32523 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
32524 When the entire line is colored that color will be &quot;behind&quot; the
32525 status symbol colors talked about in the paragraph above.
32527 You may also color
32528 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32529 in the index using the
32530 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
32531 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
32532 the Subject using
32533 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
32534 the From field using
32535 <A HREF="h_config_index_from_color">Index From Color</A>;
32536 and the
32537 <A HREF="h_config_index_opening_color">Index Opening</A> text.
32539 <A HREF="h_color_setup">Descriptions of the available commands</A>
32541 Look <A HREF="h_edit_nav_cmds">here</A>
32542 to see the available Editing and Navigation commands.
32544 &lt;End of help on this topic&gt;
32545 </BODY>
32546 </HTML>
32547 ====== h_config_metamsg_color =====
32548 <HTML>
32549 <HEAD>
32550 <TITLE>OPTION: Meta-Message Color</TITLE>
32551 </HEAD>
32552 <BODY>
32553 <H1>OPTION: Meta-Message Color</H1>
32555 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
32556 that aren't part of the message itself.
32557 For example, an attachment that isn't shown might produce a meta
32558 message something like:
32560 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
32562 If you set the
32563 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
32564 option you might see
32566 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
32568 Warnings about suspicious looking URLs in HTML will also be colored
32569 with this color.
32571 The foreground color is the color of the actual character and the
32572 background color is the color of the area behind the character.
32573 By default, the Meta-Message Color is black characters on a yellow background.
32575 <A HREF="h_color_setup">Descriptions of the available commands</A>
32577 Look <A HREF="h_edit_nav_cmds">here</A>
32578 to see the available Editing and Navigation commands.
32580 &lt;End of help on this topic&gt;
32581 </BODY>
32582 </HTML>
32583 ====== h_config_keylabel_color =====
32584 <HTML>
32585 <HEAD>
32586 <TITLE>OPTION: KeyLabel Color</TITLE>
32587 </HEAD>
32588 <BODY>
32589 <H1>OPTION: KeyLabel Color</H1>
32591 Sets the color Alpine uses for the labels of the keys in the two-line
32592 menu at the bottom of the screen.
32593 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32594 This option sets the color used when displaying &quot;PrevMsg&quot;.
32595 The foreground color is the color of the actual character and the
32596 background color is the color of the area behind the character.
32597 By default, the KeyLabel Color is the same as the Normal Color.
32599 WARNING: Some terminal emulators have the property that the screen will scroll
32600 down one line whenever a character is written to the character cell in the
32601 lower right corner of the screen.
32602 Alpine can usually avoid writing a character in that corner of the screen.
32603 However, if you have defined a KeyLabel Color then Alpine does have to write
32604 a character in that cell in order to color the cell correctly.
32605 If you find that your display sometimes scrolls up a line this could be
32606 the problem.
32607 The most obvious symptom is probably that the titlebar at the top of the
32608 screen scrolls off the screen.
32609 Try setting KeyLabel Color to Default to see if that fixes the problem.
32611 <A HREF="h_color_setup">Descriptions of the available commands</A>
32613 Look <A HREF="h_edit_nav_cmds">here</A>
32614 to see the available Editing and Navigation commands.
32616 &lt;End of help on this topic&gt;
32617 </BODY>
32618 </HTML>
32619 ====== h_config_keyname_color =====
32620 <HTML>
32621 <HEAD>
32622 <TITLE>OPTION: KeyName Color</TITLE>
32623 </HEAD>
32624 <BODY>
32625 <H1>OPTION: KeyName Color</H1>
32627 Sets the color Alpine uses for the names of the keys in the two-line
32628 menu at the bottom of the screen.
32629 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32630 This option sets the color used when displaying the &quot;P&quot;.
32631 The foreground color is the color of the actual character and the
32632 background color is the color of the area behind the character.
32633 By default, the KeyName Color is the same as the Reverse Color.
32635 <A HREF="h_color_setup">Descriptions of the available commands</A>
32637 Look <A HREF="h_edit_nav_cmds">here</A>
32638 to see the available Editing and Navigation commands.
32640 &lt;End of help on this topic&gt;
32641 </BODY>
32642 </HTML>
32643 ====== h_config_slctbl_color =====
32644 <HTML>
32645 <HEAD>
32646 <TITLE>OPTION: Selectable Item Color</TITLE>
32647 </HEAD>
32648 <BODY>
32649 <H1>OPTION: Selectable Item Color</H1>
32651 Sets the color Alpine uses for selectable items, such as URLs.
32652 The foreground color is the color of the actual character and the
32653 background color is the color of the area behind the character.
32654 By default, the Selectable Item Color is the same as the Normal Color,
32655 except that it is bold.
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_quote_color =====
32666 <HTML>
32667 <HEAD>
32668 <TITLE>OPTION: Quote Colors</TITLE>
32669 </HEAD>
32670 <BODY>
32671 <H1>OPTION: Quote Colors</H1>
32673 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
32674 screen.
32675 If a line begins with a &gt; character (or space followed by &gt;)
32676 it is considered a quote.
32677 That line will be given the Quote1 Color (first level quote).
32678 If there is a second level of quoting then the Quote2 Color will be used.
32679 Alpine considers there to be a second level of quoting if that first &gt; is
32680 followed by another &gt; (or space followed by &gt;).
32681 If there are characters other than whitespace and &gt; signs, then it isn't
32682 considered another level of quoting.
32683 Similarly, if there is a third level of quoting the Quote3 Color will be
32684 used.
32685 If there are more levels after that the Quote Colors are re-used.
32686 If you define all three colors then it would repeat like Color1, Color2, Color3,
32687 Color1, Color2, Color3, ...
32688 If you only define the first two it would be
32689 Color1, Color2, Color1, Color2, ...
32690 If you define only the Quote1 Color, then the entire quote would be that
32691 color regardless of the quoting levels.
32692 By default, the Quote1 Color is black characters on a greenish-blue background;
32693 the Quote2 Color is black characters on a dull yellow background; and
32694 the Quote3 Color is black characters on a green background.
32696 <A HREF="h_color_setup">Descriptions of the available commands</A>
32698 Look <A HREF="h_edit_nav_cmds">here</A>
32699 to see the available Editing and Navigation commands.
32701 &lt;End of help on this topic&gt;
32702 </BODY>
32703 </HTML>
32704 ====== h_config_folder_color =====
32705 <HTML>
32706 <HEAD>
32707 <TITLE>OPTION: Folder Color</TITLE>
32708 </HEAD>
32709 <BODY>
32710 <H1>OPTION: Folder Color</H1>
32712 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
32713 screen. By default, the Folder Color is the normal text color.
32716 If you set a color for this feature, other than the normal color
32717 (the default), or a color for
32718 <A HREF="h_config_directory_color">Directory Color</A>, then directories
32719 will be colored according to the color specified in the
32720 <A HREF="h_config_directory_color">Directory Color</A> option. In this
32721 case, the color will be the only indication that the colored name
32722 refers to a directory. The normal behavior is that Alpine
32723 indicates that a name refers to a directory by appending a
32724 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32725 the folder.
32728 If a folder is a directory, then the folder name will be painted
32729 according to the color defined by this variable, and a separator
32730 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
32731 to the name. That
32732 indicator will be painted according to the color defined in the
32733 <A HREF="h_config_directory_color">Directory Color</A> option.
32736 &lt;End of help on this topic&gt;
32737 </BODY>
32738 </HTML>
32739 ====== h_config_directory_color =====
32740 <HTML>
32741 <HEAD>
32742 <TITLE>OPTION: Directory Color</TITLE>
32743 </HEAD>
32744 <BODY>
32745 <H1>OPTION: Directory Color</H1>
32747 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
32748 screen. By default, the Folder Color is the normal text color.
32750 If you set a color for this feature, other than the normal color
32751 (the default), or a color for
32752 <A HREF="h_config_folder_color">Folder Color</A>, then folders
32753 will be colored according to the color specified in the
32754 <A HREF="h_config_folder_color">Folder Color</A> option. In this
32755 case, the color will be the only indication that the colored name
32756 refers to a directory. The normal behavior is that Alpine
32757 indicates that a name refers to a directory by appending a
32758 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32759 the folder.
32761 If a folder is a directory, then the folder name will be painted
32762 according to the color defined by the option
32763 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
32764 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
32765 after the name. That
32766 indicator will be painted according to the color defined in this
32767 option.
32769 &lt;End of help on this topic&gt;
32770 </BODY>
32771 </HTML>
32772 ====== h_config_folder_list_color =====
32773 <HTML>
32774 <HEAD>
32775 <TITLE>OPTION: Folder-List Color</TITLE>
32776 </HEAD>
32777 <BODY>
32778 <H1>OPTION: Folder-List Color</H1>
32780 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
32781 screen. By default, the Folder-List Color is the normal text color.
32783 This text refers to the informative text that Alpine displays so you
32784 can recognize each collection. The color of the content of each collection
32785 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
32786 and <A HREF="h_config_directory_color">Directory Color</A>.
32788 Unlike the options
32789 <A HREF="h_config_folder_color">Folder Color</A>
32790 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
32791 this option does not affect the way that Alpine reports folders,
32792 directories and folders that are directories.
32794 &lt;End of help on this topic&gt;
32795 </BODY>
32796 </HTML>
32797 ====== h_config_incunseen_color =====
32798 <HTML>
32799 <HEAD>
32800 <TITLE>OPTION: Incoming Unseen Color</TITLE>
32801 </HEAD>
32802 <BODY>
32803 <H1>OPTION: Incoming Unseen Color</H1>
32805 If the option
32806 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
32807 is turned on it is possible to highlight the folders that contain
32808 unseen messages by coloring them with this color.
32809 By default, this is the same as the Normal Color and no highlighting is done.
32811 Usually the &quot;current&quot; folder (the folder the cursor is on)
32812 is highlighted using reverse video.
32813 If the current folder is colored because it contains unseen messages then
32814 the color used to show that it is also the current folder is controlled
32815 by the
32816 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
32817 feature at the top of the SETUP COLOR screen.
32819 <A HREF="h_color_setup">Descriptions of the available commands</A>
32821 Look <A HREF="h_edit_nav_cmds">here</A>
32822 to see the available Editing and Navigation commands.
32824 &lt;End of help on this topic&gt;
32825 </BODY>
32826 </HTML>
32827 ====== h_config_signature_color =====
32828 <HTML>
32829 <HEAD>
32830 <TITLE>OPTION: Signature Color</TITLE>
32831 </HEAD>
32832 <BODY>
32833 <H1>OPTION: Signature Color</H1>
32835 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
32836 screen. According to USENET conventions, the signature is defined as the
32837 paragraph following the &quot;sigdashes&quot;, that is, the special line
32838 consisting of the three characters
32839 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
32840 empty line right after the sigdashes to be considered as part of the
32841 signature.
32842 By default, the Signature Color is blue characters on a white background.
32844 <A HREF="h_color_setup">Descriptions of the available commands</A>
32846 Look <A HREF="h_edit_nav_cmds">here</A>
32847 to see the available Editing and Navigation commands.
32849 &lt;End of help on this topic&gt;
32850 </BODY>
32851 </HTML>
32852 ====== h_config_prompt_color =====
32853 <HTML>
32854 <HEAD>
32855 <TITLE>OPTION: Prompt Color</TITLE>
32856 </HEAD>
32857 <BODY>
32858 <H1>OPTION: Prompt Color</H1>
32860 Sets the color Alpine uses for confirmation prompts and questions that
32861 appear in the status line near the bottom of the screen.
32862 The foreground color is the color of the actual character and the
32863 background color is the color of the area behind the character.
32864 By default, the Prompt Color is the same as the Reverse Color.
32866 <A HREF="h_color_setup">Descriptions of the available commands</A>
32868 Look <A HREF="h_edit_nav_cmds">here</A>
32869 to see the available Editing and Navigation commands.
32871 &lt;End of help on this topic&gt;
32872 </BODY>
32873 </HTML>
32874 ====== h_config_header_general_color =====
32875 <HTML>
32876 <HEAD>
32877 <TITLE>OPTION: Header General Color</TITLE>
32878 </HEAD>
32879 <BODY>
32880 <H1>OPTION: Header General Color</H1>
32882 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
32883 screen.
32884 The foreground color is the color of the actual character and the
32885 background color is the color of the area behind the character.
32886 By default, this is the same as the Normal Color.
32888 It is also possible to set the colors for specific header fields, for
32889 example the Subject, using
32890 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
32891 If both a Header General Color and a specific Viewer Header Color are set
32892 the specific color will override the general color, as you would expect.
32894 <A HREF="h_color_setup">Descriptions of the available commands</A>
32896 Look <A HREF="h_edit_nav_cmds">here</A>
32897 to see the available Editing and Navigation commands.
32899 &lt;End of help on this topic&gt;
32900 </BODY>
32901 </HTML>
32902 ====== h_config_incol =====
32903 <HTML>
32904 <HEAD>
32905 <TITLE>Index Line Color</TITLE>
32906 </HEAD>
32907 <BODY>
32908 <H1>Index Line Color</H1>
32910 This option is used to set the color of a line in the index when the
32911 message for that line matches the Pattern.
32912 This colors the whole index line, except possibly the status letters,
32913 which may be colored separately using the
32914 <A HREF="h_color_setup">Setup Kolor</A> screen.
32915 The foreground color is the color of the actual characters and the
32916 background color is the color of the area behind the characters.
32918 <A HREF="h_color_setup">Descriptions of the available commands</A>
32920 Look <A HREF="h_edit_nav_cmds">here</A>
32921 to see the available Editing and Navigation commands.
32923 &lt;End of help on this topic&gt;
32924 </BODY>
32925 </HTML>
32926 ====== h_config_usetransparent_color =====
32927 <HTML>
32928 <HEAD>
32929 <TITLE>OPTION: Use Transparent Color</TITLE>
32930 </HEAD>
32931 <BODY>
32932 <H1>OPTION: Use Transparent Color</H1>
32934 This is a special color supported by some terminal emulators.
32935 It is intended to result in the default foreground or background color
32936 from the terminal emulator.
32937 This is the color the terminal was displaying characters in before you started Alpine.
32938 The reason it is called Transparent is because you could set the foreground color
32939 to some specific color, like Red, and then set the background color to the
32940 Transparent Color. If it works as expected, the background color from the terminal
32941 window in which Alpine is running will show through but with the Red characters
32942 in the foreground.
32944 <A HREF="h_color_setup">Descriptions of the available commands</A>
32946 Look <A HREF="h_edit_nav_cmds">here</A>
32947 to see the available Editing and Navigation commands.
32949 &lt;End of help on this topic&gt;
32950 </BODY>
32951 </HTML>
32952 ====== h_config_usenormal_color =====
32953 <HTML>
32954 <HEAD>
32955 <TITLE>OPTION: Use Normal Color</TITLE>
32956 </HEAD>
32957 <BODY>
32958 <H1>OPTION: Use Normal Color</H1>
32960 When you use this color value, the actual color used will be the same
32961 as the corresponding Normal Color.
32962 For example if your Normal Color is black on white and you set both
32963 the foreground and background colors here to use the Normal Color, you'll
32964 get black on white. If you later change the Normal Color to red on blue
32965 this color will also change to red on blue.
32967 <A HREF="h_color_setup">Descriptions of the available commands</A>
32969 Look <A HREF="h_edit_nav_cmds">here</A>
32970 to see the available Editing and Navigation commands.
32972 &lt;End of help on this topic&gt;
32973 </BODY>
32974 </HTML>
32975 ====== h_config_usenone_color =====
32976 <HTML>
32977 <HEAD>
32978 <TITLE>OPTION: Use None Color</TITLE>
32979 </HEAD>
32980 <BODY>
32981 <H1>OPTION: Use None Color</H1>
32983 This is a special color that simply means to leave the color alone.
32984 It is useful for Index symbols and for Keyword Colors used in the Subject
32985 field of an index line.
32986 The most likely use is to set an explicit foreground color and then set
32987 the background color to the None Color.
32988 That will cause the symbol or keyword to be drawn in the foreground color
32989 with a background equal to whatever color the rest of the index line is already
32990 drawn in.
32991 You will see no visible effect unless you have assigned Indexcolor Rules to
32992 color index lines or you have set an actual color for the Reverse Color.
32994 <A HREF="h_color_setup">Descriptions of the available commands</A>
32996 Look <A HREF="h_edit_nav_cmds">here</A>
32997 to see the available Editing and Navigation commands.
32999 &lt;End of help on this topic&gt;
33000 </BODY>
33001 </HTML>
33002 ====== h_config_dflt_color =====
33003 <HTML>
33004 <HEAD>
33005 <TITLE>OPTION: Default Color</TITLE>
33006 </HEAD>
33007 <BODY>
33008 <H1>OPTION: Default Color</H1>
33010 Setting default will cause the color to be the default color.
33011 Unsetting default is normally done by choosing a color, but in some cases
33012 you may want to declare the current default color to be your non-default
33013 choice.
33014 For example, the default Keyname Color is the same as the Reverse Color.
33015 Whenever the Reverse Color changes the Keyname Color will also change, unless
33016 you've changed it or unset the default box.
33018 <A HREF="h_color_setup">Descriptions of the available commands</A>
33020 Look <A HREF="h_edit_nav_cmds">here</A>
33021 to see the available Editing and Navigation commands.
33023 &lt;End of help on this topic&gt;
33024 </BODY>
33025 </HTML>
33026 ====== h_config_bold_slctbl =====
33027 <HTML>
33028 <HEAD>
33029 <TITLE>OPTION: Bold</TITLE>
33030 </HEAD>
33031 <BODY>
33032 <H1>OPTION: Bold</H1>
33034 The color for this particular section may have the Bold attribute turned
33035 on or off.
33036 Setting bold will cause the characters to be bold.
33038 <A HREF="h_color_setup">Descriptions of the available commands</A>
33040 Look <A HREF="h_edit_nav_cmds">here</A>
33041 to see the available Editing and Navigation commands.
33043 &lt;End of help on this topic&gt;
33044 </BODY>
33045 </HTML>
33046 ====== h_config_kw_color =====
33047 <HTML>
33048 <HEAD>
33049 <TITLE>OPTION: Keyword Colors</TITLE>
33050 </HEAD>
33051 <BODY>
33052 <H1>OPTION: Keyword Colors</H1>
33054 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
33055 Keywords are displayed as part of the Subject by default.
33056 They are also displayed as part of the Subject if the tokens
33057 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
33058 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
33059 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
33060 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
33062 For example, you might have set up a Keyword
33063 &quot;Work&quot; using the
33064 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
33065 You could cause that Keyword to show up as a special color
33066 by setting up the Keyword Color using this option, and then including it
33067 in the MESSAGE INDEX screen using one of the tokens listed above in the
33068 <!--#echo var="VAR_index-format"-->.
33070 <A HREF="h_color_setup">Descriptions of the available commands</A>
33072 Look <A HREF="h_edit_nav_cmds">here</A>
33073 to see the available Editing and Navigation commands.
33075 &lt;End of help on this topic&gt;
33076 </BODY>
33077 </HTML>
33078 ====== h_config_customhdr_color =====
33079 <HTML>
33080 <HEAD>
33081 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
33082 </HEAD>
33083 <BODY>
33084 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
33086 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
33087 For example, you may set the color of the Subject header or the From header.
33088 The foreground color is the color of the actual character and the
33089 background color is the color of the area behind the character.
33091 In addition to setting the colors for particular headers (like the Subject)
33092 you may also set a color to be used for all headers unless overridden by a
33093 more specific Viewer Header Color.
33094 To do this use the
33095 <A HREF="h_config_header_general_color">Header General Color</A>.
33097 For Header Colors,
33098 there is an additional line on the
33099 screen labeled &quot;Pattern to match&quot;.
33100 If you leave that blank, then the whole field for that header will
33101 be colored.
33102 However, if you give a pattern to match, the coloring will only take place
33103 if there is a match for that pattern in the value of the field.
33104 For example, if you are working on a color for the Subject header and
33105 you fill in a pattern of &quot;important&quot;, then only Subjects that
33106 contain the word &quot;important&quot; will be colored.
33108 If the pattern you enter is a comma-separated list of patterns, then coloring
33109 happens if any of those patterns matches.
33111 <A HREF="h_color_setup">Descriptions of the available commands</A>
33113 Look <A HREF="h_edit_nav_cmds">here</A>
33114 to see the available Editing and Navigation commands.
33116 &lt;End of help on this topic&gt;
33117 </BODY>
33118 </HTML>
33119 ====== h_config_indextoken_color =====
33120 <HTML>
33121 <HEAD>
33122 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
33123 </HEAD>
33124 <BODY>
33125 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
33127 This option allows you to set up the color in which any token, not specified by the
33128 previous options, will be colored in the MESSAGE INDEX screen. 
33130 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
33131 a token that can be used in the index format. 
33132 The list of available tokens is <A HREF="h_index_tokens">here</A>.
33134 If you fail to enter a valid token your entry will be ignored, and you will be asked to
33135 enter a new one. Once you have entered a valid token, a line will be added to the
33136 configuration screen that you can use to set up the colors in which that token will
33137 be painted. This is done in the same way that you configure colors for other
33138 variables.
33140 <A HREF="h_color_setup">Descriptions of the available commands</A>
33142 Look <A HREF="h_edit_nav_cmds">here</A>
33143 to see the available Editing and Navigation commands.
33145 &lt;End of help on this topic&gt;
33146 </BODY>
33147 </HTML>
33148 ====== h_config_customhdr_pattern =====
33149 <HTML>
33150 <HEAD>
33151 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
33152 </HEAD>
33153 <BODY>
33154 <H1>OPTION: Viewer Header Color Pattern</H1>
33156 If you leave this blank, then the whole field for the header will
33157 be colored.
33158 If you give a pattern to match, the coloring will only take place
33159 if there is a match for that pattern in the value of the field.
33160 For example, if you are working on a color for the Subject header and
33161 you fill in a pattern of &quot;important&quot;, then only Subjects that
33162 contain the word &quot;important&quot; will be colored.
33164 For address headers (like From and To) and for the Newsgroups header,
33165 a pattern match will cause only the matched addresses or newsgroups to be
33166 colored.
33167 If there is no pattern to match, then all of the addresses or newsgroups
33168 in the relevant header will be colored.
33170 The matching pattern may be a comma-separated list of patterns to match
33171 instead of a single pattern.
33172 For example, you could use the pattern &quot;important,urgent&quot; which would
33173 cause a match if either the word &quot;important&quot; or the word
33174 &quot;urgent&quot; appeared in the value of the header.
33175 You could list several comma-separated email addresses in the Header
33176 From Color pattern so that those addresses will be colored when any of
33177 them appear in the From header.
33179 To add a new matching pattern or change the existing pattern use the 
33180 <!--chtml if pinemode="function_key"-->
33181 &quot;F4&quot;
33182 <!--chtml else-->
33183 &quot;C&quot;
33184 <!--chtml endif-->
33185 &quot;Change&quot; command that is available when the &quot;Pattern to
33186 match&quot; line is highlighted.
33188 <!--chtml if pinemode="function_key"-->
33189 &quot;F10&quot;
33190 <!--chtml else-->
33191 &quot;D&quot;
33192 <!--chtml endif-->
33193 &quot;Delete&quot; command may be used to quickly remove all patterns
33194 for a particular header.
33196 &lt;End of help on this topic&gt;
33197 </BODY>
33198 </HTML>
33199 ====== h_color_setup =====
33200 <HTML>
33201 <HEAD>
33202 <TITLE>SETUP COLOR COMMANDS</TITLE>
33203 </HEAD>
33204 <BODY>
33205 <H1>SETUP COLOR COMMANDS</H1>
33206 <!--chtml if pinemode="function_key"-->
33207 <PRE>
33208 Available Commands -- Group 1
33209 -------------------------------
33210 F1  Display this help text
33211 F2  Show other available commands
33212 F3  Exit to MAIN MENU
33213 F4  Select the highlighted foreground or background color
33214 F5  Move to previous line
33215 F6  Move to next line
33216 F7  Previous page
33217 F8  Next page
33218 F9  Add a config section for a header field
33219 F10 Restore all default colors (for all sections)
33220 F11 Print color configuration screen
33221 F12 Whereis (search for word)
33223 Available Commands -- Group 2
33224 -------------------------------
33225 F1  Display this help text
33226 F2  Show other available commands
33227 F5  Delete config section for highlighted header field
33228 F6  Shuffle the order of Header Color sections
33229 </PRE>
33230 <!--chtml else-->
33231 <PRE>
33232 General commands
33233 -------------------------------------------------
33234  ?  Display this help text     E  Exit back to MAIN MENU
33235  P  Previous Line              N  Next Line
33236  -  Previous page             Spc (space bar) Next page
33237  W  WhereIs (search for word)  %  Print color configuration screen
33239 Color Setup Commands
33240 ------------------------------------------------
33241  *  Select the highlighted foreground or background color
33242  A  Add a config section for a header field
33243  D  Delete config section for highlighted header field
33244  R  Restore all default colors (for all sections)
33245  $  Shuffle the order of Header Color sections
33246 </PRE>
33247 <!--chtml endif-->
33249 <H2>Description of the Setup Color Screen</H2>
33251 From this screen you may turn on color and set the colors of
33252 various parts of the Alpine display.
33253 For help on turning on color move your cursor into the Color Style section
33254 at the top of the Setup Color screen and ask for help.
33257 There are several sections in the Setup Color Screen.
33258 At the top are some settings that handle the style of color used
33259 with your terminal emulator (UNIX only), and some settings that
33260 control how the current indexline and the titlebar are colored.
33261 After that comes a long section called GENERAL COLORS that allows
33262 you to set the color of many elements in the Alpine screens.
33263 For example, the color of the titlebar, status messages,
33264 selectable links, quotes and signatures in messages, and so on.
33265 After that is a section called INDEX COLORS that allows you to
33266 set the colors of various pieces of the displayed index lines in
33267 the MESSAGE INDEX screen.
33268 The next section is HEADER COLORS. This is for coloring headers of
33269 messages in the MESSAGE TEXT screen in just about any way you would like.
33270 Finally, the KEYWORD COLORS section allows you to highlight
33271 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
33272 in the MESSAGE INDEX screen.
33275 To change a color, highlight the color you want to change (for example,
33276 the Status Color) by moving
33277 the cursor into it.
33278 You may want to read the help text for the color to see a brief desription
33279 of what you are coloring.
33280 Then press &quot;C&quot; for Change to set the color to something new.
33281 That will put you into a screen with two columns of colors, one for
33282 the foreground color and one for the background color.
33283 The foreground color is just the color you want the actual characters
33284 to be and the background color is the color of the rest of the rectangle
33285 behind the characters.
33286 Select the foreground and background colors desired by using the Next and
33287 Prev keys to highlight the color, and the * command to select it.
33289 To set a color to its default value, set the X in the Default line at
33290 the bottom of the list of colors.
33293 The HEADER COLORS section is a little bit different from the others.
33294 Besides coloring the specific fields that Alpine knows about, you may also
33295 color specific header fields when viewing a message in the MESSAGE TEXT
33296 screen.
33297 For example, you may color the Subject header a particular color.
33298 There are a few commands for use with headers.
33299 The &quot;AddHeader&quot; command adds a section to the color
33300 configuration screen that allows you to set the color for that header.
33301 You'll be asked for the name of the header field you want to color.
33302 If you wanted to color the Subject, you would answer
33303 with the word &quot;subject&quot;.
33304 Once you've added a header field, the color setting works just like the
33305 other color fields, except that there is an additional line on the
33306 configuration screen labeled &quot;Pattern to match&quot;.
33307 If you leave that blank, then the whole field for that header will always
33308 be colored.
33309 However, if you give a pattern to match, the coloring will only take place
33310 if there is a match for that pattern in the value of the field.
33311 For example, if you are working on a color for the Subject header and
33312 you fill in a pattern of &quot;important&quot;, then only Subjects that
33313 contain the word &quot;important&quot; will be colored.
33315 The &quot;DeleteHdr&quot; command removes a header section from the
33316 configuration altogether.
33317 The &quot;Shuffle&quot; command changes the order of header sections.
33318 This is only necessary if you use header sections with pattern fields.
33319 For example, if you have two Subject sections, one with one pattern and
33320 another with another pattern, and the subject for a particular message
33321 happens to match both, then the color from the first match is used.
33324 The command &quot;RestoreDefs&quot; will restore all of the default colors.
33325 Each section will change to the default value used for that section when
33326 color is first enabled.
33327 When you restore all default colors the color settings for the Header Colors
33328 will be unset (since that's the default), but the header fields you've
33329 added will remain so that you may easily reset them.
33330 In order to get rid of them completely you'd have to use
33331 the &quot;DeleteHdr&quot; command.
33334 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
33335 may be set with matching rules and that is configured separately from
33336 the rest of the color settings described here.
33337 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
33338 instead of in the Setup/Kolor section.
33340 <P><UL>
33341 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33342 </UL><P>
33343 &lt;End of help on this topic&gt;
33344 </BODY>
33345 </HTML>
33346 ====== h_config_news_uses_recent ======
33347 <HTML>
33348 <HEAD>
33349 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
33350 </HEAD>
33351 <BODY>
33352 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
33354 This feature causes certain messages to be marked as "New" in the
33355 MESSAGE INDEX of newsgroups.
33356 This feature is set by default.
33360 When opening a newsgroup, Alpine will consult your "newsrc" file and
33361 determine the last message you have previously disposed of via the "D"
33362 key.  If this feature is set, any subsequent messages will be shown in the
33363 Index with an "N", and the first of these messages will be highlighted.
33364 Although this is only an approximation of true "New" or "Unseen"
33365 status, it provides a useful cue to distinguish more-or-less recent
33366 messages from those you have seen previously, but are not yet ready to
33367 mark deleted.
33371 Background: your "newsrc" file (used to store message status information
33372 for newsgroups) is only capable of storing a single flag, and Alpine uses
33373 this to record whether or not you are "done with" a message, as
33374 indicated by marking the message as "Deleted".  Unfortunately, this
33375 means that Alpine has no way to record exactly which messages you have
33376 previously seen, so it normally does not show the "N" status flag for
33377 any messages in a newsgroup. This feature enables a starting
33378 *approximation* of seen/unseen status that may be useful.
33380 &lt;End of help on this topic&gt;
33381 </BODY>
33382 </HTML>
33383 ====== h_config_expose_hidden_config =====
33384 <HTML>
33385 <HEAD>
33386 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
33387 </HEAD>
33388 <BODY>
33389 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
33391 If set, this causes configuration options and features that are normally
33392 hidden from view to be editable in the Setup/Config screen.
33395 The purpose of this feature is to allow you to change configuration
33396 features and variables that are normally hidden.
33397 This is particularly useful if you are using a remote configuration,
33398 where it is difficult to edit the contents manually, but it may also be used
33399 on a local pinerc configuration file.
33401 If set, several configuration variables and features that are normally
33402 hidden from view will show up in the Setup/Configuration screen.
33403 They will be at the bottom of the configuration screen.
33404 You can find them by searching for the words &quot;hidden configuration&quot;.
33407 Note that this is an advanced feature that should be used with care.
33408 The reason that this part of the configuration is normally hidden is because
33409 there is a significant potential for causing problems if you change these
33410 variables.
33411 If something breaks after a change try changing it back to see if that is
33412 what is causing the problem.
33413 There are also some variables that are normally hidden because they are
33414 manipulated through Alpine in other ways.
33415 For example, colors are normally set using the Setup/Kolors screen and
33416 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
33417 the Setup/AddressBooks screen, so there is little reason to edit these directly.
33418 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
33419 the Add, Delete, and Rename commands in the FOLDER LIST screen,
33420 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
33421 internally by Alpine and not set directly by the user.
33423 <UL>   
33424 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33425 </UL><P>
33426 &lt;End of help on this topic&gt;
33427 </BODY>
33428 </HTML>
33429 ====== h_config_disable_signature_edit =====
33430 <HTML>
33431 <HEAD>
33432 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
33433 </HEAD>
33434 <BODY>
33435 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
33437 If set, this disables the editing of signature files from within
33438 the Setup/Config screen.
33440 <UL>   
33441 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33442 </UL><P>
33443 &lt;End of help on this topic&gt;
33444 </BODY>
33445 </HTML>
33446 ====== h_config_disable_roles_templateedit =====
33447 <HTML>
33448 <HEAD>
33449 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
33450 </HEAD>
33451 <BODY>
33452 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
33454 If set, this disables the editing of template files within the
33455 Role setup screen.
33457 <UL>   
33458 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33459 </UL><P>
33460 &lt;End of help on this topic&gt;
33461 </BODY>
33462 </HTML>
33463 ====== h_config_disable_roles_sigedit =====
33464 <HTML>
33465 <HEAD>
33466 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
33467 </HEAD>
33468 <BODY>
33469 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
33471 If set, this disables the editing of signature files within the
33472 Role setup screen.
33474 <UL>   
33475 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33476 </UL><P>
33477 &lt;End of help on this topic&gt;
33478 </BODY>
33479 </HTML>
33480 ====== h_config_disable_roles_setup =====
33481 <HTML>
33482 <HEAD>
33483 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
33484 </HEAD>
33485 <BODY>
33486 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
33488 If set, this disables the Setup/Rules/Roles command.
33490 <UL>   
33491 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33492 </UL><P>
33493 &lt;End of help on this topic&gt;
33494 </BODY>
33495 </HTML>
33496 ====== h_config_disable_pipes_in_templates =====
33497 <HTML>
33498 <HEAD>
33499 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
33500 </HEAD>
33501 <BODY>
33502 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
33504 By default, if a template file name is followed by a vertical bar (|) then
33505 that causes the file to be executed to produce the text for the template.
33506 If this feature is set, then this is not allowed.
33508 <UL>   
33509 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33510 </UL><P>
33511 &lt;End of help on this topic&gt;
33512 </BODY>
33513 </HTML>
33514 ====== h_config_disable_pipes_in_sigs =====
33515 <HTML>
33516 <HEAD>
33517 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
33518 </HEAD>
33519 <BODY>
33520 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
33522 By default, if a signature file name is followed by a vertical bar (|) then
33523 that causes the file to be executed to produce the text for the signature.
33524 If this feature is set, then this is not allowed.
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_disable_password_cmd =====
33533 <HTML>
33534 <HEAD>
33535 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
33536 </HEAD>
33537 <BODY>
33538 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
33540 If set, then the Setup/Newpassword command is disabled.
33542 <UL>   
33543 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33544 </UL><P>
33545 &lt;End of help on this topic&gt;
33546 </BODY>
33547 </HTML>
33548 ====== h_config_disable_password_caching =====
33549 <HTML>
33550 <HEAD>
33551 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
33552 </HEAD>
33553 <BODY>
33554 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
33556 Normally, loginname/password combinations are cached in Alpine so that
33557 you do not have to enter the same password more than once in a session.
33558 A disadvantage to this approach is that the password must be stored in
33559 the memory image of the running Alpine in order that it can be re-used.
33560 In the event that Alpine crashes and produces a core dump, and that core
33561 dump is readable by others, the loginname and password could be read
33562 from the core dump.
33564 If this feature is set, then the passwords will not be cached and you
33565 will have to retype the password whenever Alpine needs it.
33566 Even with this feature set there is still some chance that the core
33567 file will contain a password, so care should be taken to make the
33568 core files unreadable.
33570 NOTE: If PASSFILE caching is enabled, this does not disable it.
33571 That is a separate and independent feature.
33572 <UL>   
33573 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33574 </UL><P>
33575 &lt;End of help on this topic&gt;
33576 </BODY>
33577 </HTML>
33578 ====== h_config_disable_password_file_saving =====
33579 <HTML>
33580 <HEAD>
33581 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></TITLE>
33582 </HEAD>
33583 <BODY>
33584 <H1>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></H1>
33586 This feature changes the behavior of Alpine when a login name and password combination
33587 for a specific server is not found in the password file. The default behavior is that
33588 Alpine will ask the user if they wish to save this information in the password file for future
33589 use. It is assumed that if a user created a password file it is because they intend
33590 to use it, but in some instances a user might want to save some passwords and not others.
33591 In this case, enabling this feature will make Alpine not add any more passwords to the
33592 password file and will only use the passwords that it already saved. If you wish to allow
33593 Alpine to save more passwords in the password file, disable this feature.
33595 <UL>   
33596 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33597 </UL><P>
33598 &lt;End of help on this topic&gt;
33599 </BODY>
33600 </HTML>
33601 ====== h_config_disable_kb_lock =====
33602 <HTML>
33603 <HEAD>
33604 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
33605 </HEAD>
33606 <BODY>
33607 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
33609 If set, then the Keyboard Lock command is removed from the MAIN MENU.
33611 <UL>   
33612 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33613 </UL><P>
33614 &lt;End of help on this topic&gt;
33615 </BODY>
33616 </HTML>
33617 ====== h_config_disable_config_cmd =====
33618 <HTML>
33619 <HEAD>
33620 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
33621 </HEAD>
33622 <BODY>
33623 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
33625 If set, then the Setup/Config screen is disabled.
33627 <UL>   
33628 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33629 </UL><P>
33630 &lt;End of help on this topic&gt;
33631 </BODY>
33632 </HTML>
33633 ====== h_config_allow_chg_from =====
33634 <HTML>
33635 <HEAD>
33636 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
33637 </HEAD>
33638 <BODY>
33639 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
33641 This feature affects Alpine's handling of the &quot;From:&quot; header field
33642 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
33643 option.
33645 If this feature is set then the From line can be changed just like
33646 all the other header fields that can be changed.
33647 This feature defaults to <EM>ON</EM>.
33649 Even with this feature turned ON (the default) you will not be able 
33650 to change the From header unless you add it to your list of
33651 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
33652 You may also want to change the
33653 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
33654 if you want the From header to always show up in the composer without
33655 having to type the Rich Headers command first.
33657 Note that many sites restrict the use of this feature in order to
33658 reduce the chance of falsified addresses and misdirected mail.
33659 If you want to change the value of what gets included in the From header
33660 in messages you send
33661 look <A HREF="h_config_change_your_from">here</A> for a description.
33663 <UL>   
33664 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33665 </UL><P>
33666 &lt;End of help on this topic&gt;
33667 </BODY>
33668 </HTML>
33669 ====== h_config_disable_collate =====
33670 <HTML>
33671 <HEAD>
33672 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
33673 </HEAD>
33674 <BODY>
33675 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
33677 This is a hard to understand feature that should only be used in rare cases.
33678 Normally, the C function call
33680 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
33682 is used by Alpine.
33683 If you want to try turning it off,
33684 setting this feature will turn it off.
33685 This part of the locale has to do with the sort order
33686 of characters in your locale.
33688 <UL>   
33689 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33690 </UL><P>
33691 &lt;End of help on this topic&gt;
33692 </BODY>
33693 </HTML>
33694 ====== h_config_quell_attach_extra_prompt =====
33695 <HTML>
33696 <HEAD>
33697 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
33698 </HEAD>
33699 <BODY>
33700 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
33702 By default, when you attempt to view an attachment externally
33703 from the &quot;Attachment View&quot; screen, you are asked if you
33704 really want to view the selected attachment.
33707 If this feature is set, you will <B>not</B> be prompted to confirm
33708 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
33709 prompt. This feature was added for those wanting to preserve that
33710 behavior (along with 
33711 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
33714 <UL>   
33715 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33716 </UL><P>
33717 &lt;End of help on this topic&gt;
33718 </BODY>
33719 </HTML>
33720 ====== h_config_quell_attach_ext_warn =====
33721 <HTML>
33722 <HEAD>
33723 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
33724 </HEAD>
33725 <BODY>
33726 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
33729 This feature suppresses the extra warning you can get when trying
33730 to view an attachment for which there is no mime-type match.  Turning
33731 on this feature will just run the program according to extension
33732 instead of first warning the user that it will run according to the
33733 file's extension.
33735 This feature can be used along side 
33736 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
33737 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
33739 <UL>   
33740 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33741 </UL><P>
33742 &lt;End of help on this topic&gt;
33743 </BODY>
33744 </HTML>
33745 ====== h_config_mailcap_params =====
33746 <HTML>
33747 <HEAD>
33748 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
33749 </HEAD>
33750 <BODY>
33751 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
33753 If set, this will allow mailcap named parameter substitution to occur
33754 in mailcap entries.
33755 By default, this is turned off to prevent security problems that may occur
33756 with some incorrect mailcap configurations.
33757 For more information, see RFC1524 and look for "named parameters" in the
33758 text of the RFC.
33760 <UL>   
33761 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33762 </UL><P>
33763 &lt;End of help on this topic&gt;
33764 </BODY>
33765 </HTML>
33766 ====== h_config_disable_shared =====
33767 <HTML>
33768 <HEAD>
33769 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
33770 </HEAD>
33771 <BODY>
33772 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
33774 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
33775 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
33776 will be disabled.
33777 The reason this feature exists is because there are some implementations
33778 of system password lookup routines that are very slow when presented with
33779 a long loginname that does not exist.
33780 This feature could be set to prevent the delay at startup time when the
33781 names above are searched for in the password file.
33783 <UL>   
33784 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33785 </UL><P>
33786 &lt;End of help on this topic&gt;
33787 </BODY>
33788 </HTML>
33789 ====== h_config_hide_nntp_path =====
33790 <HTML>
33791 <HEAD>
33792 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
33793 </HEAD>
33794 <BODY>
33795 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
33797 Normally the Path header that Alpine generates when posting to a newsgroup
33798 contains the name of the computer from which the message is being sent and
33799 the user name.
33800 Some believe that this information is used by spammers.
33801 If this feature is set, that information will be replaced with the text
33803 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
33805 instead.
33807 It should be noted that many servers being connected to will still reveal
33808 the information that this feature attempts to protect.
33810 <UL>   
33811 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33812 </UL><P>
33813 &lt;End of help on this topic&gt;
33814 </BODY>
33815 </HTML>
33816 ====== h_config_no_bezerk_zone =====
33817 <HTML>
33818 <HEAD>
33819 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
33820 </HEAD>
33821 <BODY>
33822 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
33824 POSIX mandates a timezone in UNIX mailbox format folder delimiters
33825 (the line that begins with From <SPACE>).
33826 Some versions of Berkeley mail have trouble with this, and don't recognize
33827 the line as a message delimiter.
33828 If this feature is set, the timezone will be left off the delimiter line.
33830 <UL>   
33831 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33832 </UL><P>
33833 &lt;End of help on this topic&gt;
33834 </BODY>
33835 </HTML>
33836 ====== h_config_quell_domain_warn =====
33837 <HTML>
33838 <HEAD>
33839 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
33840 </HEAD>
33841 <BODY>
33842 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
33844 When your configuration is set up so that your domain name contains no dots,
33845 it is usually a configuration error.
33846 By default, Alpine will warn you about this when you start it up.
33847 You will see a warning message that looks like
33850 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
33853 If this feature is set, the warning is turned off.
33855 <UL>   
33856 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33857 </UL><P>
33858 &lt;End of help on this topic&gt;
33859 </BODY>
33860 </HTML>
33861 ====== h_config_quell_imap_env =====
33862 <HTML>
33863 <HEAD>
33864 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
33865 </HEAD>
33866 <BODY>
33867 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
33869 In the MESSAGE INDEX screen, if the open folder is being accessed
33870 using IMAP, Alpine normally tries to paint the index lines on the screen
33871 as soon as the information arrives from the IMAP server.
33872 This means that the index information makes it onto the screen more quickly
33873 than it otherwise would.
33874 This sometimes results in behavior that bothers some users.
33875 For example, when paging to a new page of the index, it may be possible for
33876 the lines to be painted on the screen in a random order, rather than from
33877 top to bottom.
33880 Setting this feature causes Alpine to wait for all of the information
33881 to be gathered before it paints the index screen.
33882 Once it collects all of the information, the screen will be painted quickly
33883 from top to bottom.
33885 <UL>   
33886 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33887 </UL><P>
33888 &lt;End of help on this topic&gt;
33889 </BODY>
33890 </HTML>
33891 ====== h_config_quell_news_env =====
33892 <HTML>
33893 <HEAD>
33894 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
33895 </HEAD>
33896 <BODY>
33897 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
33899 In the MESSAGE INDEX screen, if the open folder is being accessed
33900 using NNTP (News), Alpine normally tries to paint the index lines on the screen
33901 as soon as the information arrives from the NNTP server.
33902 This means that the index information makes it onto the screen more quickly
33903 than it otherwise would.
33904 This sometimes results in behavior that bothers some users.
33905 For example, when paging to a new page of the index, it may be possible for
33906 the lines to be painted on the screen in a random order, rather than from
33907 top to bottom.
33910 Setting this feature causes Alpine to wait for all of the information
33911 to be gathered before it paints the index screen.
33912 Once it collects all of the information, the screen will be painted quickly
33913 from top to bottom.
33915 <UL>   
33916 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33917 </UL><P>
33918 &lt;End of help on this topic&gt;
33919 </BODY>
33920 </HTML>
33921 ====== h_config_quell_content_id =====
33922 <HTML>
33923 <HEAD>
33924 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
33925 </HEAD>
33926 <BODY>
33927 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
33929 This feature changes the behavior of Alpine when sending messages.
33930 It is intended to work around a bug in Microsoft's Outlook XP mail user
33931 agent.
33932 As of this writing, Microsoft has acknowledged the bug but
33933 has not added it to the Knowledge Base.
33934 We have been told that there will be a post-SP1 hotfix for Outlook XP.
33935 This particular bug has bug fix number OfficeQFE:4781.
33936 The nature of the bug is that messages with attachments that
33937 contain a Content-ID header (which standard Alpine attachments do)
33938 do not show the attachment indicator (a paperclip) when viewed with
33939 Outlook XP.
33940 So the user has no indication that the message contains an attachment.
33943 If this feature is set then Alpine will remove most Content-ID headers
33944 before sending a message.
33945 If an attachment is of type MESSAGE, then the existing Content-ID headers
33946 inside the message will be left intact.
33947 This would only happen with Alpine if a message was forwarded as an attachment
33948 or if a message with a message attached was forwarded.
33949 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
33950 the Content-ID headers of the alternative parts will not be removed.
33953 Because the Content-ID header is a standard part of MIME it is possible
33954 that setting this feature will break something.
33955 For example, if an attachment has a Content-ID header that is necessary
33956 for the correct functioning of that attachment, it is possible that Alpine
33957 may remove that header when the attachment is forwarded.
33958 However, it seems fairly safe at this time.
33961 <UL>   
33962 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33963 </UL><P>
33964 &lt;End of help on this topic&gt;
33965 </BODY>
33966 </HTML>
33967 ====== h_config_winpos_in_config =====
33968 <HTML>
33969 <HEAD>
33970 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
33971 </HEAD>
33972 <BODY>
33973 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
33975 PC-Alpine only.
33978 Normally, PC-Alpine will store its window size and position in the
33979 Windows Registry.
33980 This is convenient if you want to use the same remote
33981 configuration from more than one PC.
33982 If you use multiple configuration files to start PC-Alpine, you may want
33983 to store the window size and position in the configuration file instead
33984 of in the Registry.
33985 Setting this feature causes the value to be stored in 
33986 <A HREF="h_config_window_position">Window-Position</A>.
33989 <UL>   
33990 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33991 </UL><P>
33992 &lt;End of help on this topic&gt;
33993 </BODY>
33994 </HTML>
33995 ====== h_config_quell_ssl_largeblocks =====
33996 <HTML>
33997 <HEAD>
33998 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
33999 </HEAD>
34000 <BODY>
34001 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
34003 PC-Alpine only.
34005 This feature changes the behavior of fetching messages
34006 and attachments so that the message data is fetched in chunks no larger
34007 than 12K bytes.
34008 This works around a bug in Microsoft's SSL/TLS support.
34009 Some versions of Microsoft SSL are not able to read full-sized (16K)
34010 SSL/TLS packets.
34011 Some servers will send such packets and this will
34012 cause PC-Alpine to crash with the error
34015 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
34018 Microsoft is aware of the problem and has developed a hotfix for it, it is
34019 discussed in article 300562 in the Microsoft Knowledge Base.
34021 <UL>   
34022 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34023 </UL><P>
34024 &lt;End of help on this topic&gt;
34025 </BODY>
34026 </HTML>
34027 ====== h_config_quell_partial =====
34028 <HTML>
34029 <HEAD>
34030 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
34031 </HEAD>
34032 <BODY>
34033 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
34035 Partial fetching is a feature of the IMAP protocol.
34036 By default, Alpine
34037 will use partial fetching when copying the contents of a message or attachment
34038 from the IMAP server to Alpine.
34039 This means that the fetch will be done in many
34040 small chunks instead of one big chunk. The main benefit of this approach is
34041 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
34042 to stop the fetch early. In some cases partial fetching may cause a performance
34043 problem so that the fetching of data takes significantly longer when partial
34044 fetching is used. Turning on this feature will turn off partial fetching.
34046 <UL>   
34047 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34048 </UL><P>
34049 &lt;End of help on this topic&gt;
34050 </BODY>
34051 </HTML>
34052 ====== h_config_quell_personal_name_prompt =====
34053 <HTML>
34054 <HEAD>
34055 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
34056 </HEAD>
34057 <BODY>
34058 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
34060 PC-Alpine only.  This feature quells the prompting for a 
34061 <A HREF="h_config_pers_name">personal name</A>.  This
34062 prompt normally happens before composing a message, and only happens when
34063 there is no personal name already set.
34065 <UL>   
34066 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34067 </UL><P>
34068 &lt;End of help on this topic&gt;
34069 </BODY>
34070 </HTML>
34071 ====== h_config_quell_user_id_prompt =====
34072 <HTML>
34073 <HEAD>
34074 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
34075 </HEAD>
34076 <BODY>
34077 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
34079 PC-Alpine only.  This feature quells the prompting for a 
34080 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
34081 if the information can be obtained from the login name used
34082 to open the INBOX.  Normally, this prompt happens before composing
34083 a message, and only happens when there is no user-id already set
34084 in the configuration.
34086 With this feature set, composing a message is only possible after
34087 establishing a connection to the INBOX.
34089 <UL>   
34090 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34091 </UL><P>
34092 &lt;End of help on this topic&gt;
34093 </BODY>
34094 </HTML>
34095 ====== h_config_save_aggregates =====
34096 <HTML>
34097 <HEAD>
34098 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
34099 </HEAD>
34100 <BODY>
34101 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
34103 This feature will optimize an aggregate copy operation, if
34104 possible, by issuing a single IMAP <EM>COPY</EM> command with a
34105 list of the messages to be copied.
34106 This feature is set by default.
34107 This may reduce network traffic and elapsed time for the Save.
34108 <EM>However, many IMAP servers (including the UW IMAP server) do
34109 not preserve the order of messages when this optimization is applied.</EM>
34110 If this feature is not set, 
34111 Alpine will copy each message individually and the order of the messages
34112 will be preserved.
34114 <UL>   
34115 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34116 </UL><P>
34117 &lt;End of help on this topic&gt;
34118 </BODY>
34119 </HTML>
34120 ====== h_config_use_system_translation =====
34121 <HTML>
34122 <HEAD>
34123 <TITLE>FEATURE: Use System Translation</TITLE>
34124 </HEAD>
34125 <BODY>
34126 <H1>FEATURE: Use System Translation</H1>
34128 UNIX Alpine only.
34130 Alpine normally uses its own internal software to convert between the multi-byte
34131 representation of characters and the Unicode representation of those
34132 same characters.
34133 It converts from the multi-byte characters your keyboard produces to Unicode,
34134 and from Unicode to the multi-byte characters your display expects.
34135 Alpine also uses its own internal software to decide how much space on
34136 the screen a particular Unicode character will occupy.
34139 Setting this feature tells Alpine to use the system-supplied routines to
34140 perform these tasks instead.
34141 In particular there are three tasks and three system routines that will
34142 be used for these tasks.
34145 To convert from multi-byte to Unicode the routine
34148 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
34151 is used.
34152 To convert from Unicode to multi-byte the routine
34155 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
34158 is used.
34159 And to find the screen width a particular Unicode character will
34160 occupy the routine used is
34163 <CENTER><SAMP>wcwidth</SAMP></CENTER>
34166 This feature has been only lightly tested.
34167 The internal routines should normally be used unless you run into
34168 a problem that you think may be solved by using the system routines.
34169 Note that your environment needs to be set up for these
34170 routines to work correctly.
34171 In particular, the LANG or LC_CTYPE variable in your environment will
34172 need to be set.
34175 <UL>   
34176 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34177 </UL><P>
34178 &lt;End of help on this topic&gt;
34179 </BODY>
34180 </HTML>
34181 ====== h_config_suspend_spawns =====
34182 <HTML>
34183 <HEAD>
34184 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
34185 </HEAD>
34186 <BODY>
34187 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
34189 This feature affects Alpine's behavior when process suspension is enabled
34190 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
34191 temporarily interact with the operating system command &quot;shell&quot; 
34192 without
34193 quitting Alpine, and then subsequently resume the still-active Alpine session.
34196 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
34197 is set and subsequently the Ctrl-Z key
34198 is pressed, Alpine will normally suspend itself and return temporary control
34199 to Alpine's parent shell process.  However, if this feature is set, Alpine
34200 will instead create an inferior subshell process.  This is useful when the
34201 parent process is not intended to be used interactively.  Examples include
34202 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
34203 or via a menu system.<P>
34205 Note that one typically resumes a suspended Alpine by entering the Unix
34206 &quot;fg&quot; command, but if this feature is set, it will be necessary to
34207 enter the &quot;exit&quot; command instead.
34209 <UL>   
34210 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34211 </UL><P>
34212 &lt;End of help on this topic&gt;
34213 </BODY>
34214 </HTML>
34215 ====== h_config_8bit_smtp =====
34216 <HTML>
34217 <HEAD>
34218 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
34219 </HEAD>
34220 <BODY>
34221 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
34223 This feature affects Alpine's behavior when sending mail.
34224 By default, this feature is set.
34225 Internet standards
34226 require that all electronic mail messages traversing the global Internet
34227 consist of 7bit ASCII characters unless a pair of cooperating mail 
34228 transfer agents explicitly agree to allow 8bit messages.  In general, 
34229 then, exchanging messages in non-ASCII characters requires MIME encoding.
34231 However, there are now Internet standards that allow for unencoded 8bit
34232 exchange of messages between cooperating systems.  When this feature is set
34233 Alpine will try to negotiate unencoded 8bit transmission during the
34234 sending process.  Should the negotiation fail, Alpine will fall back to its
34235 ordinary encoding rules. 
34237 Note, this feature relies on your system's mail transport agent or
34238 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
34239 having the negotiation mechanism introduced in
34240 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
34241 &quot;8BITMIME&quot;. 
34243 ESMTP allows for graceful migration to upgraded mail transfer agents, but
34244 it is possible that this feature might cause problems for some servers. 
34245 <P><UL>
34246 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34247 </UL>
34248 <P>&lt;End of help on this topic&gt;
34249 </BODY>
34250 </HTML>
34251 ====== h_config_8bit_nntp =====
34252 <HTML>
34253 <HEAD>
34254 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
34255 </HEAD>
34256 <BODY>
34257 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
34259 This feature affects Alpine's behavior when posting news.  
34263 The Internet standard for exchanging USENET news messages (RFC-1036)
34264 specifies that USENET messages should conform to Internet mail standards
34265 and contain only 7bit characters, but much of the news transport software
34266 in use today is capable of successfully sending messages containing 8bit
34267 characters.  Hence, many people believe that it is appropriate to send 8bit
34268 news messages without any MIME encoding.
34272 Moreover, there is no Internet standard for explicitly negotiating 8bit
34273 transfer, as there is for Internet email.  Therefore, Alpine provides the
34274 option of posting unencoded 8bit news messages, though not as the default.
34275 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
34276 postings that contain 8bit characters. 
34280 Note, articles may cross a path or pass through news transport software
34281 that is unsafe or even hostile to 8bit characters.  At best this will only
34282 cause the posting to become garbled.  The safest way to transmit 8bit
34283 characters is to leave Alpine's MIME encoding turned on, but recipients
34284 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
34285 messages.
34287 &lt;End of help on this topic&gt;
34288 </BODY>
34289 </HTML>
34290 ====== h_config_mark_for_cc =====
34291 <HTML>
34292 <HEAD>
34293 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
34294 </HEAD>
34295 <BODY>
34296 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
34298 This feature affects Alpine's MESSAGE INDEX display.
34299 By default, a '+' is displayed in the first column if the
34300 message is addressed directly to you.
34301 When this feature is set and the message is not addressed to you, then a
34302 '-' character is displayed if the message is instead Cc'd directly
34303 to you.
34306 <UL>   
34307 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34308 </UL><P>
34309 &lt;End of help on this topic&gt;
34310 </BODY>
34311 </HTML>
34312 ====== h_config_tab_uses_unseen =====
34313 <HTML>
34314 <HEAD>
34315 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
34316 </HEAD>
34317 <BODY>
34318 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
34320 This feature affects Alpine's behavior when using the TAB
34321 <A HREF="h_common_nextnew">NextNew Command</A>
34322 to move from one folder to the next.
34323 Alpine's usual behavior is to search for folders
34324 with <EM>Recent</EM> messages in them.
34325 Recent messages are messages that have arrived since the last time the
34326 folder was opened.
34329 Setting this feature causes Alpine to search for <EM>Unseen</EM>
34330 messages instead of Recent messages.
34331 Unseen messages remain Unseen until you view them (or flag then as Seen with
34332 the <A HREF="h_common_flag">Flag Command</A>).
34333 Setting this feature allows you to locate messages you have not read
34334 instead of only recently received messages.
34335 When this feature is set, the feature
34336 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
34337 will have no effect, so the checking may be slower.
34340 Another reason why you might want to use this feature is that Alpine sometimes
34341 opens folders implicitly behind the scenes, and this clears the
34342 Recent status of all messages in the folder.
34343 One example where this happens is when Saving or filtering a
34344 message to another folder.
34345 If that message has some <A HREF="h_config_keywords">keywords</A>
34346 set, then because of some shortcomings
34347 in the IMAP specification, the best way to ensure that those keywords are
34348 still set in the saved copy of the message is to open the folder and
34349 set the keywords explicitly.
34350 Because this clears the Recent status of all messages in that folder the
34351 folder will not be found by the NextNew command unless this feature is set.
34354 &lt;End of help on this topic&gt;
34355 </BODY>
34356 </HTML>
34357 ====== h_config_tab_new_only =====
34358 <HTML>
34359 <HEAD>
34360 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
34361 </HEAD>
34362 <BODY>
34363 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
34365 This feature affects Alpine's behavior when using the TAB key to move from
34366 one message to the next.  Alpine's usual behavior is to select the next
34367 unread message or message flagged as "Important".
34371 Setting this feature causes Alpine to skip the messages flagged as important,
34372 and select unread messages exclusively.  Tab behavior when there are no
34373 new messages left to select remains unchanged.
34375 &lt;End of help on this topic&gt;
34376 </BODY>
34377 </HTML>
34378 ====== h_config_warn_if_subj_blank =====
34379 <HTML>
34380 <HEAD>
34381 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
34382 </HEAD>
34383 <BODY>
34384 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
34386 This feature affects Alpine's behavior when you send a message being
34387 composed.
34388 If this option is set, Alpine will check to see if the message about to be sent
34389 has a subject or not.
34390 If not, you will be asked if you want to send the message anyway.
34393 <UL>   
34394 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34395 </UL><P>
34396 &lt;End of help on this topic&gt;
34397 </BODY>
34398 </HTML>
34399 ====== h_config_warn_if_fcc_blank =====
34400 <HTML>
34401 <HEAD>
34402 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
34403 </HEAD>
34404 <BODY>
34405 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
34407 This feature affects Alpine's behavior when you send a message being
34408 composed.
34409 If this option is set, Alpine will check to see if the message about to be sent
34410 has an Fcc or not.
34411 If not, you will be asked if you want to send the message anyway.
34414 <UL>   
34415 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34416 </UL><P>
34417 &lt;End of help on this topic&gt;
34418 </BODY>
34419 </HTML>
34420 ====== h_config_warn_if_no_to_or_cc =====
34421 <HTML>
34422 <HEAD>
34423 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
34424 </HEAD>
34425 <BODY>
34426 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
34428 This feature affects Alpine's behavior when you send a message being
34429 composed.
34430 If this option is set, Alpine will check to see if the message about to be sent
34431 has either a To address, a Cc address, or a Newsgroup.
34432 If none of these is set,
34433 you will be asked if you want to send the message anyway.
34436 This feature is closely related to
34437 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
34438 Alpine will normally ask if you want to copy a message only to the Fcc.
34439 This feature also applies to cases where there is a Bcc but still no To, Cc,
34440 or Newsgroup.
34441 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
34442 message with only an Fcc, then you won't be asked about sending with
34443 a blank To and Cc and Newsgroups header even if this feature is set.
34444 Similarly, if you have already been asked if you want to send to the Fcc
34445 only and you have answered Yes, then you won't be asked again about sending with
34446 blank To, Cc, and Newsgroups headers even if this feature is set.
34449 <UL>   
34450 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34451 </UL><P>
34452 &lt;End of help on this topic&gt;
34453 </BODY>
34454 </HTML>
34455 ====== h_config_quell_dead_letter =====
34456 <HTML>
34457 <HEAD>
34458 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
34459 </HEAD>
34460 <BODY>
34461 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
34463 This feature affects Alpine's behavior when you cancel a message being
34464 composed.  Alpine's usual behavior is to write the canceled message to
34465 a file named 
34466 <!--chtml if pinemode="os_windows"-->
34467 &quot;DEADLETR&quot;,
34468 <!--chtml else-->
34469 &quot;dead.letter&quot; in your home directory,
34470 <!--chtml endif-->
34471 overwriting any previous message. Under
34472 some conditions (some routine), this can introduce a noticeable delay.
34473 Setting this feature will cause Alpine NOT to write canceled compositions
34474 into the file.
34476 NOTE: Enabling this feature means NO record of canceled messages is
34477 maintained.
34479 This feature affects the newer option
34480 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
34481 number of dead letter files to keep around.
34482 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
34484 <UL>   
34485 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34486 </UL><P>
34487 &lt;End of help on this topic&gt;
34488 </BODY>
34489 </HTML>
34490 ====== h_config_quell_beeps =====
34491 <HTML>
34492 <HEAD>
34493 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
34494 </HEAD>
34495 <BODY>
34496 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
34498 This feature affects Alpine's behavior when it displays status message
34499 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
34500 will not affect the display of such messages, but will cause those that
34501 emit a beep to become silent.
34504 <UL>   
34505 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34506 </UL><P>
34507 &lt;End of help on this topic&gt;
34508 </BODY>
34509 </HTML>
34510 ====== h_config_suppress_user_agent =====
34511 <HTML>
34512 <HEAD>
34513 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
34514 </HEAD>
34515 <BODY>
34516 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
34518 If this feature is set then Alpine will not generate a
34519 <CODE>User-Agent</CODE> header in outgoing messages.
34521 <UL>   
34522 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34523 </UL><P>
34524 &lt;End of help on this topic&gt;
34525 </BODY>
34526 </HTML>
34527 ====== h_config_quell_lock_failure_warnings =====
34528 <HTML>
34529 <HEAD>
34530 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
34531 </HEAD>
34532 <BODY>
34533 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
34535 This feature affects Alpine's behavior when it encounters a problem
34536 acquiring a mail folder lock.  Typically, a secondary file associated
34537 with the mail folder being opened is created as part of the locking
34538 process.  On some systems, such file creation has been administratively
34539 precluded by the system configuration.
34541 Alpine issues a warning when such failures occur, which can become bothersome
34542 if the system is configured to disallow such actions.  Setting this
34543 feature causes Alpine to remain silent when this part of lock creation fails.
34545 WARNING: systems that have been configured in a way that precludes locking
34546 introduce some risk of mail folder corruption when more than one program
34547 attempts to modify the mail folder.  This is most likely to occur to one's
34548 INBOX or other incoming message folder. 
34550 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
34552 <UL>   
34553 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34554 </UL><P>
34555 &lt;End of help on this topic&gt;
34556 </BODY>
34557 </HTML>
34558 ====== h_config_enable_role_take ======
34559 <HTML>
34560 <HEAD>
34561 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
34562 </HEAD>
34563 <BODY>
34564 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
34566 Normally, the Take command takes addresses from a message and helps you
34567 put them into your Address Book.
34568 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
34569 you may find it useful
34570 to be able to Take information from a message's headers and put it into
34571 a new Rule.
34572 When this feature is set, you will be given an extra prompt that gives
34573 you the choice to Take into the Address Book or Take into a rule.
34574 <P><UL>
34575 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34576 </UL>
34578 &lt;End of help on this topic&gt;
34579 </BODY>
34580 </HTML>
34581 ====== h_config_enable_take_export ======
34582 <HTML>
34583 <HEAD>
34584 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
34585 </HEAD>
34586 <BODY>
34587 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
34589 Normally, the Take command takes addresses from a message and helps you
34590 put them into your Address Book.
34591 When this feature is set, you will be given an extra prompt that gives you
34592 the choice to Take addresses into a file instead of your Address
34593 Book.
34594 Only the user@domain_name part of the address is put in the file.
34595 <P><UL>
34596 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34597 </UL>
34599 &lt;End of help on this topic&gt;
34600 </BODY>
34601 </HTML>
34602 ====== h_config_quell_folder_internal_msg ======
34603 <HTML>
34604 <HEAD>
34605 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
34606 </HEAD>
34607 <BODY>
34608 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
34610 This feature determines whether or not Alpine will create 
34611 &quot;pseudo messages&quot; in folders that are in standard Unix or 
34612 MMDF format. <P> 
34614 Alpine will normally create these pseudo messages when they are not already
34615 present in a standard Unix or MMDF folder.  Their purpose is to record
34616 certain mailbox state data needed for correct IMAP and POP server
34617 operation, and also for Alpine to be able to mark messages as Answered when
34618 the Reply has been postponed.<P>
34620 Sites that do not use IMAP/POP for remote mail access, and that need to
34621 support mail tools that are adversely affected by the presence of the
34622 pseudo-messages (e.g. some mail notification tools) may enable this
34623 feature to tell Alpine not to create them.  Note that Alpine's 
34624 &quot;Answered&quot; flag
34625 capability will be adversely affected if this is done.<P>
34627 Note too that, even if this feature is enabled, Alpine will not remove
34628 pseudo-messages when it encounters them (e.g. those created by UW's imapd
34629 or ipopd servers.) This feature has no effect on folders that are not in
34630 standard Unix or MMDF format, as pseudo-messages are not needed in the
34631 other formats to record mailbox state information.
34632 <P><UL>
34633 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34634 </UL>
34636 &lt;End of help on this topic&gt;
34637 </BODY>
34638 </HTML>
34639 ====== h_config_mulnews_as_typed ======
34640 <HTML>
34641 <HEAD>
34642 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
34643 </HEAD>
34644 <BODY>
34645 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
34647 This feature will be of little use to most users.
34648 It has no effect unless the feature
34649 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
34650 is set.
34652 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
34653 then the setting of this feature may have an effect on the names of the
34654 newsrc files used.
34655 Normally, the name of the news server will be canonicalized before it is
34656 used in the newsrc file name.
34657 For example, if you type the news server name
34660 <CENTER><SAMP>servername</SAMP></CENTER>
34663 it is likely that the canonical name will be something like
34666 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34669 Or it may be the case that
34672 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34675 is really an alias (a DNS CNAME) for
34678 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
34681 If this feature is not set, then the canonicalized names will be used.
34682 If this feature is set, then the name you typed in (or put in your
34683 configuration) will be used.
34685 <P><UL>
34686 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34687 </UL>
34689 &lt;End of help on this topic&gt;
34690 </BODY>
34691 </HTML>
34692 ====== h_config_quell_empty_dirs ======
34693 <HTML>
34694 <HEAD>
34695 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
34696 </HEAD>
34697 <BODY>
34698 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
34700 This feature causes Alpine to remove from the display any directories
34701 that do not contain at least one file or directory.  This can be useful
34702 to prevent overly cluttered folder lists when a collection is stored on
34703 a server that treats all names as both a folder and a directory.
34706 Note, enabling this feature can cause surprising behavior!  For example,
34707 you can still use Add to create a directory, but unless you immediately
34708 enter that directory and create a folder, that newly created directory
34709 may not be displayed next time you enter the folder list.
34712 The description above is not quite correct.
34713 Only directories which potentially may hold messages are hidden if empty.
34714 That is, a directory which is really just a directory and is not selectable
34715 as a folder will not be hidden.
34716 Such directories can occur on servers that treat most names as both a folder
34717 and a directory.
34718 These directories are typically created implicitly when a folder is created
34719 inside a directory that does not yet exist.
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_termcap_wins =====
34729 <HTML>
34730 <HEAD>
34731 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
34732 </HEAD>
34733 <BODY>
34734 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
34736 This feature may affect Alpine's low-level input routines.  Termcap (or
34737 terminfo, depending on how your copy of Alpine was compiled and linked)
34738 is the name of the database that describes terminal capabilities.  In
34739 particular, it describes the sequences of characters that various keys
34740 will emit.
34743 An example would be the Up Arrow key on the keyboard.  Up
34744 Arrow is not a distinct character on most Unix systems.  When you press
34745 the Up Arrow key a short sequence of characters are produced.  This
34746 sequence is supposed to be described in the termcap database by the
34747 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
34748 are using terminfo instead of termcap).
34751 By default, Alpine defines some terminal
34752 escape sequences that are commonly used.  For example, the sequence
34753 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
34754 &quot;ESC&nbsp;[&nbsp;A&quot;
34755 is also recognized as an Up Arrow key.  These are chosen because common
34756 terminals like VT100's or ANSI standard terminals produce these
34757 sequences when you press the Up Arrow key.
34760 If your system's termcap
34761 (terminfo) database assigns some other function to the sequence
34762 &quot;ESC&nbsp;O&nbsp;A&quot;
34763 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
34764 database assigns a sequence that doesn't begin with an escape
34765 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
34766 This usually works fine
34767 because most terminals emit the escape sequences that Alpine has defined
34768 by default.  We have also found that it is usually better to have these
34769 defaults take precedence over the definitions contained in the database
34770 because the defaults are more likely to be correct than the database.
34773 There are some terminals where this breaks down.  If you want Alpine to
34774 believe the definitions given in your termcap (terminfo) database in
34775 preference to the defaults the Alpine itself sets up, then you may turn
34776 this feature on.  Then, sequences of characters that are defined in
34777 both termcap (terminfo) and in Alpine's set of defaults will be
34778 interpreted the way that termcap (terminfo) says they should be
34779 interpreted.  Also, if your terminal capabilities database assigns a
34780 sequence that doesn't begin with escape, it will not be ignored.
34783 <UL>   
34784 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34785 </UL><P>
34786 &lt;End of help on this topic&gt;
34787 </BODY>
34788 </HTML>
34789 ====== h_config_cruise_mode =====
34790 <HTML>
34791 <HEAD>
34792 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
34793 </HEAD>
34794 <BODY>
34795 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
34797 This feature affects Alpine's behavior when you hit the
34798 &quot;Space&nbsp;Bar&quot; at
34799 the end of a displayed message.  Typically, Alpine complains that the end
34800 of the text has already been reached.  Setting this feature causes such
34801 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
34802 taking you to the next &quot;interesting&quot; message,
34803 or scanning ahead to the 
34804 next incoming folder with &quot;interesting&quot; messages.
34807 <UL>   
34808 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34809 </UL><P>
34810 &lt;End of help on this topic&gt;
34811 </BODY>
34812 </HTML>
34813 ====== h_config_cruise_mode_delete =====
34814 <HTML>
34815 <HEAD>
34816 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
34817 </HEAD>
34818 <BODY>
34819 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
34821 This feature modifies the behavior of Alpine's 
34822 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
34823 Setting this feature causes Alpine to implicitly delete read
34824 messages when it moves on to display the next &quot;interesting&quot; message.
34826 NOTE: Beware when enabling this feature AND the 
34827 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
34828 feature.
34830 <UL>   
34831 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34832 </UL><P>
34833 &lt;End of help on this topic&gt;
34834 </BODY>
34835 </HTML>
34836 ====== h_config_slash_coll_entire =====
34837 <HTML>
34838 <HEAD>
34839 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
34840 </HEAD>
34841 <BODY>
34842 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
34844 The slash (/) command is available from the MESSAGE INDEX screen when
34845 the folder is sorted by either Threads or OrderedSubject, and the
34846 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
34847 is set to something other than &quot;none&quot;.
34848 Normally, the slash command Collapses or Expands the subthread that
34849 starts at the currently highlighted message, if any.
34850 If this option is set, then the slash command Collapses or Expands the
34851 <EM>entire</EM> current thread instead of just the subthread.
34852 The current thread is simply the top-level thread that contains the
34853 current message.
34856 <UL>   
34857 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34858 </UL><P>
34859 &lt;End of help on this topic&gt;
34860 </BODY>
34861 </HTML>
34862 ====== h_config_color_thrd_import =====
34863 <HTML>
34864 <HEAD>
34865 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
34866 </HEAD>
34867 <BODY>
34868 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
34870 This option affects only the THREAD INDEX screen.
34871 Whether or not you ever see a THREAD INDEX screen depends on the setting
34872 of the configuration option
34873 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
34874 and on the sort order of the index.
34877 If a message within a thread is flagged as Important
34878 and this option is set, then
34879 the entire line in the THREAD INDEX will be colored the color of the
34880 Index-important Symbol, which can be set using the
34881 <A HREF="h_color_setup">Setup Kolor</A> screen.
34884 <UL>   
34885 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34886 </UL><P>
34887 &lt;End of help on this topic&gt;
34888 </BODY>
34889 </HTML>
34890 ====== h_config_allow_goto =====
34891 <HTML>
34892 <HEAD>        
34893 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
34894 </HEAD>
34895 <BODY>
34896 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
34898 This feature modifies the behavior of Alpine's file browser.  Setting this
34899 feature causes Alpine to offer the "G Goto" command in the file browser.
34900 That is the default.
34904 The Goto command allows you to explicitly type in the desired directory.
34906 &lt;End of help on this topic&gt;
34907 </BODY></HTML>
34908 ====== h_config_add_ldap =====
34909 <HTML>
34910 <HEAD>
34911 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
34912 </HEAD>
34913 <BODY>
34914 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
34916 If both the Directory option
34917 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
34918 and this feature are set,
34919 then when an implicit directory lookup is done from the
34920 composer you will automatically be prompted to add the result of the
34921 directory lookup to your address book.
34923 <UL>   
34924 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34925 </UL><P>
34926 &lt;End of help on this topic&gt;
34927 </BODY>
34928 </HTML>
34929 ===== h_patterns_compat_behavior =====
34930 <HTML>
34931 <HEAD>
34932 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
34933 </HEAD>
34934 <BODY>
34935 <H1>Rules Behavior Changes in Pine 4.50</H1>
34937 In Alpine, Rules that contain unrecognized elements
34938 are ignored.
34939 In most cases, the unrecognized elements will be something that was
34940 added as a new Rules feature in a later version of Alpine.
34941 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
34942 ignore rules that contained unrecognized elements.
34943 For example, a new element of Rules that was added in Pine 4.50 is
34944 Age interval.
34945 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
34946 all messages older than a week red.
34947 Now, if you run Pine 4.44 using that same configuration file, it will not
34948 recognize the Age interval and so will just ignore it.
34949 That means that all messages will match that rule so all messages will
34950 be colored red when using Pine version 4.44.
34953 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
34954 However, since the behavior still exists in versions prior to Pine 4.50 and
34955 since Filtering is a potentially destructive operation, another measure
34956 was taken to attempt to avoid unintentional Filtering of messages.
34957 The first time that you run Alpine or a Pine that is version 4.50 or greater,
34958 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
34959 will be copied to a new Filters configuration variable
34960 with a different name (&quot;Patterns-Filters2&quot;).
34961 From then on, Alpine will continue to use the new
34962 variable.
34963 Of course, Pine version 4.44 or lower will continue to use the old
34964 variable.
34965 That means that if you are using Alpine
34966 and also using a version of Pine that is older than 4.50, they will not
34967 share the configuration information about Filters.
34968 If you make a change in one version you won't see it in the other version.
34971 Since Scoring can be used to trigger Filtering, the same thing has been
34972 done for Score rules.
34973 The old configuration variable name is (&quot;Patterns-Scores&quot;)
34974 and the new name is (&quot;Patterns-Scores2&quot;).
34975 The same is not true of Role, Indexcolor, and Other rules that are
34976 thought to be less harmful when a mistake is made.
34979 &lt;End of help on this topic&gt;
34980 </BODY>
34981 </HTML>
34982 ======= h_config_filt_opts_sentdate =======
34983 <HTML>
34984 <HEAD>
34985 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
34986 </HEAD>
34987 <BODY>
34988 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
34990 By default, the Age interval of a Pattern uses a message's time of
34991 arrival to compute the age of the message.
34992 If this feature is set, the date in the message's Date header will
34993 be used instead.
34995 &lt;End of help on this topic&gt;
34996 </BODY>
34997 </HTML>
34998 ======= h_config_filt_opts_notdel =======
34999 <HTML>
35000 <HEAD>
35001 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
35002 </HEAD>
35003 <BODY>
35004 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
35006 If this option is set then a message will be moved into the
35007 specified folder only if it is not marked for deletion.
35008 This is useful if you have multiple Alpine sessions running
35009 simultaneously and you don't want messages to be filtered into a
35010 folder more than once.
35011 It is also useful if you want to filter
35012 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
35013 This method is not foolproof.
35014 There may be cases where a message
35015 gets marked deleted and so it is never filtered into the folder.
35016 For example, if you deleted it in another Alpine session or another mail
35017 program that didn't use the filtering rule.
35019 This option has no effect if the Filter Action is not set to Move.
35021 &lt;End of help on this topic&gt;
35022 </BODY>
35023 </HTML>
35024 ======= h_config_filt_opts_nonterm =======
35025 <HTML>
35026 <HEAD>
35027 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
35028 </HEAD>
35029 <BODY>
35030 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
35032 If this option is set then this is a non-terminating rule.
35033 Usually, for each message, Alpine searches through the Filter Rules until
35034 a match is found and then it performs the action associated with that rule.
35035 Rules following the match are not considered.
35036 If this option is set then the search for matches will continue at the next
35037 rule.
35039 If a non-terminating rule matches then the actions associated with
35040 that rule, except for any implied deletion of the message, are performed
35041 before the match for the next rule is checked.
35042 For example, if the non-terminating rule sets the Important status, then that
35043 status will be set when the next rule is considered.
35044 However, if the non-terminating rule Moves the message, the message will
35045 actually be copied instead of copied and deleted so that it is still there
35046 for the next rule.
35047 A moved message is deleted after all the relevant rules have been checked.
35048 The name of the &quot;Move&quot; action is confusing in this case because
35049 a single message can be moved to more than one folder.
35050 It turns the Move into a Copy instead, but it is still followed by a deletion
35051 at the end.
35053 This option may be useful if you want to have a single message filtered to
35054 two different folders because it matches two different Patterns.
35055 For example, suppose you normally filter messages to a particular mailing
35056 list into one folder, and messages addressed directly to you into a second
35057 folder.
35058 If a message is sent to both you and the list (and you can tell that by
35059 looking at the headers of the message) this option may give you a convenient
35060 way to capture a copy to each folder.
35061 (It may also cause you to capture two copies to each folder,
35062 depending on whether your mail system delivers one or two copies of the
35063 message to you and on how the list works.)
35065 &lt;End of help on this topic&gt;
35066 </BODY>
35067 </HTML>
35068 ===== h_mainhelp_smime ======
35069 <HTML>
35070 <HEAD>
35071 <TITLE>S/MIME Overview</TITLE>
35072 </HEAD>
35073 <BODY>
35074 <H1>S/MIME Overview</H1>
35076 S/MIME is a standard for the public key encryption and signing of email.
35077 UNIX Alpine contains a basic implementation of S/MIME based on
35078 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries. The
35079 same support can be provided using the 
35080 <A HREF="http://www.libressl.org/">LibreSSL</A> libraries. The
35081 support for S/MIME in PC-Alpine is fully based on the LibreSSL libraries.
35082 To check if this version of Alpine supports S/MIME look at
35083 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
35084 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
35086 Some limitations:
35087 <UL>
35088    <LI> There is no provision for checking for CRLs
35089         (Certificate Revocation Lists) in Alpine.
35090    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
35091    <LI> There is no mechanism available for feeding either an entire incoming
35092         or an entire outgoing message to an external
35093         filter and using that external filter to do S/MIME or PGP processing.
35094    <LI> Because the implementation currently uses OpenSSL, there is only a very
35095         limited integration with the Mac OS Keychain (the storing and access of
35096         public certificates).
35097 </UL>
35099 The S/MIME configuration screen is reached by going to the Main Menu and typing
35100 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
35103 <H2>S/MIME BASICS</H2>
35105 In order to digitally sign messages you send you must have a public/private key-pair.
35106 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
35107 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
35108 users or a company which provides certificates for its workers.
35109 These certificates are bound to an email address, so the identity being verified is the
35110 email address not a person's name.
35112 Mail is signed by using the sender's private key, which only the owner of the private key
35113 has access to.
35114 The signature is verified using the signer's public key, which anyone can
35115 have access to.
35116 With Alpine, the first time you receive a signed message the public key of the
35117 sender will be stored for future use.
35120 Mail is encrypted using the recipient's public key and decrypted by
35121 the recipient with their private key.
35124 You need a key of your own in order to sign outgoing messages and to have others
35125 encrypt messages sent to you.
35126 You do not need a key of your own to verify signed messages sent by others or to
35127 encrypt messages sent to others.
35129 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
35131 By default UNIX Alpine stores the certificates it uses in a directory in your
35132 home directory.
35133 The directory name is
35135 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
35137 For PC-Alpine, the equivalent directory is called 
35138 <CENTER><SAMP>alpine-smime</SAMP></CENTER>
35139 and is also located under your home directory.
35141 Within that directory are three subdirectories.
35142 Each of the three subdirectories contains files with PEM-encoded contents,
35143 the default format for OpenSSL.
35144 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
35145 The files within that directory have names that are email addresses with the
35146 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
35147 An example filename is
35149 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
35151 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
35152 your private key.
35153 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
35154 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
35155 Authorities that you want to trust but that aren't contained in the set of system CAs.
35156 Those files may have arbitrary names as long as they end with the
35157 suffix &quot;<SAMP>.crt</SAMP>&quot;.
35159 <H2>HOW TO SIGN AND ENCRYPT</H2>
35161 If you have a certificate you may sign outgoing messages.
35162 After typing the Ctrl-X command to send a message you will see the prompt
35164 <CENTER><SAMP>Send message?</SAMP></CENTER>
35166 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
35167 Typing the &quot;G&quot; command will change the prompt to
35169 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
35171 Typing the &quot;E&quot; command will change the prompt to
35173 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
35175 You may even type both to get
35177 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
35180 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
35182 The reading of a signed message should not require any special action on
35183 your part.
35184 There should be an editorial addition at the start of the message which
35185 says either
35187 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
35191 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
35193 If an encrypted message is sent to you the encrypted text will not
35194 be shown.
35195 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
35196 you are viewing the message) and supply your passphrase when asked.
35198 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
35199 which gives you some information about the certificate used to sign or encrypt the message.
35201 <H2>MISCELLANEOUS</H2>
35203 If you have access to a private certificate in the PKCS12 format, which 
35204 would sometimes be in a file with a &quot;.p12&quot; extension, then you can 
35205 use the following commands to generate private keys, public and certificate
35206 authorities certificates. In the examples below, we assume that the 
35207 certificate in the p12 format is called &quot;certificate.p12&quot;, and 
35208 that your email address is &quot;your@address.com&quot;.
35211 In order to create a private key use the command
35213 <CENTER><SAMP>openssl pkcs12 -in certificate.p12 -out your@address.com.key</SAMP></CENTER>
35215 In order to create a public certificate use the command
35217 <CENTER><SAMP>
35218 openssl pkcs12 -in certificate.p12 -clcerts -nokeys -out your@address.com.crt
35219 </SAMP></CENTER>
35221 In order to create a certificate authority certificate use the command
35223 <CENTER><SAMP>
35224 openssl pkcs12 -in certificate.p12 -cacerts -nokeys -out certificate-ca.crt 
35225 </SAMP></CENTER>
35227 <P> If the previous command produces an empty file, it means that the 
35228 certificate authority was not included in the .p12 file, so you will have 
35229 to get it from some other sources. You will need these certificates, so 
35230 that you can validate correctly signatures.
35233 After you have exported these certificates and keys, you can  use the import 
35234 command in Alpine, from the S/MIME configuration screen,
35235 to import these certificates into Alpine. They will be available for use
35236 as soon as you import them.
35238 &lt;End of help on this topic&gt;
35239 </BODY>
35240 </HTML>
35241 ====== h_config_smime_pubcertdir =====
35242 <HTML>
35243 <HEAD>
35244 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
35245 </HEAD>
35246 <BODY>
35247 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
35250 If the option
35251 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35252 is set then this option will have no effect.
35254 Normally, Public Certificates for use with S/MIME will be stored in the directory
35255 which is the value of this option.
35256 Those certificates will be stored in PEM format, one certificate per file.
35257 The name of the file for the certificate corresponding to
35259 <CENTER><SAMP>emailaddress</SAMP></CENTER>
35261 should be
35263 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
35265 For example, a file for user@example.com would be in the file
35267 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
35269 in this directory.
35271 Use the Setup/SMIME screen to modify this variable.
35273 Typically, the public certificates that you have will come from S/MIME signed
35274 messages that are sent to you.
35275 Alpine will extract the public certificate from the signed message and store
35276 it in the certificates directory.
35277 These PEM format public certificates look something like:
35278 <PRE>
35279 -----BEGIN CERTIFICATE-----
35280 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
35281 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
35282 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
35284 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
35285 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
35286 -----END CERTIFICATE-----
35287 </PRE>
35289 <UL>   
35290 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35291 </UL><P>
35293 <UL>   
35294 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35295 </UL><P>
35296 &lt;End of help on this topic&gt;
35297 </BODY>
35298 </HTML>
35299 ====== h_config_smime_pubcertcon =====
35300 <HTML>
35301 <HEAD>
35302 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
35303 </HEAD>
35304 <BODY>
35305 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
35308 If this option is set it will be used instead of
35309 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35311 This option gives you a way to store certificates remotely on an IMAP server
35312 instead of storing the certificates one per file locally.
35313 In order to do that you just give this option a remote folder name for a folder
35314 which does not yet exist.
35315 The name is similar to the name you might use for a remote configuration file.
35316 A remote folder name might look something like:
35318 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
35321 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35322 about the syntax of folder names.
35324 Use the Setup/SMIME screen to modify this variable.
35326 <UL>   
35327 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35328 </UL><P>
35330 <UL>   
35331 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35332 </UL><P>
35333 &lt;End of help on this topic&gt;
35334 </BODY>
35335 </HTML>
35336 ====== h_config_smime_privkeydir =====
35337 <HTML>
35338 <HEAD>
35339 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
35340 </HEAD>
35341 <BODY>
35342 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
35345 In order to sign outgoing S/MIME messages you will need a
35346 personal digital ID certificate.
35347 You will usually get such a certificate from a certificate authority such as
35348 Thawte or CAcert.
35349 (In order to encrypt outgoing messages you don't need a personal digital ID, you
35350 need the public certificate of the recipient instead.)
35351 If the option
35352 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
35353 is set then this option will have no effect.
35355 Normally, Private Keys for use with S/MIME will be stored in the directory
35356 which is the value of this option.
35357 Those certificates will be stored in PEM format, one certificate per file.
35358 The name of the file for the certificate corresponding to your
35360 <CENTER><SAMP>emailaddress</SAMP></CENTER>
35362 should be
35364 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
35366 For example, if your address is user@example.com the name of the file would be
35368 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
35370 in this directory.
35372 Use the Setup/SMIME screen to modify this variable.
35374 Typically, the private key that you have will come from a Certificate
35375 Authority.
35376 The private key should be stored in a PEM format file that
35377 looks something like:
35378 <PRE>
35379 -----BEGIN RSA PRIVATE KEY-----
35380 Proc-Type: 4,ENCRYPTED
35381 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
35383 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
35384 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
35385 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
35387 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
35388 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
35389 -----END RSA PRIVATE KEY-----
35390 </PRE>
35392 <UL>   
35393 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35394 </UL><P>
35396 <UL>   
35397 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35398 </UL><P>
35399 &lt;End of help on this topic&gt;
35400 </BODY>
35401 </HTML>
35402 ====== h_config_smime_privkeycon =====
35403 <HTML>
35404 <HEAD>
35405 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
35406 </HEAD>
35407 <BODY>
35408 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
35411 If this option is set it will be used instead of
35412 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35414 This option gives you a way to store keys remotely on an IMAP server
35415 instead of storing the keys one per file locally.
35416 In order to do that you just give this option a remote folder name for a folder
35417 which does not yet exist.
35418 The name is similar to the name you might use for a remote configuration file.
35419 A remote folder name might look something like:
35421 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
35424 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35425 about the syntax of folder names.
35427 Use the Setup/SMIME screen to modify this variable.
35429 <UL>   
35430 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35431 </UL><P>
35433 <UL>   
35434 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35435 </UL><P>
35436 &lt;End of help on this topic&gt;
35437 </BODY>
35438 </HTML>
35439 ====== h_config_smime_cacertdir =====
35440 <HTML>
35441 <HEAD>
35442 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
35443 </HEAD>
35444 <BODY>
35445 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
35448 If the option
35449 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
35450 is set then this option will have no effect.
35452 CACert is a shorthand name for certification authority certificate.
35453 Normally Alpine will use the CACerts that are located in the standard system
35454 location for CACerts.
35455 It may be the case that one of your correspondents has a Digital ID which has
35456 been signed by a certificate authority that is not in the regular set of system certificate
35457 authorities.
35458 You may supplement the system list by adding further certificates of your own.
35459 These should  be stored in the directory
35460 which is the value of this option.
35461 The certificates will be stored in PEM format, one certificate per file.
35462 The names of the files can be anything ending in &quot;.crt&quot;.
35464 Use the Setup/SMIME screen to modify this variable.
35466 These PEM format CA certificates look very similar to your public
35467 certificates for particular email addresses
35468 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
35470 <UL>   
35471 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35472 </UL><P>
35474 <UL>   
35475 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35476 </UL><P>
35477 &lt;End of help on this topic&gt;
35478 </BODY>
35479 </HTML>
35480 ====== h_config_smime_cacertcon =====
35481 <HTML>
35482 <HEAD>
35483 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
35484 </HEAD>
35485 <BODY>
35486 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
35489 If this option is set it will be used instead of
35490 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35492 This option gives you a way to store certificates remotely on an IMAP server
35493 instead of storing the certificates one per file locally.
35494 In order to do that you just give this option a remote folder name for a folder
35495 which does not yet exist.
35496 The name is similar to the name you might use for a remote configuration file.
35497 A remote folder name might look something like:
35499 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
35502 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35503 about the syntax of folder names.
35505 Use the Setup/SMIME screen to modify this variable.
35507 <UL>   
35508 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35509 </UL><P>
35511 <UL>   
35512 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35513 </UL><P>
35514 &lt;End of help on this topic&gt;
35515 </BODY>
35516 </HTML>
35517 ========== h_config_smime_sign_by_default ==========
35518 <HTML>
35519 <HEAD>
35520 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
35521 </HEAD>
35522 <BODY>
35523 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
35526 This feature only has an effect if your version of Alpine includes
35527 support for S/MIME.
35528 It affects Alpine's behavior when you send a message.
35529 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
35531 Only the default value is affected.
35532 In any case, you may still toggle the Signing option on or off before sending
35533 with the &quot;G Sign&quot; command (provided you have a personal digital ID
35534 certificate).
35536 <UL>   
35537 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35538 </UL><P>
35541 <UL>   
35542 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35543 </UL><P>
35544 &lt;End of help on this topic&gt;
35545 </BODY>
35546 </HTML>
35547 ========== h_config_smime_use_cert_store ==========
35548 <HTML>
35549 <HEAD>
35550 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></TITLE>
35551 </HEAD>
35552 <BODY>
35553 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></H1>
35556 This feature only has an effect if your version of Alpine includes
35557 support for S/MIME.
35558 It affects Alpine's behavior when you validate a message, and should
35559 not be disabled, unless you are performing a test.
35561 There are two important aspects of validation: validation of the message
35562 (that is, the message was not modified after it was sent) 
35563 as well as validation of the identity of the sender. This option has to 
35564 do with the latter. 
35566 In order to validate that the message came from the sender in the message
35567 and not an impersonator, Alpine can 
35568 either use the certificates that come in the message, or the ones that 
35569 you have personally stored. If this feature is enabled (the default) then 
35570 Alpine will use certificates that you have already saved in your store 
35571 and not those that come in the message to validate the sender of the 
35572 message. In particular, the first time that you receive a signed message
35573 from a sender, and their certificate does not validate against your
35574 store, then you will be asked if you wish to save such certificate. If
35575 you do not wish to save the certificate, then Alpine will fail to validate
35576 the signature of the message. Otherwise, Alpine will proceed to validate
35577 the signature of the message. This behavior helps you prevent against impersonation, because 
35578 it is assumed that you trust the certificates that you have saved, and 
35579 might not trust those that came with the message that you are validating.
35581 <UL>   
35582 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35583 </UL><P>
35586 <UL>   
35587 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35588 </UL><P>
35589 &lt;End of help on this topic&gt;
35590 </BODY>
35591 </HTML>
35592 ========== h_config_smime_pubcerts_in_keychain ==========
35593 <HTML>
35594 <HEAD>
35595 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
35596 </HEAD>
35597 <BODY>
35598 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
35601 If this feature is set the Mac OS X default keychain will be used as the place
35602 to store public certificates instead of a
35603 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35604 or a
35605 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35607 <UL>   
35608 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35609 </UL><P>
35611 <UL>   
35612 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35613 </UL><P>
35614 &lt;End of help on this topic&gt;
35615 </BODY>
35616 </HTML>
35617 ========== h_config_smime_dont_do_smime ==========
35618 <HTML>
35619 <HEAD>
35620 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
35621 </HEAD>
35622 <BODY>
35623 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
35626 Setting this feature turns off all of Alpine's S/MIME support.
35627 You might want to set this if you are having trouble due to the S/MIME support.
35629 <UL>   
35630 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35631 </UL><P>
35634 <UL>   
35635 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35636 </UL><P>
35637 &lt;End of help on this topic&gt;
35638 </BODY>
35639 </HTML>
35640 ========== h_config_smime_encrypt_by_default ==========
35641 <HTML>
35642 <HEAD>
35643 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
35644 </HEAD>
35645 <BODY>
35646 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
35649 This feature only has an effect if your version of Alpine includes
35650 support for S/MIME.
35651 It affects Alpine's behavior when you send a message.
35652 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
35654 Only the default value is affected.
35655 In any case, you may still toggle the Encrypt option on or off before sending
35656 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
35657 for the recipient).
35659 <UL>   
35660 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35661 </UL><P>
35664 <UL>   
35665 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35666 </UL><P>
35667 &lt;End of help on this topic&gt;
35668 </BODY>
35669 </HTML>
35670 ========== h_config_smime_remember_passphrase ==========
35671 <HTML>
35672 <HEAD>
35673 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
35674 </HEAD>
35675 <BODY>
35676 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
35679 This feature only has an effect if your version of Alpine includes
35680 support for S/MIME.
35681 If this option is set, you will only have to enter your passphrase for your private key
35682 once during an Alpine session.
35684 <UL>   
35685 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35686 </UL><P>
35689 <UL>   
35690 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35691 </UL><P>
35692 &lt;End of help on this topic&gt;
35693 </BODY>
35694 </HTML>
35695 ====== h_config_smime_transfer_pub_to_con =====
35696 <HTML>
35697 <HEAD>
35698 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
35699 </HEAD>
35700 <BODY>
35701 <H1>S/MIME: Transfer Public Certs to Container</H1>
35704 The Transfer command will copy the public certificates in your configured
35705 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35706 to the container in your configured
35707 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35708 This might be useful if you decide to switch from using a cert directory to a cert
35709 container.
35711 Warning: Any previous contents in the container will be lost.
35713 <UL>   
35714 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35715 </UL><P>
35717 <UL>   
35718 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35719 </UL><P>
35720 &lt;End of help on this topic&gt;
35721 </BODY>
35722 </HTML>
35723 ====== h_config_smime_transfer_pub_to_dir =====
35724 <HTML>
35725 <HEAD>
35726 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
35727 </HEAD>
35728 <BODY>
35729 <H1>S/MIME: Transfer Public Certs to Directory</H1>
35732 The Transfer command will copy the public certificates in your configured
35733 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35734 to the directory in your configured
35735 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35736 This might be useful if you decide to switch from using a cert container to a cert
35737 directory.
35739 <UL>   
35740 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35741 </UL><P>
35743 <UL>   
35744 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35745 </UL><P>
35746 &lt;End of help on this topic&gt;
35747 </BODY>
35748 </HTML>
35749 ====== h_config_smime_transfer_priv_to_con =====
35750 <HTML>
35751 <HEAD>
35752 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
35753 </HEAD>
35754 <BODY>
35755 <H1>S/MIME: Transfer Private Keys to Container</H1>
35758 The Transfer command will copy the private keys in your configured
35759 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35760 to the container in your configured
35761 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35762 This might be useful if you decide to switch from using a key directory to a key
35763 container.
35765 Warning: Any previous contents in the container will be lost.
35767 <UL>   
35768 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35769 </UL><P>
35771 <UL>   
35772 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35773 </UL><P>
35774 &lt;End of help on this topic&gt;
35775 </BODY>
35776 </HTML>
35777 ====== h_config_smime_transfer_priv_to_dir =====
35778 <HTML>
35779 <HEAD>
35780 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
35781 </HEAD>
35782 <BODY>
35783 <H1>S/MIME: Transfer Private Keys to Directory</H1>
35786 The Transfer command will copy the private keys in your configured
35787 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35788 to the directory in your configured
35789 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35790 This might be useful if you decide to switch from using a key container to a key
35791 directory.
35793 <UL>   
35794 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35795 </UL><P>
35797 <UL>   
35798 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35799 </UL><P>
35800 &lt;End of help on this topic&gt;
35801 </BODY>
35802 </HTML>
35803 ====== h_config_smime_transfer_cacert_to_con =====
35804 <HTML>
35805 <HEAD>
35806 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
35807 </HEAD>
35808 <BODY>
35809 <H1>S/MIME: Transfer CA Certs to Container</H1>
35812 The Transfer command will copy the CA certificates in your configured
35813 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
35814 to the container in your configured
35815 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35816 This might be useful if you decide to switch from using a CA cert directory to a CA cert
35817 container.
35819 Warning: Any previous contents in the container will be lost.
35821 <UL>   
35822 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35823 </UL><P>
35825 <UL>   
35826 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35827 </UL><P>
35828 &lt;End of help on this topic&gt;
35829 </BODY>
35830 </HTML>
35831 ====== h_config_smime_transfer_cacert_to_dir =====
35832 <HTML>
35833 <HEAD>
35834 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
35835 </HEAD>
35836 <BODY>
35837 <H1>S/MIME: Transfer CA Certs to Directory</H1>
35840 The Transfer command will copy the CA certificates in your configured
35841 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
35842 to the directory in your configured
35843 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35844 This might be useful if you decide to switch from using a CA cert container to a CA cert
35845 directory.
35847 <UL>   
35848 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35849 </UL><P>
35851 <UL>   
35852 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35853 </UL><P>
35854 &lt;End of help on this topic&gt;
35855 </BODY>
35856 </HTML>
35857 ====== h_config_smime_transfer_pubcon_to_key =====
35858 <HTML>
35859 <HEAD>
35860 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35861 </HEAD>
35862 <BODY>
35863 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35865 Mac OS X Alpine only.
35867 The Transfer command will copy the public certificates in your configured
35868 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35869 to your default Mac OS X Keychain.
35870 This might be useful if you decide to switch from using a cert container to using
35871 the Keychain to store your public certs, which you may do by using the
35872 feature
35873 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
35875 <UL>   
35876 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35877 </UL><P>
35879 <UL>   
35880 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35881 </UL><P>
35882 &lt;End of help on this topic&gt;
35883 </BODY>
35884 </HTML>
35885 ====== h_config_smime_transfer_pubkey_to_con =====
35886 <HTML>
35887 <HEAD>
35888 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
35889 </HEAD>
35890 <BODY>
35891 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
35894 The Transfer command will copy the public certificates in your configured
35895 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35896 to your default Mac OS X Keychain.
35897 This might be useful if you decide to switch from using a cert container to using
35898 the Keychain to store your public certs.
35900 <UL>   
35901 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35902 </UL><P>
35904 <UL>   
35905 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35906 </UL><P>
35907 &lt;End of help on this topic&gt;
35908 </BODY>
35909 </HTML>
35910 ====== h_config_smime_public_certificates =====
35911 <HTML>
35912 <HEAD>
35913 <TITLE>S/MIME: Manage Public Certificates</TITLE>
35914 </HEAD>
35915 <BODY>
35916 <H1>S/MIME: Manage Public Certificates</H1>
35919 This menu item allows you to manage your public certificates, this
35920 may include your own public certificate, but it normally includes
35921 certificates of people you correspond with. These certificates are
35922 saved by Alpine automatically when they are found in signed messages
35923 that you receive. This interface allows you to manage them, by
35924 giving you the option to delete them, or trust them (in the case
35925 of self-signed certificates).
35928 Please note that Alpine will not validate a message that was sent to you
35929 using a self-signed certificate, unless you decide to trust that certificate.
35930 Internally, a certificate is trusted by copying it to the
35931 <A HREF="h_config_smime_certificate_authorities">Certificate Authorities</A> 
35932 collection. If you decide that you want to stop trusting a self-signed
35933 certificate, you must delete such certificate from such collection.
35935 The <B>I</B> Import command available in this screen allows you to 
35936 import a command to this collection.
35938 <UL>   
35939 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35940 </UL><P>
35942 <UL>   
35943 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35944 </UL><P>
35945 &lt;End of help on this topic&gt;
35946 </BODY>
35947 </HTML>
35948 ====== h_config_smime_private_keys =====
35949 <HTML>
35950 <HEAD>
35951 <TITLE>S/MIME: Manage Private Keys</TITLE>
35952 </HEAD>
35953 <BODY>
35954 <H1>S/MIME: Manage Private Keys</H1>
35957 This option allows you to manage your private key. Normally a person has only
35958 one key, in the same way that a person only has one valid passport, or ID card,
35959 at any given time. This option allows you to manage private keys. You can
35960 delete them or import them. Additionally, you can view information
35961 about your public certificate, such as the issuer and the dates of validity
35962 of such certificate, among others.
35965 If you have more than one e-mail address for which you want to use the 
35966 same private key, you must add all those addresses to the private key at 
35967 the moment that the key is generated. When you receive a signed message using 
35968 a key generated for several e-mail addresses, Alpine will save a 
35969 certificate for each e-mail address included in such certificate.
35971 The <B>I</B> Import command available in this screen allows you to 
35972 import a command to this collection.
35974 <UL>   
35975 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35976 </UL><P>
35978 <UL>   
35979 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35980 </UL><P>
35981 &lt;End of help on this topic&gt;
35982 </BODY>
35983 </HTML>
35984 ====== h_config_smime_certificate_authorities =====
35985 <HTML>
35986 <HEAD>
35987 <TITLE>S/MIME: Manage Certificate Authorities</TITLE>
35988 </HEAD>
35989 <BODY>
35990 <H1>S/MIME: Manage Certificate Authorities</H1>
35993 This collection contains certificates that are needed to validate the 
35994 certificate of another person, and therefore contains certificates that 
35995 you trust. Typically a certificate is signed by another entity, called a 
35996 certificate authority. This option allows you to manage which certificates 
35997 you trust, allowing you to import them and to delete them or view information
35998 about each certificate, such as the issuer and the dates of validity
35999 of such certificate.
36001 The <B>I</B> Import command available in this screen allows you to 
36002 import a command to this collection.
36004 <UL>   
36005 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36006 </UL><P>
36008 <UL>   
36009 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36010 </UL><P>
36011 &lt;End of help on this topic&gt;
36012 </BODY>
36013 </HTML>
36014 ====== h_config_smime_password_file_certificates =====
36015 <HTML>
36016 <HEAD>
36017 <TITLE>S/MIME: Manage Password File Certificates</TITLE>
36018 </HEAD>
36019 <BODY>
36020 <H1>S/MIME: Manage Password File Certificates</H1>
36023 This option allows you to manage the certificates that are used to
36024 encrypt and decrypt your password file. This is useful in case you
36025 want to change the certificates used to encrypt your password file.
36027 Depending on the version of Alpine that you used for the first time
36028 to set this up, you might have had to enter a password to enter this
36029 screen. In the case that you did not enter a password to enter this
36030 screen, you should know two things that are important:
36031 <UL>
36032 <LI> If anyone takes control of your computer (for example, if you 
36033 left it unattended) then that person can add a password to your
36034 password file and make it unreadable to you in the future.
36035 <LI> If anyone can access your computer (this includes remote access)
36036 then that person can steal your password file and decrypt it without
36037 your help. This gives access to that person to the same services you
36038 have access and such person can use your name to access that service.
36039 In particular, that person can try to hack into your service provider
36040 with your name on it, or that person could try to send spam with
36041 your name.
36042 </UL>
36043 <P> Needless to say, this is not advisable. You should keep your
36044 password file protected. In order to do so, all you need to do is use
36045 the &quot;Create Key&quot; command to create a key. Once you do this,
36046 Alpine will use that key, encrypted with the password used to create that
36047 key, to protect your password file.
36049 In this screen you can import a new key to encrypt your password file, 
36050 and read cryptographic information on your current key.
36052 To import a new key press &quot;RETURN&quot; and enter the location of
36053 the new key. You will be asked to enter the password of the new key. If
36054 this part of the process is successful, Alpine will search for the 
36055 certificate that matches that key. If your key is named 
36056 &quot;your_email@address.com.key&quot;, then Alpine will look for your
36057 certificate in the same directory in the file named
36058 &quot;your_email@address.com.crt&quot;, otherwise it will look for it
36059 as part of your key (that is, it will look to see if your certificate
36060 is in the file &quot;your_email@address.com.key&quot;), if all of this
36061 fails, Alpine will ask you to enter the location of the certificate
36062 that matches the key you unlocked. If a certificate is found, it will be 
36063 used, and in this case, the password file will be read, decrypted with the 
36064 old key and encrypted with the new key. Once this is done, the new key and 
36065 certificates are saved, and the old keys are permanently deleted.
36067 Alpine does not create a backup of your password file, or your old keys
36068 that will be replaced. If you need to keep old copies, you will have to do
36069 this operation outside Alpine.
36071 Observe that you can use this screen to remove the password for the key.
36072 As explained earlier, this is not advisable, but you can always restore the
36073 password to encrypt your password file by creating a new key.
36075 Be safe and keep your password file encrypted with a password.
36076 <UL>   
36077 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36078 </UL><P>
36080 <UL>   
36081 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36082 </UL><P>
36083 &lt;End of help on this topic&gt;
36084 </BODY>
36085 </HTML>
36086 ====== h_certificate_information =====
36087 <HTML>
36088 <HEAD>
36089 <TITLE>S/MIME: Certificate Information Screen</TITLE>
36090 </HEAD>
36091 <BODY>
36092 <H1>S/MIME: Certificate Information Screen</H1>
36095 The CERTIFICATE INFORMATION screen shows you information contained in a certificate
36096 such as its owner, e-mail address, issuer, and interval of validity, 
36097 among others.
36099 In the case of public certificates, this screen shows you if there was a
36100 failure when attempting to validate such message. If the certificate is
36101 self-signed, then the <B>T</B> Trust command will be available, which
36102 you can use to trust such certificate and make Alpine not fail validating 
36103 signatures signed with such certificate.
36105 You can also mark a certificate deleted, with the <B>D</B> command, or 
36106 remove the deleted mark with the <B>U</B> undelete command.
36108 In the case of your private key, Alpine shows you the information
36109 from your public key. Additionally, Alpine allows you to see public
36110 and private information about your key, with the <B>B</B> and
36111 <B>R</B> commands respectively.
36112 <UL>   
36113 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36114 </UL><P>
36116 <UL>   
36117 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36118 </UL><P>
36119 &lt;End of help on this topic&gt;
36120 </BODY>
36121 </HTML>
36122 ====== h_config_smime_manage_public_menu =====
36123 <HTML>
36124 <HEAD>
36125 <TITLE>S/MIME: Menu of Commands to Manage Public Certificates</TITLE>
36126 </HEAD>
36127 <BODY>
36128 <H1>S/MIME: Commands that Manage Public Certificates</H1>
36131 This screen allows you to manage your public certificates. 
36133 The format of this screen is as follows. There are five fields: The 
36134 leftmost field is normally empty, but it could contain the letter 
36135 &quot;D&quot; to indicate that that certificate has been marked for 
36136 deletion. The next field is the e-mail address of the owner of the 
36137 certificate, shown in its entirety. The third and fourth field are the 
36138 first and last day validity for that certificate, respectively. The date
36139 is displayed in the user's locale unless the option 
36140 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>
36141 is set. In this case, the month, day and year are represented by two
36142 digits, and the format used is mm/dd/yy. Finally, the fifth 
36143 field is what can be displayed of the MD5 hash of the certificate. You can 
36144 use any of the last three fields to distinguish between two certificates 
36145 for the same owner.
36147 Available commands in this screen and a short description of what they 
36148 do follows.
36149 <UL>
36150 <LI> <B>I</B> Imports a public certificate to this collection.
36151 <LI> <B>V</B> View information about a certificate such as the name of the person the
36152 certificate was issued to, its dates of validity, and validity status.
36153 <LI> <B>D</B> Marks a certificate deleted.
36154 <LI> <B>U</B> Removes the deletion mark on a certificate.
36155 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
36156 <LI> <B>T</B> This command is only available for self-signed certificates, and allows you to
36157 trust a certificate by copying it to the collection of trusted certificates.
36158 </UL>
36160 All commands provide feedback to let you know about their success or failure.
36162 <UL>   
36163 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36164 </UL><P>
36166 <UL>   
36167 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36168 </UL><P>
36169 &lt;End of help on this topic&gt;
36170 </BODY>
36171 </HTML>
36172 ====== h_config_smime_manage_private_menu =====
36173 <HTML>
36174 <HEAD>
36175 <TITLE>S/MIME: Menu of Commands to Manage Private Keys</TITLE>
36176 </HEAD>
36177 <BODY>
36178 <H1>S/MIME: Commands that Manage Private Keys</H1>
36181 This screen allows you to manage your private key.
36183 The format of this screen is as follows. There are five fields: The 
36184 leftmost field is normally empty, but it could contain the letter 
36185 &quot;D&quot; to indicate that that certificate has been marked for 
36186 deletion. The next field is the e-mail address of the owner of the 
36187 certificate, shown in its entirety. The third field is the first day of 
36188 validity for that certificate; the fourth field in the last day that that 
36189 certificate is valid, and the fifth field is what can be displayed of the 
36190 MD5 hash of the public certificate corresponding to this private key. You 
36191 can use any of the last three fields to distinguish between two 
36192 certificates for the same owner.
36194 Available commands and a short description of what they do follows.
36195 <UL>
36196 <LI> <B>I</B> Imports a new public key to this collection.
36197 <LI> <B>V</B> View information about the public certificate corresponding to this
36198 key.
36199 <LI> <B>D</B> Marks a key to be deleted.
36200 <LI> <B>U</B> Removes the deletion mark on a key.
36201 <LI> <B>X</B> Removes all keys marked deleted permanently (cannot be undone).
36202 Note that expunging a private key does not remove the public key, which must
36203 be removed separately.
36204 </UL>
36206 All commands provide feedback to let you know about their success or failure.
36208 <UL>   
36209 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36210 </UL><P>
36212 <UL>   
36213 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36214 </UL><P>
36215 &lt;End of help on this topic&gt;
36216 </BODY>
36217 </HTML>
36218 ====== h_config_smime_manage_cacerts_menu =====
36219 <HTML>
36220 <HEAD>
36221 <TITLE>S/MIME: Menu of Commands to Manage Certificate Authorities</TITLE>
36222 </HEAD>
36223 <BODY>
36224 <H1>S/MIME: Commands that Manage Certificate Authorities</H1>
36227 This screen allows you to manage your collection of certificates that you
36228 trust. 
36230 The format of this screen is as follows. There are five fields: The 
36231 leftmost field is normally empty, but it could contain the letter 
36232 &quot;D&quot; to indicate that that certificate has been marked for 
36233 deletion. The next field is the e-mail address of the owner of the 
36234 certificate, shown in its entirety. The third field is the first day of 
36235 validity for that certificate; the fourth field in the last day that that 
36236 certificate is valid, and the fifth field is what can be displayed of the 
36237 MD5 hash of the certificate. You can use any of the last three fields to 
36238 distinguish between two certificates for the same owner.
36240 Available commands and a short description of what they do follows.
36241 <UL>
36242 <LI> <B>I</B> Imports a trusted certificate to this collection. This is
36243 done by reading the certificate and validating it. Once a certificate
36244 is found to be valid, it is saved, adding the extension &quot;.crt&quot;
36245 to the certificate, if necessary.
36246 <LI> <B>V</B> View information about this certificate, such as its issuer 
36247 and validity dates.
36248 <LI> <B>D</B> Marks a certificate to be deleted.
36249 <LI> <B>U</B> Removes the deletion mark on a certificate.
36250 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
36251 </UL>
36253 All commands provide feedback to let you know about their success or failure.
36255 <UL>
36256 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36257 </UL><P>
36259 <UL>   
36260 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36261 </UL><P>
36262 &lt;End of help on this topic&gt;
36263 </BODY>
36264 </HTML>
36265 ====== h_config_lame_list_mode =====
36266 <HTML>
36267 <HEAD>
36268 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
36269 </HEAD>
36270 <BODY>
36271 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
36273 This feature modifies the method Alpine uses to ask your IMAP
36274 server for folder names to display in the FOLDER LIST screen.
36275 It is intended to compensate for a small set of IMAP servers that
36276 are programmed to ignore a part of the request, and thus respond
36277 to Alpine's query with nonsensical results.
36280 If you find that Alpine is erroneously displaying blank folder lists,
36281 try enabling this feature.
36284 NOTE: Enabling this feature has consequences for the Goto and Save
36285 commands.  Many servers allow access to folders outside the area
36286 reserved for your personal folders via some reserved character,
36287 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
36288 allows, at the Goto and Save prompts, quick access to folders
36289 outside your personal folder collection without requiring a specific
36290 collection definition.  This behavior will generally not be available
36291 when this feature is enabled.
36294 <UL>   
36295 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36296 </UL><P>
36297 &lt;End of help on this topic&gt;
36298 </BODY>
36299 </HTML>
36300 ====== h_config_enable_mulnewsrcs =====
36301 <HTML>
36302 <HEAD>
36303 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
36304 </HEAD>
36305 <BODY>
36306 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
36308 This feature makes it so Alpine can use multiple newsrcs based on
36309 the news server being connected to, which allows for separate lists
36310 of subscribed-to newsgroups. When this feature is not set, there is only
36311 one list of newsgroups.
36313 Under this feature, the name of a newsrc is based on the news server.
36314 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
36315 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
36316 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
36317 Setting this feature for the first time will allow for the option of using
36318 your old newsrc the next time you read news.
36320 If this feature is set, then the feature
36321 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
36322 also may affect the name of the newsrc file that is used.
36324 <UL>   
36325 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36326 </UL><P>
36327 &lt;End of help on this topic&gt;
36328 </BODY>
36329 </HTML>
36330 ======= h_ab_export_vcard =======
36331 <HTML>
36332 <HEAD>
36333 <TITLE>Address Book Export Format</TITLE>
36334 </HEAD>
36335 <BODY>
36336 <H1>Address Book Export Format</H1>
36338 You are exporting address book data from Alpine to a file outside of Alpine.
36339 You are being asked to choose the format of the export.
36340 Here are the choices:
36342 <DL>
36343 <DT><EM>A</EM>ddress List</DT>
36344 <DD>
36345 The addresses from the address book entries you are saving
36346 from will be saved one address per line.
36347 Address book lists (those with more than one address) will have
36348 all of their addresses saved separately.
36349 </DD>
36351 <DT><EM>V</EM>Card</DT>
36352 <DD>
36353 The entries will be saved in
36354 <A HREF="h_whatis_vcard">vCard</A> format.
36355 </DD>
36357 <DT><EM>T</EM>ab Separated</DT>
36358 <DD>
36359 The entries will be saved in tab-separated columns.
36360 There will be just 4 columns of data that correspond to Alpine's
36361 Nickname field, Full Name field, Address field, and Comment field.
36362 It might prove useful to Select only the Simple, non-List address book
36363 entries before Saving.
36364 </DD>
36366 <DT><EM>^C</EM> Cancel</DT>
36367 <DD>
36368 Cancel out of the Save.
36369 </DD>
36371 </DL>
36375 &lt;End of help on this topic&gt;
36376 </BODY>
36377 </HTML>
36378 ====== h_config_predict_nntp_server =====
36379 <HTML>
36380 <HEAD>
36381 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
36382 </HEAD>
36383 <BODY>
36384 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
36386 This feature allows Alpine to assume that the open NNTP server at the
36387 time of composition is the NNTP server to which the message should be
36388 posted.  This is especially recommended when there are multiple News
36389 collections.  If this feature is not set, Alpine will try to post to the first server in
36390 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
36391 this feature also negates the need to add News collection servers to
36392 the <!--#echo var="VAR_nntp-server"--> variable.
36394 This feature can be especially handy when used in conjunction with
36395 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
36397 <UL>   
36398 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36399 </UL><P>
36400 &lt;End of help on this topic&gt;
36401 </BODY>
36402 </HTML>
36403 ====== h_config_nntp_search_uses_overview =====
36404 <HTML>
36405 <HEAD>
36406 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
36407 </HEAD>
36408 <BODY>
36409 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
36411 This feature should probably be turned on unless it causes trouble.
36412 The results of the NNTP overview command (XOVER) may be used to help
36413 with some searches in news groups.
36414 It should result in quicker response time.
36415 Turning this feature on apparently causes search results which are
36416 different from what you would get with the feature turned off on some
36417 servers.
36419 <UL>   
36420 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36421 </UL><P>
36422 &lt;End of help on this topic&gt;
36423 </BODY>
36424 </HTML>
36425 ====== h_config_thread_sorts_by_arrival =====
36426 <HTML>
36427 <HEAD>
36428 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
36429 </HEAD>
36430 <BODY>
36431 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
36433 This feature affects how a threading sort arranges threads.  The default way
36434 to arrange threads is by the date of the earliest message in the thread.
36435 This feature arranges threads by the last message to arrive in a thread.
36437 This feature causes old threads that get recent messages to sort to the bottom,
36438 where previously a message arrival to a thread would not rearrange the order of
36439 that thread.
36441 <UL>   
36442 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36443 </UL><P>
36444 &lt;End of help on this topic&gt;
36445 </BODY>
36446 </HTML>
36447 ====== h_config_textplain_int =====
36448 <HTML>
36449 <HEAD>
36450 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
36451 </HEAD>
36452 <BODY>
36453 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
36455 This feature modifies the method Alpine uses to display Text/Plain
36456 MIME attachments from the Attachment Index screen.  Normally, the
36457 &quot;View&quot; command searches for any externally defined (usually
36458 via the
36459 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
36460 and displays the selected text within that viewer.
36463 Enabling this feature causes Alpine to ignore any external viewer
36464 settings and always display text with Alpine's internal viewer.
36467 <UL>   
36468 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36469 </UL><P>
36470 &lt;End of help on this topic&gt;
36471 </BODY>
36472 </HTML>
36473 ====== h_config_wp_columns =====
36474 <HTML>
36475 <HEAD>
36476 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
36477 </HEAD>
36478 <BODY>
36479 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
36481 Web Alpine only.
36483 This configuration setting specifies the number of horizontal characters
36484 used to format various WebAlpine pages.  Smaller values will tend to reduce
36485 the amount of horizontal scrolling required to view pages within narrow
36486 browsers, such as those found on PDAs, and larger values will tend to 
36487 spread more information across the page.
36490 The Message List page uses the width to determine how many characters
36491 to assign each field.  Note, a smaller value may result in a disproportionate
36492 amount of blank space between fields on each line.  Similarly, a large
36493 value may result in cramped fields or horizontal scrolling.
36496 The Message View page uses this value to determine when to wrap lines
36497 in displayed message text.  Note, a smaller value may result in jagged
36498 right margins or confusing quoting.  A larger value may cause lines of text to
36499 run beyond the browser's right edge, requiring horizontal scrolling.
36502 <UL>   
36503 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36504 </UL><P>
36505 &lt;End of help on this topic&gt;
36506 </BODY>
36507 </HTML>
36508 ====== h_config_wp_state =====
36509 <HTML>
36510 <HEAD>
36511 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
36512 </HEAD>
36513 <BODY>
36514 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
36516 Web Alpine only.
36518 Various aspects of cross-session state.
36521 <UL>   
36522 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36523 </UL><P>
36524 &lt;End of help on this topic&gt;
36525 </BODY>
36526 </HTML>
36527 ====== h_config_wp_aggstate =====
36528 <HTML>
36529 <HEAD>
36530 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
36531 </HEAD>
36532 <BODY>
36533 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
36535 Web Alpine only.
36537 Aggregate operations tab state.
36540 <UL>   
36541 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36542 </UL><P>
36543 &lt;End of help on this topic&gt;
36544 </BODY>
36545 </HTML>
36546 ====== h_config_wp_indexlines =====
36547 <HTML>
36548 <HEAD>
36549 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
36550 </HEAD>
36551 <BODY>
36552 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
36554 Web Alpine only.
36556 Number of index lines in table.
36559 <UL>   
36560 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36561 </UL><P>
36562 &lt;End of help on this topic&gt;
36563 </BODY>
36564 </HTML>
36565 ====== h_config_wp_indexheight =====
36566 <HTML>
36567 <HEAD>
36568 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
36569 </HEAD>
36570 <BODY>
36571 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
36573 Web Alpine only.
36575 Index table row height.
36578 <UL>   
36579 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36580 </UL><P>
36581 &lt;End of help on this topic&gt;
36582 </BODY>
36583 </HTML>
36584 ====== h_config_rss_news =====
36585 <HTML>
36586 <HEAD>
36587 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
36588 </HEAD>
36589 <BODY>
36590 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
36592 Web Alpine only.
36594 RSS News feed.
36597 <UL>   
36598 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36599 </UL><P>
36600 &lt;End of help on this topic&gt;
36601 </BODY>
36602 </HTML>
36603 ====== h_config_rss_weather =====
36604 <HTML>
36605 <HEAD>
36606 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
36607 </HEAD>
36608 <BODY>
36609 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
36611 Web Alpine only.
36613 RSS Weather feed.
36616 <UL>   
36617 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36618 </UL><P>
36619 &lt;End of help on this topic&gt;
36620 </BODY>
36621 </HTML>
36622 ====== h_config_send_confirms_only_expanded =====
36623 <HTML>
36624 <HEAD>
36625 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
36626 </HEAD>
36627 <BODY>
36628 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
36630 This Web Alpine option specifies whether or not a Send confirmations
36631 happens when a composed message is readied for sending or not.  The
36632 default behavior is to not confirm that the nicknames were expanded to
36633 the intended addresses.
36636 <UL>   
36637 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36638 </UL><P>
36639 &lt;End of help on this topic&gt;
36640 </BODY>
36641 </HTML>
36642 ====== h_config_enable_jump_command =====
36643 <HTML>
36644 <HEAD>
36645 <TITLE>FEATURE: enable-jump-command</TITLE>
36646 </HEAD>
36647 <BODY>
36648 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
36650 This Web Alpine option specifies whether or not a Jump command is
36651 offered in the Message List and Message View pages.  The command is
36652 implemented as an input field in the left column of the List and View
36653 screens. 
36656 When enabled and a number is entered in the input field while the
36657 Message List is displayed, the Message List is reframed with the
36658 specified message.  While viewing a message, the message associated
36659 with the specified message number is displayed.
36662 <UL>   
36663 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36664 </UL><P>
36665 &lt;End of help on this topic&gt;
36666 </BODY>
36667 </HTML>
36668 ====== h_config_enable_newmail_sound =====
36669 <HTML>
36670 <HEAD>
36671 <TITLE>FEATURE: enable-newmail-sound</TITLE>
36672 </HEAD>
36673 <BODY>
36674 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
36676 This Web Alpine option specifies whether or not a sound file is sent
36677 to the web browser along with the newmail notification message.
36681 <UL>   
36682 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36683 </UL><P>
36684 &lt;End of help on this topic&gt;
36685 </BODY>
36686 </HTML>
36687 ====== h_config_render_html_internally =====
36688 <HTML>
36689 <HEAD>
36690 <TITLE>FEATURE: render-html-internally</TITLE>
36691 </HEAD>
36692 <BODY>
36693 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
36695 By default, Web Alpine will pass cleansed HTML text you receive in messages 
36696 to the browser for display (rendering).  This feature causes Web Alpine to convert 
36697 the HTML text into plain text in the same way Unix and PC-Alpine do.
36701 <UL>   
36702 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36703 </UL><P>
36704 &lt;End of help on this topic&gt;
36705 </BODY>
36706 </HTML>
36707 ====== h_config_role_undo =====
36708 Yes, remember changes and exit back to list of roles; No, discard changes
36709 made in this screen; ^C, cancel exit and stay in this config screen.
36710 ====== h_exit_editor =====
36711 S, save changes and exit from the editor; D, do not save changes but
36712 do exit from the editor; or ^C, cancel exit and stay in the editor.
36713 ====== h_config_undo =====
36714 Yes, save changes and exit; No, exit without saving any changes made since
36715 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
36716 ====== h_os_index_whereis =====
36717 Enter ^V or ^Y to go immediately to the last or first message in the index.
36718 Or, enter the match string followed by RETURN.
36719 ====== h_os_index_whereis_agg =====
36720 Enter ^V or ^Y to go immediately to the last or first message in the index,
36721 Or, enter the match string followed by RETURN (or ^X to select all matches).
36722 =========== h_oe_add_full ==================
36723 Type the full name of the person being added and press the RETURN key.
36724 Press ^C to cancel addition.
36725 =========== h_oe_add_nick ==================
36726 Type a short nickname and press RETURN.  A nickname is a short easy-to-
36727 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
36728 ========== h_oe_add_addr ================
36729 Type the e-mail address and press RETURN.
36730 Press ^C to cancel addition.
36731 ========== h_oe_crlst_full ==============
36732 Type a long name or description for the list that you are creating and
36733 press RETURN.  Press ^C to cancel creation of list.
36734 =========== h_oe_crlst_nick =============
36735 Type a nickname (short, easy-to-remember name or single word) for the list
36736 you are creating and press RETURN.  Press ^C to cancel.
36737 ========== h_oe_crlst_addr ==============
36738 Type an e-mail address, or a nickname already in the address book that you
36739 want to be part of this list and press RETURN.
36740 ========== h_oe_adlst_addr =============
36741 Type an e-mail address or a nickname already in the address book that you
36742 want to add to this list and press RETURN.
36743 ========== h_oe_editab_nick ============
36744 Change the nickname using the arrow keys and delete key.  Press RETURN
36745 when done.  Press ^C to cancel editing and leave the nickname as it was.
36746 ========== h_oe_editab_full ============
36747 Change the full name using the arrow keys and delete key.  Press RETURN
36748 when done.  Press ^C to cancel editing and leave the full name as it was.
36749 ========== h_oe_editab_addr ============
36750 Change the address using the arrow keys and delete key.  Press RETURN
36751 when done.  Press ^C to cancel editing and leave the address as it was.
36752 ========== h_oe_editab_fcc ============
36753 Change the fcc using the arrow keys and delete key.  Press RETURN when
36754 done.  Press ^C to cancel editing and leave the fcc as it was.
36755 ========== h_oe_editab_comment ============
36756 Change the comment field using the arrow keys and delete key.  Press RETURN
36757 when done.  Press ^C to cancel editing and leave the comment as it was.
36758 ====== h_ab_forward =====
36759 Yes, expand nicknames and qualify local names with your current domain name;
36760 No, leave nicknames and local names as is;  ^C, cancel.
36761 ========== h_ab_export ==========
36762 Type the name of a file to write the addresses into and
36763 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
36764 ========== h_ab_edit_a_field ==========
36765 Edit any of the fields of the currently selected entry by typing one of the
36766 letters at the bottom of the screen.  Press ^C to cancel edit.
36767 ====== h_ab_del_data_revert =====
36768 Press B to completely delete addrbook and revert to default, C to delete config
36769 and revert while leaving data, or D to only delete data (make it empty).
36770 ====== h_ab_del_data_modify =====
36771 Press B to completely delete addrbook, C to delete configuration while leaving
36772 data, or D to delete data (make it empty) but leave config. ^C to cancel.
36773 ====== h_ab_del_config_modify =====
36774 Yes, remove this address book from my configuration.
36775 No, make no changes now.
36776 ====== h_ab_del_config_revert =====
36777 Yes, remove this address book from my config and revert to default.
36778 No, make no changes now.
36779 ====== h_ab_del_default =====
36780 Yes, remove this default address book from my configuration.
36781 No, make no changes now.
36782 ====== h_ab_really_delete =====
36783 Yes, delete the actual contents of the address book, not just the 
36784 configuration.  No, don't delete the data after all, cancel and start over.
36785 ====== h_ab_del_ignore =====
36786 Press I to ignore all the default address books for this category.  Press R to
36787 remove this one address book and add the others to your personal list.
36788 ====== h_ab_del_dir_ignore =====
36789 Press I to ignore all the default directory servers for this category.
36790 Press R to remove this one server and add the others to your personal list.
36791 ====== h_ab_copy_dups =====
36792 Yes, overwrite the existing entry.
36793 No, skip duplicates but save the rest. Press ^C to cancel.
36794 ====== h_confirm_cancel =====
36795 Type C to Confirm that you want to abandon the message you are composing.
36796 Type N or ^C to cancel out of the cancel and keep composing.
36797 ====== h_ab_text_or_vcard =====
36798 Text, start composer with displayed text already included.
36799 VCard, start composer with address book entry attached as a vCard. ^C cancels.
36800 ====== h_ab_backup_or_ldap =====
36801 Backup, copy email address from entry and allow editing of it.
36802 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
36803 ====== h_ldap_text_or_vcard =====
36804 Text: export displayed text for selected entry. Address: export only the
36805 email address. VCard: export entry in vCard format. ^C cancels.
36806 ====== h_ab_save_exp =====
36807 Save, save entry or entries to an address book.
36808 Export, save to file outside of pine. ^C cancels save.
36809 ====== h_ab_add =====
36810 A, add a brand new entry to this address book.
36811 E, edit the entry that is currently highlighted. ^C to cancel.
36812 ====== h_ab_shuf =====
36813 U, swap order of highlighted address book and the one above it.
36814 D, swap order of highlighted address book and the one below it. ^C to cancel.
36815 ====== h_ab_shuf_up =====
36816 U, swap order of highlighted address book and the one above it.
36817 Press ^C to cancel.
36818 ====== h_ab_shuf_down =====
36819 D, swap order of highlighted address book and the one below it.
36820 Press ^C to cancel.
36821 ====== h_folder_prop =====
36822 Count is # of messages in the folder, Unseen means messages that have not
36823 been read, New means messages that were Recently added to the folder.
36824 ====== h_role_shuf =====
36825 U, swap order of highlighted rule and the one above it.
36826 D, swap order of highlighted rule and the one below it. ^C to cancel.
36827 ====== h_role_shuf_up =====
36828 U, swap order of highlighted rule and the one above it.
36829 Press ^C to cancel.
36830 ====== h_role_shuf_down =====
36831 D, swap order of highlighted rule and the one below it.
36832 Press ^C to cancel.
36833 ====== h_incoming_shuf =====
36834 B, swap order of highlighted directory and the one before it.
36835 F, swap order of highlighted directory and the one after it. ^C to cancel.
36836 ====== h_incoming_shuf_up =====
36837 B, swap order of highlighted directory and the one before it.
36838 Press ^C to cancel.
36839 ====== h_incoming_shuf_down =====
36840 F, swap order of highlighted directory and the one after it.
36841 Press ^C to cancel.
36842 ====== h_dir_shuf =====
36843 U, swap order of highlighted directory and the one above it.
36844 D, swap order of highlighted directory and the one below it. ^C to cancel.
36845 ====== h_dir_shuf_up =====
36846 U, swap order of highlighted directory and the one above it.
36847 Press ^C to cancel.
36848 ====== h_dir_shuf_down =====
36849 D, swap order of highlighted directory and the one below it.
36850 Press ^C to cancel.
36851 ====== h_hdrcolor_shuf =====
36852 U, swap order of highlighted Header Color and the one above it.
36853 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
36854 ====== h_hdrcolor_shuf_up =====
36855 U, swap order of highlighted Header Color and the one above it.
36856 Press ^C to cancel.
36857 ====== h_hdrcolor_shuf_down =====
36858 D, swap order of highlighted Header Color and the one below it.
36859 Press ^C to cancel.
36860 ========== h_oe_editab_al ============
36861 Change the address using the arrow keys and delete key.  Press RETURN
36862 when done.  Press ^C to cancel editing and leave the address as it was.
36863 ========== h_dir_comp_search ===============
36864 Type a string to look for just like you would in the composer. Your configured
36865 rules for the servers with the implicit flag set will be used.
36866 ========== h_oe_searchab ===============
36867 Type the word or name you want to search for and press RETURN.  If you press
36868 RETURN without entering anything the word in [] will be searched for.
36869 ========== h_oe_chooseabook ==========
36870 Choose the address book you want to save the new entry in.
36871 Use ^N or ^P to change address books.  ^C to cancel.
36872 ========== h_oe_takeaddr ==========
36873 Edit the e-mail address using the arrow and delete keys.  Press RETURN
36874 when done.  Press ^C to cancel adding this entry to the address book.
36875 ========== h_oe_take_replace ==========
36876 Press R to replace the old entry with this new data.  You will still have
36877 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
36878 ========== h_oe_take_replace_or_add ==========
36879 Press R to replace the old entry.  Press A to add the selected addresses to
36880 the old existing list.  N to enter another nickname. ^C to cancel now.
36881 ========== h_oe_takename ==========
36882 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
36883 when done.  Press ^C to cancel adding this entry to the address book.
36884 ========== h_oe_takenick ==========
36885 Type a nickname (short easy-to-remember name, initials or single word) for this
36886 entry in the address book and press RETURN.  Press ^C to cancel addition.
36887 ========== h_oe_jump ==========
36888 Type the message number you want to jump to and press RETURN.  The word "end"
36889 represents the last message. Press ^C to cancel jumping to another message.
36890 ========== h_oe_jump_thd ==========
36891 Type the thread number you want to jump to and press RETURN.  The word "end"
36892 represents the last thread. Press ^C to cancel jumping to another thread.
36893 ========== h_oe_debuglevel ==========
36894 Higher number shows more debugging details.
36895 Press ^C if you want to cancel the change.
36896 ========== h_oe_broach ==========
36897 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
36898 to go to the previous/next collections in the list.  Press ^C to cancel goto.
36899 ========== h_oe_foldsearch ==========
36900 Type the text you want to search for in foldernames and press RETURN.  If you
36901 press RETURN without entering anything, any text in [] will be searched for.
36902 ========== h_oe_foldrename ==========
36903 Change the old name of the folder to the new name using the arrow and
36904 delete keys and press RETURN.  Press ^C to cancel rename.
36905 ========== h_oe_login ==========
36906 Enter your login name for the host you are opening the mailbox on.  Just press
36907 RETURN to use your login from this host as is, or edit it with delete key.
36908 ========== h_oe_passwd ==========
36909 Type your password for the host and login shown as part of the prompt.
36910 Press ^C to cancel opening folder.
36911 ========== h_oe_choosep ==========
36912 Enter the number associated with the printer you want to select.  Press ^C to
36913 cancel the printer selection.  The current selection is highlighted.
36914 ========== h_oe_customp ==========
36915 Type the name of the Unix print command and press RETURN.  Press ^C to
36916 cancel the printer selection.
36917 ========== h_oe_searchview ==========
36918 Type the word or name you want to search for and press RETURN.  If you press
36919 RETURN without entering anything the word in [] will be searched for.
36920 ========== h_oe_keylock ==========
36921 The keyboard is in use and locked by another user.  Only that user can
36922 unlock this keyboard by typing the password.
36923 ========== h_wt_expire ==========
36924 At the beginning of each month Alpine offers to rename your current sent-mail
36925 folder to one named for the month so you have a sent-mail folder for each month
36926 ========== h_wt_delete_old ==========
36927 It is the beginning of the month, and we need to conserve disk
36928 space.  Please delete any sent-mail that you do not need.
36929 ========== h_select_sort ==========
36930 Select the order for sorting the index by typing the capitalized letter.
36931 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
36932 ========== h_no_F_arg ============
36933 Enter name of file to be opened.
36935 ========== h_sticky_personal_name ==========
36936 Type in your name as you want it to appear on outgoing email.  This entry
36937 will be saved into your Alpine configuration file.
36938 ========== h_sticky_inbox ============
36939 INBOX syntax is usually {complete.machine.name}INBOX
36940 This entry will be saved in your Alpine configuration file.
36941 ========== h_sticky_smtp ============
36942 The name of the computer on your campus that relays your outgoing email
36943 to the Internet.  This entry will be saved in your Alpine configuration file.
36944 ========== h_sticky_user_id ==========
36945 The username or login-id part of your email address.  This entry will be
36946 saved in your Alpine configuration file.
36947 ========== h_sticky_domain ==========
36948 The domain part of your email address, NOT the name of your PC.  This
36949 entry will be saved in your Alpine configuration file.
36950 ========== h_bounce =========
36951 Enter the address or nickname of the intended recipient.  Alpine will resend
36952 the message, which will retain the original author's From: address.
36953 ========== h_incoming_add_folder_nickname =========
36954 Enter an (optional) nickname that will be used in lieu of the actual
36955 host and folder names in the FOLDER LIST display.
36956 ========== h_anon_forward ==========
36957 Enter the address of your intended recipient, or ^C to cancel.
36958 Example: jsmith@somewhere.edu
36959 ========== h_news_subscribe ==========
36960 Enter the name of the newsgroup to which you wish to subscribe,
36961 or ^C to cancel.  Example: comp.mail.pine
36962 ========== h_pipe_msg ==========
36963 Enter the name of the Unix command to which you wish to send this
36964 message, or ^C to cancel.
36965 ========== h_pipe_attach ==========
36966 Enter the name of the Unix command to which you wish to send this
36967 attachment, or ^C to cancel.
36968 ========== h_select_by_num ==========
36969 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
36970 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
36971 ========== h_select_by_gm_content ==========
36972 Enter your search key in the same way that you would enter a search
36973 key in the web interface for Gmail.
36974 ========== h_select_by_thrdnum ==========
36975 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
36976 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
36977 ========== h_select_txt_from ==========
36978 Messages with From: headers containing the entered string will be selected.
36979 ^C to cancel. ^G again to see original options.
36980 ========== h_select_txt_not_from ==========
36981 Messages without From: headers containing the entered string will be selected.
36982 ^C to cancel. ^G again to see original options.
36983 ========== h_select_txt_to ==========
36984 Messages with To: headers containing the entered string will be selected.
36985 ^C to cancel. ^G again to see original options.
36986 ========== h_select_txt_not_to ==========
36987 Messages without To: headers containing the entered string will be selected.
36988 ^C to cancel. ^G again to see original options.
36989 ========== h_select_txt_cc ==========
36990 Messages with Cc: headers containing the entered string will be selected.
36991 ^C to cancel. ^G again to see original options.
36992 ========== h_select_txt_not_cc ==========
36993 Messages without Cc: headers containing the entered string will be selected.
36994 ^C to cancel. ^G again to see original options.
36995 ========== h_select_txt_subj ==========
36996 Messages with Subject: headers containing the entered string will be selected.
36997 ^C to cancel.  ^X enters Subject: line of current message.
36998 ========== h_select_txt_not_subj ==========
36999 Messages without Subject headers containing the entered string will be selected.
37000 ^C to cancel.  ^X enters Subject: line of current message.
37001 ========== h_select_txt_all ==========
37002 All messages containing the entered string will be selected.  Headers and body,
37003 but not encoded attachments, will be compared.  Enter ^C to cancel.
37004 ========== h_select_txt_not_all ==========
37005 All messages that don't contain the entered string will be selected.  Headers
37006 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
37007 ========== h_select_txt_body ==========
37008 All messages containing the entered string will be selected. Body text, but
37009 not headers or encoded attachments, will be compared. ^C to cancel.
37010 ========== h_select_txt_not_body ==========
37011 All messages that don't contain the entered string will be selected. Body
37012 text, but not headers or encoded attachments, will be compared. ^C to cancel.
37013 ========== h_select_txt_recip ==========
37014 Messages with Cc: or To: headers containing the entered string will be selected.
37015 ^C to cancel. ^G again to see original options.
37016 ========== h_select_txt_not_recip ==========
37017 Messages without Cc: or To: headers containing the string will be selected.
37018 ^C to cancel. ^G again to see original options.
37019 ========== h_select_txt_partic ==========
37020 Messages with Cc, To, or From headers containing the string will be selected.
37021 ^C to cancel. ^G again to see original options.
37022 ========== h_select_txt_not_partic ==========
37023 Messages without Cc, To, or From headers containing the string will be selected.
37024 ^C to cancel. ^G again to see original options.
37025 ========== h_select_date ==========
37026 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
37027 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
37028 ========== h_attach_index_whereis ==========
37029 Enter some text that appears in the Attachment Index entry for the desired
37030 attachment.  The first attachment containing that text will be highlighted.
37031 ========== h_kb_lock ==========
37032 Keystrokes entered here (up to a RETURN) comprise a password that must
37033 be entered again later in order to unlock the keyboard.
37034 ========== h_compose_default ==========
37035 N, compose a new message. R, set a role.
37036 ^C to cancel.
37037 ========== h_untranslatable ==========
37038 Send using UTF-8 character set; Send but replace untranslatable characters
37039 with question marks; return to the composer; or cancel message altogether.
37040 ========== h_compose_intrptd ==========
37041 N, compose a new msg. I, continue interrupted msg. R, set a role.
37042 ^C to cancel.
37043 ========== h_compose_postponed ==========
37044 N, compose a new message. P, continue postponed msg. R, set a role.
37045 ^C to cancel.
37046 ========== h_compose_intrptd_postponed ==========
37047 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
37048 R, set a role. ^C to cancel.
37049 ========== h_compose_form ==========
37050 N, compose a new message. F, use form letter. R, set a role.
37051 ^C to cancel.
37052 ========== h_compose_intrptd_form ==========
37053 N, compose a new msg. I, continue interrupted msg. F, use form letter.
37054 R, set a role. ^C to cancel.
37055 ========== h_compose_postponed_form ==========
37056 N, compose a new message. P, continue postponed msg. F, use form letter.
37057 R, set a role. ^C to cancel.
37058 ========== h_compose_intrptd_postponed_form ==========
37059 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
37060 F, use form letter. R, set a role. ^C to cancel.
37061 ========== h_config_context_del_except ==========
37062 If you delete the last exceptional collection you can only add it back by
37063 manually editing the exceptions config file.
37064 ========== h_config_whereis ==========
37065 To move quickly to a particular line, enter a search string or
37066 ^C to cancel.
37067 ========== h_config_edit_scorei ==========
37068 Enter interval in the form (min,max). -INF and INF may be used to represent
37069 -infinity and infinity. ^C to cancel change. RETURN to accept change.
37070 ========== h_config_add ==========
37071 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
37072 pressing RETURN sets the Empty Value (this turns off any global default).
37073 ========== h_config_add_custom_color ==========
37074 Enter a header fieldname. For example, "subject" or "from".
37076 ========== h_config_add_pat_hdr ==========
37077 Enter a header fieldname. For example, "reply-to" or "organization" or
37078 any fieldname you want that isn't included already.
37079 ========== h_config_print_opt_choice ==========
37080 You may edit either the initialization string (characters printed before
37081 printing starts) or the trailer string.  Choose one or ^C to cancel.
37082 ========== h_config_print_init ==========
37083 Enter a C-style string for this.  You may use common backslash escapes like
37084 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
37085 ========== h_config_change ==========
37086 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
37087 delete current (highlighted) character, etc.  Enter ^C to cancel change.
37088 ========== h_config_replace_add ==========
37089 Replace ignores the current default, Add places the current default in your
37090 editing buffer as if you had typed it in.
37091 ========== h_config_insert_after ==========
37092 Enter a nickname for this print command.  (InsertBefore puts the new item
37093 before the current line, InsertAfter puts it after the current line.)
37094 ========== h_config_print_cmd ==========
37095 Enter command to be executed for the printer.  Use normal editing keys
37096 to modify, ^C to cancel, carriage return to accept current value.
37097 ========== h_config_role_del ==========
37098 Answering Yes will remove this rule completely from your rules list.
37099 ========== h_config_role_addfile ==========
37100 Type the name of a file to add to your configuration. You don't need to
37101 use a file, you may add rules directly (with Add) without using a file.
37102 ========== h_config_role_delfile ==========
37103 Answering Yes will remove this rule file completely from your rules list.
37104 The rules data file itself will not be removed.
37105 ========== h_config_print_del ==========
37106 Answering Yes will remove this printer completely from your printer list.
37107 ========== h_config_print_name_cmd ==========
37108 You may edit the Nickname of this printer, the Command to be executed when
37109 printing, or change the Options associated with this printer.
37110 ========== h_send_check_fcc ==========
37111 Yes, send message without an Fcc.
37112 No, return to composer.
37113 ========== h_send_check_subj ==========
37114 Yes, send message without a Subject.
37115 No, return to composer.
37116 ========== h_send_check_to_cc ==========
37117 Yes, send message without a To address, or a Cc address, or a Newsgroup.
37118 No, return to composer.
37119 ========== h_send_fcc_only ==========
37120 Yes, copy message to Fcc only and send to NO recipients.
37121 No, return to composer.
37122 ========== h_send_prompt ==========
37123 Yes, send the message.
37124 No or ^C, return to composer.
37125 ========== h_send_prompt_flowed ==========
37126 Yes, send the message.  No or ^C, return to composer.
37127 What's Flowed? See Do Not Send Flowed Text in config screen.
37128 ========== h_send_prompt_dsn ==========
37129 Yes, send the message.  No or ^C, return to composer.
37130 What's DSNOpts? See Enable Delivery Status Notification in config screen.
37131 ========== h_send_prompt_dsn_flowed ==========
37132 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
37133 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
37134 ========== h_role_confirm ==========
37135 Yes, use displayed role. No, compose without a role.
37136 ^C, cancel the message. ^T, select a role from your other eligible roles.
37137 ========== h_norole_confirm ==========
37138 Return, compose without a role.
37139 ^C, cancel the message. ^T, select a role from your eligible roles.
37140 ========== h_custom_print ==========
37141 Enter a Unix command that accepts its data on standard input.
37142 Alpine will display any information the command sends to standard output.
37143 ========== h_convert_abooks_and_sigs ==========
37144 You will be given the opportunity to convert address books and signature files
37145 to remote configurations.
37146 ========== h_convert_abooks ==========
37147 You will be given the opportunity to convert address books to remote
37148 configurations.
37149 ========== h_flag_keyword ==========
37150 Enter the name of the keyword you want to add for this folder.
37151 No spaces, parentheses, braces, percents or asterisks are allowed.
37152 ========== h_select_keyword ==========
37153 Enter the keyword you want to match, or use ^T to select a keyword from a list
37154 of possible keywords for this folder. Use ! to look for non-matches instead.
37155 ========== h_type_keyword ==========
37156 Enter the keyword you want to add. You may add a nickname in the next step.
37157 No spaces, parentheses, braces, percents or asterisks are allowed.
37158 ========== h_type_keyword_nickname ==========
37159 Enter an optional nickname for the keyword you want to add.
37160 Type Carriage return to use the keyword name instead of a nickname.
37161 ========== h_convert_sigs ==========
37162 You will be given the opportunity to convert signature files to remote
37163 configurations.
37164 ========== h_convert_abook ==========
37165 Yes is fairly safe. You will be ADDing a remote address book that is a copy
37166 of the current address book. The current abook won't be removed automatically.
37167 ========== h_convert_sig ==========
37168 Answering Yes copies the contents of the signature file into your Alpine
37169 configuration file. After that, the contents of the file will not be used.
37170 ========== h_save_addman ==========
37171 Enter the simple name of the folder you want to add. Carriage return to
37172 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
37173 ========== h_reopen_folder ==========
37174 Yes reopens the folder, as if you were starting over. This uncovers new mail.
37175 No leaves the folder index as it was without discovering new mail.
37176 ========== h_convert_pinerc_server ==========
37177 This is the name of the host (computer) where the remote Alpine configuration
37178 will be stored. This should be an IMAP server that you have permission to use.
37179 ========== h_convert_pinerc_folder ==========
37180 Enter the correct remote folder name. This folder is special and should
37181 contain only configuration data. It shouldn't contain other mail messages.
37182 ========== h_role_compose ==========
37183 Compose a New message, Reply to current message, Forward current message, or
37184 Bounce message. Then you will be asked to choose one of your Roles to be used.
37185 ========== h_role_aggregate ==========
37186 Compose a reply, or forward, or bounce the selected messages. Then you 
37187 will be asked to choose one of your Roles to be used for this operation.
37188 ========== h_save_size_changed ==========
37189 The reported size of a message is not the same as the actual size. Answer Yes
37190 to continue and hope for the best or No to Cancel the entire Save.
37191 ========== h_select_by_larger_size ==========
37192 Enter a number or ^C to cancel. All messages greater than this many characters
37193 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37194 ========== h_select_by_smaller_size ==========
37195 Enter a number or ^C to cancel. All messages less than this many characters
37196 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37197 ========== h_preserve_field ==========
37198 Use 'p' to toggle between preserving or not preserving the original To:
37199 and Cc: fields of the message. Enter ^C to cancel message.