* Do not use a delay when printing messages to screen when the initial
[alpine.git] / pith / pine.hlp
blob59f746bef77ae859e8d9149a76a541d9398cc386
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 351 2019-06-21 11:25:44
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-2019 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> Support for <A HREF="h_xoauth2">XOAUTH2</A> authentication method in Gmail.
185 <LI> PC-Alpine builds with LibreSSL and supports S/MIME.
187 <LI> NTLM authentication support with the ntlm library, in Unix systems.
188 Based on code provided by Maciej W. Rozycki.
190 <LI> Add /tls1_3 flag for servers that support it. Read more information
191 in the secure protocols <A HREF="h_network_encryption_security">help</A>.
193 <LI> New variable 
194 <A HREF="h_config_encryption_range"><!--#echo var="VAR_encryption-protocol-range"--></A> 
195 that allows users to configure versions of the SSL/TLS protocol that Alpine is 
196 restricted to try when establishing a secure connection SSL/TLS to a remote 
197 server. The default can be set at compilation time.
199 <LI> Add -dict option to PC-Pico, which allows users to choose a dictionary
200 when spelling. Sample usage: -dict "en_US, de_DE, fr_FR".
202 <LI> Improvements to the configure stage of compilation. Some of
203 these contributed by Helmut Grohne. See
204 <A href="https://bugs.debian.org/876164">Bug 876164</A> in Debian.
206 <LI> Add &quot;remove password&quot; command to the management screen for the 
207 password file encryption key. This allows users to use their password file
208 without entering a master password.
210 <LI> Add the &quot;g&quot; option to the select command that works in IMAP 
211 servers that implement the X-GM-EXT-1 capability (such as the one offered 
212 by Gmail.) This allows users to do selection in Alpine as if they were 
213 doing a search in the web interface for Gmail.
215 <LI> New variable close-connection-timeout, which tells Alpine to close
216 a connection that is having problems being kept alive after the number
217 of seconds configured in this variable, if the connection has not
218 recovered. The default is 0, which means to keep the connection alive
219 and wait for the connection to recover.
221 <LI> When a message is of type multipart/mixed, and its first part is
222 multipart/signed, Alpine will include the text of the original message
223 in a reply message, instead of including a multipart attachment.
224 Suggested by Barry Landy.
226 <LI> S/MIME: Some clients do not transform messages to canonical form when 
227 signing first and encrypting second, which makes Alpine fail to parse the 
228 signed data after encryption. Reported by Holger Trapp.
230 <LI> Add /auth=XYZ to the way to define a server. This allows users to  
231 select the method to authenticate to an IMAP, SMTP or POP3 server.
232 Examples are /auth=plain, or /auth=gssapi, etc.
234 <LI> Add backward search in the index screen. Based on patch by Astyanax Foo, 
235 submitted in 2009, but resubmitted by Erich Eckner on 2019.
237 <LI> SMIME: When Alpine is set to validate a message using the user's store, and
238      user agrees to save a certificate of another user, use the saved 
239      certificate immediately to verify the smime message. Reported by 
240      Stefan Mueller.
242 <LI> Do not use a delay when printing messages to screen when the initial
243      keystroke sequence of commands is active. Based on a report from Holger
244      Trapp.
245 </UL>
248 Bugs that have been addressed include:
249 <UL>
250    <LI> Width of characters is not always determined correctly when wcwidth
251         is used. Revert to using code for the Windows operating system. 
252         Reported by Andrew Ho.
254    <LI> The call realpath(..., NULL) gives an error in Solaris, which means that
255         we need to allocate memory for storing the resolved path. Reported by
256         Fabian Schmidt.
258    <LI> Crash when attempting to bounce a message due to lack of space in
259         allocated space for key menu array. Reported by David Sewell.
261    <LI> Crash when a CA certificate failed to load, and user attempted to
262         view certificate information of other certificate authorities.
264    <LI> Crash in the S/MIME configuration screen when a user turned off S/MIME, and
265         then reenabled it. Also crash when attempting to enter the S/MIME 
266         configuration screen if S/MIME was turned off.
268    <LI> Deactivate some color code from Pico (as standalone editor in the
269         windows version) until I find a way to activate it again. This is 
270         not critical and it is not something that PC-Pico must have (some 
271         of it already exists in other ways, like color support, what does 
272         not exist is the more complex code that Unix-Pico has with color 
273         codes for specific colors.)
275    <LI> When a message is multipart, and the first part is flowed text, 
276         then forwarding the message will set the first part to be flowed, 
277         and sent that way even when the option Do Not Send Flowed Text is 
278         enabled. Reported by Holger Trapp.
280    <LI> When a message/rfc822 part of a message is encoded with
281         Content-Transfer-Encoding: QUOTED-PRINTABLE, Alpine will stop 
282         processing that message. Later this causes Alpine to crash because 
283         when it displays messages, it assumes that both header and body 
284         parts are processed. Reported by Mark Crispin in 2010, in the 
285         Alpine-info list (message with subject "crash bug in 
286         alpine/mailpart.c:format_msg_att()") with no example, and reported 
287         now by Holger Trapp, with an example.
289    <LI> In addition to the previous report, Alpine encodes message/rfc822
290         messages as QUOTED-PRINTABLE, in contradiction with RFC 2045, 
291         when it receives a report that its encoding is 8bit. We preserve 
292         the encoding reported by the IMAP server, and do not encode in 
293         QUOTED-PRINTABLE.
295    <LI> Update build.bat file to add /DWINVER=0x0501 so that Alpine can 
296         build when using Visual Studio 2017. Fix contributed by 
297         Ulf-Dietrich Braunmann.
299    <LI> When the locale is not set up to UTF-8, alpine might determine the 
300         width of a character incorrectly. Reported by Alexandre Fedotov.
302    <LI> In some rare cases, when attachments are deleted before saving 
303         emails, the filenames will be displayed in RFC1522 representation, 
304         instead of in decoded form. Reported and patched by Wang Kang.
306    <LI> When colors are edited from the main setup configuration screen, some
307         color settings are not updated until Alpine is restarted. Reported by
308         Andrew Hill.
310    <LI> If the first part of a message is multipart/alternative, and the 
311         first part of this is also a multipart type, then Alpine might 
312         fail to select the first text part when replying to a message. 
313         Reported by Lucio Chiappetti.
315    <LI> TLS 1.2 works does not work if Alpine is compiled with openssl &gt;= 1.1.0.
316         Reported and patched by Kyle George.
318    <LI> If the directory where Alpine saves the certificates is empty,
319         alpine would not create a self-signed certificate to encrypt the 
320         password file.
322    <LI> S/MIME: The list of public certificates is freed before it is 
323         reused when a signature fails to verify. This causes Alpine to 
324         crash. Patch submitted by Linus Torvalds.
326    <LI> S/MIME: A message could fail to verify its signature even if the
327         certificate was saved when the message was open. Based on a report 
328         by David Woodhouse to the RedHat bugzilla system.
330    <LI> When there are time changes in the clock, Alpine might go to sleep
331         for big amounts of time while displaying messages in the screen. 
332         Reset sleep time to 5 seconds in case it finds it needs to sleep 
333         more than 5 seconds or a negative amount of time.
335    <LI> Restore recognition of empty directories. It was deleted by mistake
336         when added support for internationalization in folders. Based on a 
337         report by Michael Rutter.
339    <LI> Alpine stops parsing the mailcap file when it finds an invalid entry.
340         Reported by Matt Roberds to the Debian bug system at 
341         <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886370">https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=886370</A>.
342 </UL>
345 Version 2.21 addresses bugs found in previous releases and has several 
346 additions as well.
349 Additions include:
350 <UL>
351   <LI> PC-Alpine: New configuration option "Aspell Dictionaries" allows a
352        user to choose the dictionary used to spell check, in case the user 
353        communicates in more than one language. Examples of values for the 
354        variable are "en_US" or "de_DE", etc. Only the first 10 
355        dictionaries are offered.
357   <LI> Unix-Alpine: Connect securely to a LDAP server on a secure port. 
358        Based on a contribution by Wang Kang.
360   <LI> Colors configured in Alpine are inherited in the composer.
362   <LI> When Alpine is compiled with password file and SMIME support 
363        the password file is encrypted using a private key/public 
364        certificate pair. If one such pair cannot be found, one will be 
365        created. <A HREF="h_password_file_support">Learn more</A>.
367   <LI> Alpine builds with any version of OpenSSL greater than or equal
368        to 1.0.0c. This includes version 1.1.0. Alpine also builds with
369        LibreSSL.
371   <LI> New SHORTSUBJECT, SHORTSUBJKEY and SHORTSUBJKEYINIT token for index 
372        format, which removes text in the SUBJECT between &quot;[&quot; and 
373        &quot;]&quot;.
375   <LI> New SMARTTIME24 token for index screen. It is close to SMARTDATETIME
376        but it differns in that it gives the time in which the message was
377        sent for messages that are less than a week old. it uses a 24 hour
378        format.
380   <LI> Alpine will include attachments when forwarding some 
381        multipart/alternative messages for which it did not use to include 
382        attachments.
384   <LI> New configuration option 
385        <a href="h_config_alt_reply_menu"><!--#echo var="FEAT_alternate-reply-menu"--></a>
386        which adds more ways to control features and variables when you
387        start to reply to a message.
389   <LI> Added support for RFC 2971 - IMAP ID extension.
391   <LI> Add configuration <A href="h_config_ignore_size"><!--#echo var="FEAT_ignore-size-changes"--></A>
392        that allows users to ignore errors in the computation of the size
393        of a message from defective servers.
395   <LI> SMIME: Upgrade the default signature digest from sha1 to sha-256, since 
396        clients such as Thunderbird do not validate signatures that use sha1 digest.
398   <LI> Add the configuration variable "default-directories", which is called
399        <A href="h_config_history"><!--#echo var="VAR_default-directories"--></A>
400        variable saves a list of directories that are readily accessible 
401        for save or export of attachments. This makes it easier to save 
402        attachments in directories that are hard to navigate to, or that 
403        are accessed frequently.
405   <LI> When a filename is attached and its name is encoded, the save 
406        attachment command will offer to save the file in the encoded form. 
407        This might work for some users, but the save command will have a 
408        subcommand ^N to decode the file name and save the file with the 
409        decoded name.
411   <LI> The TAB key allows autocomplete in the Fcc field in the composer headers,
412        as well as autocompletes automatically when only one possibility exists 
413        for the ^J attach command.
415   <LI> Add support for the &quot;TYPE&quot; and &quot;VALUE&quot; attributes of
416        the html OL tag.
418   <LI> Ignore message from smtp server after a successful authentication
419        challenge.
421   <LI> When a message is saved in the Form Letter folder, add the ability
422        to save the role being used to compose such message so that settings
423        such as the SMTP server set in the role can be used when sending
424        such form message. Suggested and patched by Frank Doepper.
426   <LI> If SSLDIR is defined somehow, do not disable S/MIME if the
427        SSLCERTSDIR is not found.
429   <LI> When Alpine sends an attachment, it will set the boundary attribute
430        in lower case, as some SMTP servers, such as those of libero.it 
431        reject messages if the boundary attribute is in uppercase.
433   <LI> Add the ability to change the private key and certificates used
434        to encrypt a password file in the SMIME setup configuration screen.
435        <A HREF="h_config_smime_password_file_certificates">Learn more</A>
437   <LI> SMIME: The ctrl-E command that gives information on the certificate
438        is only available for messages that have a signed or encrypted 
439        part.
441   <LI> SMIME: If a message contains a RFC822 attachment that is
442        signed/decrypted add the ability to view its SMIME information.
444   <LI> SMIME: Certificate information in the S/MIME screen is available 
445        for certificates stored in a container.
447   <LI> SMIME: Offer the common name of the person, instead of the name of
448        file containing the certificate, as the name to be displayed in the 
449        certificate management screen for certificate authorities. 
450        Suggested by Matthias Rieber.
452   <LI> SMIME: Management of several alternate name (SAN) certificates is 
453        improved. When importing a SAN certificate, also import a certificate
454        for the filename, besides for the e-mail addresses in the
455        certificate. Suggested by Matthias Rieber.
457   <LI> SMIME: add full year when displaying information about a certificate
458        in the certificate management screen. Suggested by Matthias Rieber.
460   <LI> SMIME: sort certificates by some type of alphabetical order in the
461        displayed name.
463   <LI> SMIME: Alpine will ask users if they wish to save S/MIME 
464        certificates included in signatures, when the option "Validate 
465        Using Certificate Store Only" is enabled. If the user does not wish 
466        to save it, validation will fail.
468   <LI> HTML: Add support for decoding entities in hexadecimal notation.
469        Suggested by Tulip&aacute;nt Gergely.
471   <LI> The &quot;#&quot; command, when used as part of an aggregate
472        operation will allow users to select the role used in either 
473        replying, forwarding or replying to the group of selected messages, 
474        Suggested by Hisashi T Fujinaka.
476   <LI> If the charset of a message can not be determined, use the value set
477        in the <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A> for its value.
479   <LI> Resizing setup screen will redraw screen.
481   <LI> Unix Alpine only. Experimental: If Alpine/Pico finds a UCS4 code
482        in the width ambiguous zone, it will use other means to determine
483        the width, such as call wcwidth.
485   <LI> Pico: Code reorganization in the search command to make it easier to
486        add subcommands of the search command.
488   <LI> Pico: Search command can do a case sensitive match. Use the Ctrl-^
489        subcommand of the search command to bring this choice into view.
491   <LI> Pico: Add the ability to search for strings in the beginning or end
492        of a line. Use the Ctrl-^ subcommand of the search command to bring 
493        this choice into view.
495   <LI> For a multipart/alternative message, the Take Address command will 
496        work on the part that is being read.
498   <LI> When sending a message, allow for 512 characters of consecutive 
499        non-white space before folding the subject line.
501   <LI> Make sure titlebar (the line at the top of the screen) always 
502        contains the name of the folder/newsgroup that is open, if this 
503        fits in the title.
505   <LI> The feature <a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
506        will also scramble the name, version and operating system in the 
507        message-id header. Based on a contribution by Dennis Davis, which 
508        is itself based on a contribution by Mark Hills.
510   <LI> Change in logic in imap_set_password function to make Alpine ask if
511        a user wants to save a password before reading the password file.
513   <LI> When exporting all parts of a message, if two attachments have the same
514        name, do not overwrite a file more than once, but instead add a counter
515        number to the filename to make a new file that does not exist in the file
516        system.
518   <LI> Add the Control-R subcommand to the save command for attachments. 
519        This subcommand toggles if the saving will be done in binary mode 
520        for text attachments. When a user saves an attachment using binary
521        mode it will be saved as it was sent, otherwise the attachment will
522        be transformed to UTF-8 for further transformation through internal
523        and user defined filters for saving.
525   <LI> Add command line argument -smimedir, which allows to specify
526        the default path for a directory that contains the public, private, 
527        and ca directories. This is useful in case a user has a backup of 
528        old certificates that cannot be installed in the ~/.alpine-smime 
529        dir.
531   <LI> Reimplementation of the code that allows the .pinerc file to be a
532        symbolic link by Kyle George from tcpsoft.com to use realpath.
534   <LI> When saving an attachment, the "^T" command leads to a screen where the
535        "A" command can be used to add a file. A directory can be added by
536        pressing "^X" after the "A" command. Added after a suggestion by
537        Stefan Goessling.
539   <LI> When saving an attachment, the ^Y and ^V commands allow a user to 
540        scroll through the history of directories used to save attachments, 
541        while preserving the given name of the file. Suggested by Peter 
542        Koellner.
544   <LI> SMIME: Turn off automatic signing and encrypting of a message when
545        bouncing. Suggested after a discussion with Matthias Rieber.
547   <LI> When messages are selected, warn the user if a message that is not
548        selected will be bounced, or if not all selected messages will be 
549        bounced. Suggested by Ulf-Dietrich Braumann.
551   <LI> The bounce command adds a subcommand to choose a role.
553   <LI> When selecting messages by number, the &quot;.&quot; character can 
554        be used to specify the message on which the cursor is on.
556   <LI> When Alpine opens an attachment, it sometimes changes the extension 
557        of the file that is being opened and replaces it by another for the 
558        same mime type. If Alpine finds that the extension of the file 
559        corresponds with the mime type, according to the mime-types file, 
560        then it will keep it, and no substitution will be made.
562   <LI> Set no restrictions on the length of encoded subjects, but encode
563        words in length of no more than 75 characters.
564 </UL>
568 Bugs that have been addressed include:
569 <UL>
570   <LI> SMIME: Crash when a certificate has an invalid date of validity. Also
571        Alpine will use the function ASN1_TIME_print to determine the date 
572        of validity. Reported by Ben Stienstra.
574   <LI> SMIME: Crash when attempting to unlock the password file and an
575        incorrect password is entered.
577   <LI> SMIME: Crash when checking the signature of a message that contains
578        a RFC822 attached message. Reported by Holger Trapp and Bj&ouml;rn 
579        Krellner.
581   <LI> SMIME: Cancelling entering password to unlock key will not reprompt.
583   <LI> SMIME: fix a bug that did not allow users to transfer certificates to
584        remote containers. Reported by Matthias Rieber.
586   <LI> SMIME: certificates included in messages were not being transferred
587        to a remote container.
589   <LI> SMIME: Crash if public certificates are located in an inaccessible
590        remote server and the private key is not available.
592   <LI> SMIME: Alpine does not remove temporary files created when adding a 
593        CA certificate to a container. Reported by Holger Trapp.
595   <LI> SMIME: When reading a local certificate, Alpine converts the name 
596        of the certificate to lowercase, which may make Alpine not be able 
597        to read such certificate. Reported by Dennis Davis.
599   <LI> SMIME: If the option "Remember S/MIME Passphrase" is disabled, then
600        entering a password to read an encrypted message will make Alpine 
601        forget the key and not ask the password to unlock it again in case 
602        it is necessary to unlock it again. Reported by Ulf-Dietrich 
603        Braumann.
605   <LI> Alpine would use freed memory while trying to compute the color
606        of the titlebar. This happened when trying to continue a postponed 
607        message.
609   <LI> Alpine failed to read an encrypted password file if too many
610        passwords were saved in the password file.
612   <LI> When selecting messages while in Threaded Index Screen, some 
613        messages other than top of threads could appear in the index, making
614        Alpine display messages &quot;out of the screen.&quot;
616   <LI> The index format would be chopped at the position of an unrecognized 
617        token, instead of skipping the token as intended.
619   <LI> Work in progress: Avoid calling non-safe functions when Alpine
620        receives a signal. See bug report 
621        <A HREF="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=825772">here.</A>
623   <LI> Crash when attempting to read a message after a bounce command. 
624        In order to produce a crash one needed to use the ^T subcommand and 
625        do a search in a LDAP directory. The crash is produced by changes 
626        to the text in the title bar. Reported by Heinrich Mislik in the 
627        Alpine-info list.
629   <LI> HTML messages that contain UTF-8 may wrap at the wrong position,
630        making Alpine not display the correct character at the position 
631        that wrapping is done. Reported by Wang Kang.
633   <LI> Pico: Searching for a string that is too long causes Pico to crash
634        in the next search.
636   <LI> Fix vulnerability in regex library. This only affects those who use
637        this library, such as the windows version of Alpine. See 
638        <A HREF="http://www.kb.cert.org/vuls/id/695940">http://www.kb.cert.org/vuls/id/695940</A>
639        for more details.
641   <LI> Alpine would not set include and lib paths for OpenSSL if this was
642        installed in /usr/local/ssl.
644   <LI> If the .pinerc file is a symbolic link, Alpine might not write its
645        contents when saving its configuration.
647   <LI> The _INIT_ token does not skip over non-alphanumeric characters in
648        the name. Reported by Andreas Fehr.
650   <LI> When opening an INBOX folder in a context different from the 
651        incoming folders collection, from the command line, Alpine would 
652        open the INBOX folder from the incoming folders collection.
654   <LI> Mismatch in size of UCS and CELL caused a corruption in the
655        content of a pointer, which made the speller in PC-Alpine get the 
656        content of a word incorrectly.
658   <LI> Skip testing openssl compatibility version when cross-compilation
659        is detected. Fix contributed by Antti Sepp&auml;l&auml;
661   <LI> Alpine fails to remove temporary files used during a display or sending
662        filter. Fix contributed by Phil Brooke.
664   <LI> When the index is in zoomed state, adding new messages to the 
665        selection would not show those messages if those messages are on 
666        top of the current message in the top of the screen. Reported by
667        Ulf-Dietrich Braumann. In addition, when the user scrolls through
668        the index, this scroll smoothly, without jumping pages. Reported
669        by Holger Trapp.
671   <LI> Crash when reviewing history of saving attachments.
673   <LI> Crash when canceling a goto command on a local collection that has
674        not been expanded and attempting to expand such collection.
676   <LI> Crash in Pico when forwarding messages that contain a direction mark
677        at the end of a line. Reported by James Mingo.
679   <LI> Solve compilation errors when Alpine is built with Visual Studio 2015.
680 </UL>
684 Version 2.20 addresses bugs found in previous releases and has several 
685 additions as well.
688 Additions include:
691 <UL>
692   <LI> Upgrade UW-IMAP to Panda IMAP from 
693        <A HREF="https://github.com/jonabbey/panda-imap">https://github.com/jonabbey/panda-imap</A>.
694   <LI> S/MIME: Add screen to manage certificates.
695   <LI> S/MIME: Signatures are validated using the user's certificates instead
696        of the ones included in the message. Behavior can be disabled by
697        disabling the option <A href="h_config_smime_use_cert_store">
698         <!--#echo var="FEAT_smime-use-storey-only"--></A>, which is enabled
699        by default.
700   <LI> S/MIME: sign messages using intermediate certificates when needed 
701        and possible.
702   <LI> S/MIME: validation of certificates for servers that modify signed 
703        content.
704   <LI> S/MIME: signed and encrypted messages will be signed first and 
705        encrypted second, so that they can be decoded by other clients.
706   <LI> S/MIME: add the sender certificate to the list of certificates in
707        encrypted messages to make it possible for the sender to decrypt
708        the message they sent.
709   <LI> S/MIME: When transferring certificates to a local container, create 
710        container with default names PublicContainer, PrivateContainer and 
711        CAContainer, as appropriate for these files, unless the user has 
712        provided some other names.
713   <LI> S/MIME: Forwarding a message will include the signed part as part
714        of the text and not as a multipart message, just as the reply
715        command does.
716   <LI> HTML: Style tag in body of html message causes Alpine to not write
717        its content until a new &lt;/style&gt;
718   <LI> HTML: &lt;BR&gt;, &lt;BR /&gt;, and &lt;BR/&gt; are considered
719        the same inline tag; the same is valid for the &lt;HR&gt; tag.
720   <LI> Add support to selective expunge through a subcommand of the 
721        select-apply commands. Read more in the <A 
722        HREF="h_index_cmd_expunge">help</A> for the expunge command.
723   <LI> Pico: New subcommand of the search command, allows to reverse the
724        direction of search.
725   <LI> Unix Alpine: If a password file is defined, and S/MIME is enabled, 
726        the key and certificate used to encrypt the password file are saved 
727        in the ~/.alpine-smime/.pwd directory, or in the directory specified
728        by the -pwdcertdir command line option. 
729        <A HREF="h_password_file_support">Learn more</A>.
730   <LI> Add /tls1, /tls1_1, /tls1_2 and /dtls1 to the definition of a 
731        server to use different ways to connect using ssl, for 
732        example {server.com/tls1} will attempt to connect to 
733        server.com at the ssl imap port (port 993) and establish a 
734        connection using TLSv1. These flags can be used in 
735        conjunction with the /ssl flag, the ssl flag is redundant. 
736        Conversely, however, the /ssl flag does not imply any of 
737        these flags; the /ssl flag means SSLv3 or, if not available, 
738        SSLv2 in the SSL port.
739   <LI> Alpine does not attempt to automatically reopen a collection 
740        that was not opened due to cancellation by the user. 
741        Instead, the user must try to open it explicitly.
742   <LI> Alpine searches for a certificate that matches an email address in
743        all addresses in a certificate (instead of just the first 
744        one) but when it tries to unlock the certificate, it asks 
745        for the password for the first email address in that 
746        certificate.
747   <LI> Style tag in body of html message causes Alpine to not write its content
748        until a new &lt;/style&gt;
749   <LI> Experimental: Write the content-type of a message in 
750        lowercase, as some non-compliant servers do not understand 
751        uppercase content-type, such as those of GMX.de.
752   <LI> Experimental: Do not send the RSET command before attempting
753        to send a message, as this causes a delay in some evily managed
754        servers.
755   <LI> Opening a folder updates recent count in maildrops (this 
756        already works for other types of folders)
757   <LI> Automatically redraw screen after opening an attachment 
758        instead of simply clearing it.
759   <LI> Pico: Justification works without need of a predefined quote 
760        string. This allows justification of blocks of text that are 
761        indented with spaces.
762   <LI> Decode the name of attachment names, so they can be written as part   
763        of the description of the part. 
764   <LI> Check bounds and tie strings off to improve security. Contributed 
765        by James Jerkins.
766   <LI> Replace tabs by spaces in From and Subject fields to control for
767        size in screen of these fields. Change only in index screen display.
768   <LI> Aggregate operations allows bouncing a list of messages using a role.
769        Suggested by Ulf-Dietrich Braumann.
770   <LI> Disable saving new passwords to the password file. Implemented
771        by Louis Raphael from dpslabs.com. <A HREF="h_config_disable_password_file_saving">Learn more.</A>
772   <LI> Makefile: Add $(LIBINTL) to the flags to link rpdump, rpload, 
773      alpined and alpineldap because MAC OSX 10.8 x86_64 needs it. Reported by
774      Charles M. Register.
775 </UL>
779 Bugs that have been addressed include:
780 <UL>
781   <LI> Fix _INIT_ token for reply quote string to include support for 8-bit
782        in personal names. Reported by Lev Gorenstein.
783   <LI> When writing the .pinerc file, lines were truncated if they were longer
784        than 10,000 characters. This could cause data corruption, so now lines
785        are allowed to be of any length.
786   <LI> In Unix Alpine (but not in MAC OSX) fix a problem that made Alpine 
787        remove attachments before they were open by a mailcap viewer. It 
788        requires that the user has an equivalent to a command such as "ps 
789        auxww" to list the list of processes, and check if there is any 
790        program using the attachment. The default is "/bin/ps auxww", but 
791        it can be changed at compile time with the option --with-ps-cmd. 
792        See the help of the variable 
793        <a href="h_config_psleep"><!--#echo var="VAR_mailcap-check-interval"--></a> 
794        for more information.
795   <LI> S/MIME: signed messages that contained an attachment would not validate.
796   <LI> S/MIME: signed and encrypted messages from Thunderbird would not 
797        validate. Thanks to Andreas Schamanek for testing, debugging and 
798        advising during the process of fixing this problem.
799   <LI> S/MIME: Forwarding messages with multipart content-type failed to be signed
800        with &quot;Error writing pipe&quot; message. Reported by Andreas Schamanek
801        and Stefan Mueller.
802   <LI> S/MIME: Certificates are lost when using a pinerc file outside of the 
803        home directory.
804   <LI> S/MIME: Accessing the S/MIME configuration screen would deinitialize
805        SMIME making it not possible to sign or encrypt messages.
806   <LI> S/MIME: Forwarding a signed message might make the body contain mime 
807        information that is not part of the body, and hence making the body
808        of the message seem wrong.
809   <LI> S/MIME Alpine would compute incorrectly the signature of a message 
810        that contains 8bit if the option "Enable 8bit ESMTP Negotiation" is 
811        enabled, the message contains 8bit characters and the smtp server 
812        supports 8bit sending.
813   <LI> When replying to several messages, subject will be decoded first,
814        and then stripped from re/fwd before they are compared to determine
815        the subject of the replied message.
816   <LI> Crash when tcp connection to NNTP server was lost after connection
817        had been established, but lost immediately afterwards.
818   <LI> Crash with message &quot;lock when already locked&quot;, when painting
819        an index was based on scores that needed information from a remote
820        addressbook in the same server as the folder opened. Reported by
821        Peter Koellner.
822   <LI> Crash in message/rfc822 attachments encoded in base64.
823   <LI> Postponed messages whose content-type is text/html, text/enriched and
824        text/richtext are sent with that content-type, even though, after
825        resuming composition, Alpine had changed its type to text/plain.
826   <LI> Alpine cannot handle correctly some characters in the Windows-1256 
827        character set, which might lead to a crash or a corruption in the 
828        screen. Work was done to contain the bug. A more complete fix will 
829        be done in a future release. Reported by Professor Robert Funnell.
830   <LI> WebAlpine: add _GNU_SOURCE to make pubcookie build.
831   <LI> WebAlpine: fail to build with debug disabled. Fix from Sam Hathaway.
832   <LI> Save command did not warn of existence of a message with a deleted 
833        attachment in an aggregate save, unless cursor was positioned on a message 
834        with a deleted attachment. Reported by Florian Herzig.
835   <LI> Transformation of UTF-8 to MUTF7 was not being done when creating a folder
836        in an IMAP server.
837   <LI> DATE tokens were not internally transformed to UTF-8, which made their
838        values not appear complete in the screen. Reported by Werner Scheinast.
839   <LI> Fixes to configure script so that it will not require PAM for every system.
840   <LI> Fix to configure script so that it will use CPPFLAGS instead of 
841        CPPCFLAGS, and so the --with-ssl-include-dir option take effect 
842        during the build. Fix by Ulf-Dietrich Braumann.
843   <LI> Fix in WebAlpine: do not use deprecated dereference in pointer, 
844        needs to use tcl_getstringresult() instead. Reported by 
845        Ulf-Dietrich Braumann.
846   <LI> Quoted string in URL Viewers configuration variable were not 
847        unquoted before passing to viewer.
848   <LI> Fix in configure script to detect location of tcl library; add
849        /usr/local in FreeBSD and fix a bug in configure script that used 
850        $alpine_TCLINC instead of $alpine_TCLINC/tcl.h. Reported and fixed 
851        by Werner Scheinast.
852   <LI> Move SSL configurations from UW-IMAP to configure script, and
853        update OpenSSL configuration for Mac OS X.
854   <LI> Remove -lregex from linker flags when building --with-supplied-regex.
855   <LI> When the download of an attachment is interrumpted, Alpine stills
856      caches what was downloaded, making the download incomplete for 
857      subsequent calls of Alpine attempting to open the attachment. In the 
858      future, Alpine will not cache any downloaded part of the attachment 
859      when it is interrupted.
860 </UL>
865 Version 2.11 addresses bugs found in previous releases and has a few 
866 additions as well.
869 Additions include:
872 <UL>
873    <LI> Alpine requires version 1.0.0c of Openssl to build.
874    <LI> Increase encryption of S/MIME encrypted messages.
875    <LI> Pico: Improvements in justification of paragraphs: lines that begin
876 with a quote string, followed by a space were considered individual paragraphs,
877 now they are considered part of a paragraph. Based on earlier joint work
878 with Jeff Franklin.
879    <LI> Unix Alpine: Allow local .pinerc file to be a symbolic link.
880    <LI> Experimental extended support of recognition of UTF-8 in urls based on 
881 information from <A HREF="http://url.spec.whatwg.org">http://url.spec.whatwg.org</A>.
882    <LI> Added recognition of ws and wss URIs.
883    <LI> Add ability to <A HREF="h_config_folder_color">color folder names</A>, 
884  <A HREF="h_config_directory_color">directory names</A>,
885  and <A HREF="h_config_folder_list_color">text</A> in the FOLDER SCREEN.
886    <LI> Add the ability to <A HREF="h_config_indextoken_color">color any token</A>
887 used in the display of the INDEX SCREEN.
888    <LI> New option <A HREF="h_config_preserve_field"><!--#echo var="FEAT_preserve-original-fields"--></A>
889 that adds the ability to preserve To: and Cc: fields when replying to a 
890 message, as specified by original sender.
891    <LI> Add a _SILENT_ token to the <A HREF="h_config_display_filters">list of tokens</A>
892  for a display filter, so that Alpine will not redraw the screen when it is unnecessary.
893    <LI> Quota command includes subcommands for printing, forwarding, etc.
894 </UL>
897 Bugs that have been addressed include:
899 <UL>
900   <LI> Crash when a non-compliant SMTP server closes a connection without a QUIT command.
901   <LI> Crash when resizing the screen in a configuration screen.
902   <LI> Do not bail out during a tcp timeout, instead close connection and avoid crash.
903   <LI> Do not use a shell to open a browser.
904   <LI> Configure script did not test for crypto or pam libraries.
905   <LI> Configure script attempted to build web component, even if header file tcl.h was not present.
906   <LI> Change Cygwin directory separator to &quot;/&quot;.
907   <LI> Alpine could set List- headers, contrary to RFC 2369.
908 </UL>
911 Version 2.10 addresses bugs found in previous releases and has a few 
912 additions as well.
915 Additions include:
918 <UL>
919    <LI> Quota report for IMAP folders that support it (press the &quot;@&quot; command in the index screen of such folder).
920    <LI> Search a folder for the content of any header with the &quot;;&quot; command. 
921    <LI> Foreign characters are decoded correctly in IMAP folder names.
922    <LI> Question about breaking connection to slow servers includes their name.
923    <LI> Internal x-alpine-help: resource locator for sending links to internal help.
924    <LI> OpenSuse: Alpine find location of OpenSSL certificates.
925    <LI> Cygwin: Alpine builds without need of patch.
926    <LI> Recognition of proper mime type for docx, xlsx, and pptx files.
927    <LI> When composing a message, Alpine will create a new thread when the subject is erased.
928    <LI> Add support for strong encryption of password file when S/MIME is built in.
929 </UL>
932 Bugs that have been addressed include:
935 <UL>
936    <LI> Alpine will close a folder after confirming with user their intention and not reopen it.
937    <LI> Double allocation of memory in Pico.
938    <LI> Alpine does not give warning of message sent and posted upon receipt by email of message posted in newsgroup.
939    <LI> Handling of STYLE html parameter may make Alpine not display the content of a message.
940    <LI> Not recognition of environment variables in some options.
941    <LI> Not display of login prompt during initial keystrokes.
942    <LI> justification of long urls breaks them.
943    <LI> Incorrect New Mail message when envelope is not available.
944    <LI> Incorrect display of PREFDATE, PREFDATETIME and PREFTIME tokens.
945    <LI> Crash when resizing the screen after display of LDAP search.
946    <LI> Crash when redrawing screen while opening a remote folder collection.
947    <LI> Infinite loop in scrolltool function during notification of new mail.
948    <LI> No repaint of the screen after midnight was done when the SMARTDATE token is used in the index screen.
949    <LI> No display of signed and encrypted S/MIME messages.
950    <LI> Alpine will not build with OpenSSL.
951    <LI> Crash for double locking in calls to c-client.
952    <LI> Bad recognition of mime-encoded text may make Alpine not print the subject of a message.
953    <LI> Ignore the references header when threading messages
954    <LI> No update of colors in index screen after update to addressbook.
955 </UL>
958 Version 2.01 addresses bugs found in previous releases and has a few 
959 additions as well.
962 Additions include:
965 <UL>
966    <LI> Fixed non-ASCII web alpine handling
967    <LI> Added web alpine help.
968    <LI> Allow web alpine inbox on second IMAP server.
969    <LI> Allow web alpine config reset after bad inbox-path gets set.
970    <LI> Added web alpine ability to create group contact from contact list members.
971    <LI> Backed out web alpine coercing of default sort-key of arrival to date/reverse.
972    <LI> Tidied up web alpine script layout.
973    <LI> Fixed web alpine status message ordering
974    <LI> Added web alpine Fcc setting via Contacts in Compose
975    <LI> Fixed web alpine autodraft attachment issues
976    <LI> Fixed web alpine problems with recent count maintenance
977    <LI> Fixed web alpine newmail arrival display in message list
978    <LI> Added web alpine confirmation to folder create for Move/Copy
979    <LI> Added web alpine user-domain support
980    <LI> Fixed web alpine to support INBOX-within-a-collection deletion
981 </UL>
984 Bugs that have been addressed include:
987 <UL>
988    <LI> In web alpine fixed delete all selected within a search result to reorient
989         correctly to whole-mailbox message list.
990    <LI> Fixed web alpine delete in view page to be sensitive to sort
991    <LI> Fixed web alpine open of folder within directory from folder manager page.
992    <LI> Fixed web alpine open of folder within directory from left column's recent cache.
993    <LI> Fixed web alpine problems with spaces in special folder names like Drafts
994    <LI> Fixed web alpine adding contacts from message list and view
995    <LI> Fixed web alpine create of non-existent fcc
996    <LI> Remove mistakenly left debugger statement in web alpine javascript.
997    <LI> Some UNIX alpine build problems fixed
998    <LI> Crash in pico and pilot when nl_langinfo returned something unrecognizable
999         or NULL. Add recognition of "646" to nl_langinfo wrapper. This is returned
1000         by locale charmap call on some Solaris 8 systems.
1001    <LI> MacOS Keychain logins were not working correctly with generic host names, like
1002         imap.gmail.com, as opposed to specific instances like rx-in-209.google.com, causing
1003         new password requests when not needed
1004    <LI> Possible crash in WhereIs command while in FOLDER LIST when cursor is located on the
1005         last folder in the list
1006    <LI> Change to S/MIME get_x509_subject_email so that X509v3 alternative names are
1007         looked for along with the email address
1008    <LI> Changes to configure to get spellcheck options with work with arguments.
1009    <LI> Add change from Mark Crispin of panda.com to at least minimally handle non-ascii hostname
1010         returned by gethostname (iPhone can do this)
1011    <LI> Fixed a bug that prevents a filter that moves a message into a local folder
1012         from also setting the DELETE flag in that moved message. Fix from Eduardo Chappa.
1013    <LI> Changed size of shellpath in open_system_pipe from 32 to MAXPATH. Fix from
1014         Jake Scott of marganstanley.com.
1015    <LI> Buffer overflow bug in c-client's tmail/dmail, fix from Mark Crispin. This
1016         is not used in alpine.
1017    <LI> Imapd server crash from unguarded fs_give in IDLE code, fix from Crispin.
1018         Apparently this causes RIM Blackberry BIS service problems. This is not
1019         used in alpine.
1020    <LI> Tmail uninitialized pointer fix from Neil Hoggarth. Not used in alpine.
1021    <LI> Buffer overflow possibility in RFC822BUFFER routines in c-client library.
1022         Fix from Ludwig Nussel of SUSE and from Crispin.
1023    <LI> Include whole filename in export filename history
1024    <LI> Fix display bug in pico when Replace command is canceled. Fix from Eduardo Chappa.
1025 </UL>
1028 Version 2.00
1029 addressed bugs found in previous releases and had a few additions as well.
1031 Additions included:
1034 <UL>
1035    <LI> Redesigned Web Alpine interface
1036    <LI> Experimental <A HREF="h_mainhelp_smime">S/MIME support</A> added
1037         in UNIX versions of Alpine
1038    <LI> Attempt to include the attachment filename as part of the name of the
1039         temporary file used when viewing an attachment with an external program.
1040         Add some randomness to that filename to make it hard to predict the filename.
1041         Add a filename extension, usually derived from the type/subtype, to the
1042         temporary filename. This was previously done only on Windows and MacOS X.
1043    <LI> Enhance address completion in the composer (TAB command) so that it looks
1044         through nicknames, fullnames, and addresses from the address book; addresses
1045         from the message being viewed, if any; and the results from
1046         <A HREF="h_direct_config">LDAP Directory Server</A>
1047         lookups for all of the defined directory servers that have the
1048         <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
1049         feature set.
1050    <LI> Make the default character set setting more liberal in what it will accept
1051         from the UNIX nl_langinfo call and the various values of LANG seen in the wild
1052    <LI> Remove the Alpine revision number from the titlebar in released versions
1053         while leaving it there in snapshot versions
1054    <LI> Add a <A HREF="h_config_quell_asterisks">feature</A> to suppress the
1055         display of asterisks when you type a password for Alpine
1056    <LI> Add line wrapping when displaying <EM>PRE</EM> formatted sections of HTML
1057    <LI> When the
1058         <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
1059         feature is turned on convert not only the dates in the index screen but also
1060         the dates in the MESSAGE VIEW
1061 </UL>
1064 Bugs addressed in the 2.00 release included:
1067 <UL>
1068    <LI> Crash when using tab-completion for selecting a Save filename
1069    <LI> Make Web Alpine help text images relative for more portability
1070    <LI> Fixed attach save of html parts in Web Alpine
1071    <LI> Viewing, printing, exporting, replying, and bouncing of message
1072         digests was broken. Replying and bouncing should not have been
1073         allowed at all for digests. It would be nice to have a more standard
1074         index-like view of a message digest but that has not been addressed
1075         with this minor bug fix.
1076    <LI> Adjust wrapping of HTML messages so that the margins specified by
1077         <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
1078         <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>
1079         are observed correctly
1080    <LI> Interrupt of WhereIs command in index was broken
1081    <LI> The <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
1082         option did not work correctly interpreting unknown characters in message headers
1083    <LI> Long address lines could cause blank continuation lines
1084    <LI> Save to a local default INBOX failed if the primary collection was also local,
1085         which it is by default. The save went to  ~/mail/inbox instead.
1086    <LI> Make a default save folder of &quot;inbox&quot; always mean the real
1087         inbox, not the inbox in the primary collection
1088    <LI> Address book entries with lots of addresses would be truncated when
1089         entered in the composer with a screen size wider than 270 or so charcters
1090    <LI> Some fields in the index screen were truncated when the screen width was
1091         wider than 256 characters
1092    <LI> Crash when TABing to next folder, the next folder with new mail is a POP
1093         folder, and there is a more than 10 minute pause between typing the TAB
1094         and typing the Yes
1095 </UL>
1098 Version 1.10(962)
1099 addressed bugs found in previous releases and had a few additions as well.
1101 Additions included:
1104 <UL>
1105    <LI> Add the possibility of setting a default role
1106         (see <A HREF="h_role_select">Roles Screen</A>)
1107         which may be convenient if your work flow involves acting in one
1108         role for a while then switching to another role and staying in the
1109         new role for another period of time
1110    <LI> When Saving and the IMAP server problem &quot;Message to save shrank!&quot;
1111         is encountered, ask the user if he or she wants to continue with the
1112         risky Save anyway instead of aborting. This may be helpful if your
1113         IMAP server is broken in this way but be aware that it is possible there
1114         was a real error instead of just a broken server implementation.
1115    <LI> Some configure adjustments for Kerberos detection and
1116         for SCO OpenServer 5 support
1117    <LI> Hide INBOX in a collection if it also appears as an
1118         <A HREF="h_config_enable_incoming">Incoming Folder</A>
1119    <LI> Show asterisks for feedback when the user is typing a password
1120    <LI> Performance improvement for threading of large folders
1121    <LI> Previously, the search used to find
1122         Pattern matches containing To patterns searched for both To
1123         and Resent-To headers. The relatively complicated search this
1124         produces causes problems when using some deficient IMAP servers.
1125         Now the default is to look only for To headers and ignore the
1126         presence of Resent-To. The previous behavior may be restored
1127         with the <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> feature.
1128    <LI> Add an
1129         <A HREF="h_config_unk_char_set"><!--#echo var="VAR_unknown-character-set"--></A>
1130         to help with reading malformed unlabeled messages
1131    <LI><A HREF="h_config_suppress_user_agent"><!--#echo var="FEAT_suppress-user-agent-when-sending"--></A> option added
1132    <LI> Map some Shift-LeftArrow escape sequences to LeftArrow
1133    <LI> Add feature <A HREF="h_config_warn_if_fcc_blank"><!--#echo var="FEAT_warn-if-blank-fcc"--></A>
1134 </UL>
1137 Bugs addressed in the 1.10(962) release included:
1140 <UL>
1141    <LI> Crash when encountering certain errors from an SMTP server
1142    <LI> Crash in composer caused by overflow in replace_pat()
1143    <LI> Hang when authenticating to an SMTP server that fails with a
1144         &quot;connection disconnected&quot; error
1145    <LI> Bug in handling of trailing tab character in flowed text
1146    <LI> Security enhancement for mailcap parameter substitution
1147    <LI> <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>
1148         did not work if the message being replied to was not flowed text
1149         and <A HREF="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></A>
1150         was not turned on
1151    <LI> Don't allow printer to be changed through hidden config screen
1152         if system administrator didn't want it to be allowed
1153    <LI> Attempts are sometimes made to set the Forwarded flag when alpine
1154         should know that it won't work, causing error messages to appear
1155    <LI> A <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
1156         of double-quote double-quote didn't work right
1157    <LI> Quoting wasn't being done to protect special characters from the
1158         MacOS X shell when
1159         <A HREF="h_config_browser"><!--#echo var="VAR_url-viewers"--></A>
1160         was not defined
1161    <LI> On MacOS X message attachments should be shown internally instead of
1162         being shown using the Mail application
1163    <LI> When replying to a message with a charset of X-UNKNOWN Alpine would
1164         sometimes set the outgoing charset to X-UNKNOWN, making the result
1165         unreadable
1166    <LI> When the sending of a message failed lines with leading spaces had one
1167         additional space inserted in each of those lines when the user
1168         was returned to the composer
1169    <LI> The <A HREF="h_index_cmd_whereis">WhereIs</A> command missed some index lines
1170         that contained non-ascii characters because it was truncating the
1171         line being searched so that it was shorter than what was visible on
1172         the screen
1173    <LI> When composing, an attachment with a long name that causes wrapping in
1174         just the wrong place would generate an error and cause the send
1175         of the attachment to fail
1176    <LI> After calling the file browser to attach a file in the composer, a resize
1177         of the window when back in the composer would redraw the last screen that
1178         had been shown in the browser instead of the current composer screen
1179    <LI> Possible crash in index screen when encountering unparseable addresses
1180         or when using one of the PRIORITY tokens or the HEADER token in the
1181         <a href="h_config_index_format"><!--#echo var="VAR_index-format"--></a>
1182    <LI> Problems with Header Color editing if the configuration option
1183         <a href="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></a>
1184         was inadvertently changed to the Empty Value in the hidden config screen
1185    <LI> When resuming the final postponed message from an Exchange server the user
1186         could get a certificate validation failure because alpine was trying
1187         to validate the canonical name of the folder instead of the name the
1188         user used
1189    <LI> Windows line endings in a mimetypes file on a Unix system cause a
1190         failure to find a match
1191    <LI> Make matching of extension names case independent in mimetypes files
1192    <LI> Windows dialog boxes for entering text were not working correctly
1193    <LI> Replying to or Forwarding multipart/alternative messages which had a
1194         single text/html part did not work well
1195    <LI> Printing the print confirmation page caused a crash
1196    <LI> A To line with a long, quoted personal name could display incorrectly
1197         if it was close to the same width as the screen
1198    <LI> When <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
1199         and <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
1200         are turned on hide (0/0) when the folder is empty
1201    <LI> Folder completion while Saving didn't work if the collection being
1202         saved to was the local home directory
1203 </UL>
1206 Version 1.00
1207 was an evolutionary release based on
1208 <A HREF="http://www.washington.edu/pine/">Pine</A>, which was also
1209 developed at the University of Washington.
1210 It is upwards-compatible for existing Pine users.
1213 Changes included:
1215 <UL>
1216    <LI> Ground-up reorganization of source code around addition
1217         of "pith/" core routine library.
1218    <LI> Fundamental improvement in Alpine's internal text handling, which
1219         is now based exclusively on Unicode. This allows displaying incoming
1220         messages and producing outgoing messages in many different languages.
1221    <LI> Ground-up reorganization of build and install procedures
1222         based on GNU Build System's autotools. NOTE, the included IMAP library
1223         build is not based on autotools, so some features will not work. However,
1224         it should get built automatically during the Alpine build process.
1225    <LI> Web-based version included built on TCL designed to run under
1226         a suitable CGI-supporting web server such as Apache.
1227 </UL>
1231 Details on changes in previous (prerelease) versions of Alpine
1232 may be found at the following URL:
1234 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1237 <HR WIDTH="75%"><P>
1239 <H2>Getting Help</H2>
1240 <DL>
1241 <DT>Online Help</DT>
1242 <DD>
1243 Every Alpine screen and command has associated help text
1244 accessible via the &quot;?&quot; key (or Ctrl-G in text-input contexts).
1245 </DD>
1247 <DT>Web Help</DT>
1248 <DD>
1249 The most current source of information about Alpine,
1250 including new version availability, is the web page at
1252 <CENTER><SAMP><A HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP></CENTER>
1253 </DD>
1254 </DL>
1256 Frequently Asked Questions (and answers) may be found at the following
1257 URL:
1259 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/faq/">http://www.washington.edu/alpine/faq/</A></SAMP></CENTER>
1262 <HR WIDTH="75%"><P>
1264 <H2>Additional Information</H2>
1266 General Alpine configuration information can be found
1267 <A HREF="h_news_config">here</A>.
1269 This is revision (<!--#echo var="ALPINE_REVISION"-->) of the Alpine software.
1270 Alpine mailbox and <A HREF="https://github.com/jonabbey/panda-imap/">IMAP</A> server
1271 access is provided by the IMAP Toolkit Environment (c-client library)
1272 version <!--#echo var="C_CLIENT_VERSION"-->.
1273 <P> 
1274 Alpine was developed until 2009 by the Office of Computing 
1275 &amp; Communications at the University of Washington in Seattle.  
1276 Since then, the effort of developing Alpine has been continued by
1277 a community of volunteers who make good software even better!
1280 Alpine Copyright 2013-2018 Eduardo Chappa, 
1281 <BR> Copyright 2006-2008 University of Washington.
1284 Additional legal notices can be found <A HREF="h_news_legal">here</A>,
1285 or instead you can find the Apache License, version 2.0 at the web URL:
1288 <CENTER><A HREF="http://www.apache.org/licenses/LICENSE-2.0">http://www.apache.org/licenses/LICENSE-2.0</A></CENTER>
1291 &lt;End of Release Notes&gt;
1292 </BODY>
1293 </HTML>
1294 ====== h_password_file_support ======
1295 <HTML>
1296 <HEAD>
1297 <TITLE>Encryption for Password File Support Explained</TITLE>
1298 </HEAD>
1299 <BODY>
1300 <H1>Encryption for Password File Support Explained</H1>
1302 Index<BR>
1303 <OL>
1304 <LI><A HREF="#content">Explanation</A>
1305 <LI><A HREF="#example_existing_key">Example of Use of Existing Key and Certificate</A>
1306 <LI><A HREF="#example_self_signed">Example of Creating Master Password</A>
1307 </OL>
1309 <P><A NAME="content">Unix Alpine Only.</A>
1311 <P> If your version of Alpine has been built with password file support
1312 then you can use a special file to save your passwords, and avoid typing
1313 them every time you open a connection to a remote server.
1315 <P> If, in addition, your version of Alpine was built with SMIME support, then your 
1316 password file will be encrypted with a strong key. There are two ways in 
1317 which this can happen: Alpine will either use a matching private key and 
1318 public certificate pair that you already own, or it will create one for 
1319 you, just for purposes of encrypting this file. We describe both processes 
1320 below.
1322 <P> Initially, Alpine will scan your public and private directories for a 
1323 certificate/private key pair that works. Alpine will pick the first pair 
1324 that it finds that matches. 
1326 <P> Once a pair has been chosen, it will be copied to the directory 
1327 ~/.alpine-smime/.pwd, and from then on, Alpine will use the pair found in 
1328 that directory. The first time this process is done, this directory will 
1329 be created, a key/certificate pair will be copied to it, from then on 
1330 this pair will be used to encrypt and decrypt your password file. 
1332 <P> If you want to use a specific key and certificate pair to encrypt
1333 your password file, you can create the directory ~/.alpine-smime/.pwd 
1334 manually, and then create your preferred key/certificate pair there.
1335 Alpine will use this key regardless of if it has expired, or if it is
1336 self-signed. These issues do not affect the encryption or decryption
1337 of the password file.
1339 <P> If you prefer not to use the directory ~/.alpine-smime/.pwd to save 
1340 your key/certificate pair, you can specify a different one with the 
1341 -pwdcertdir command line option in Alpine. If the directory specified by 
1342 this option is not found Alpine will fail to encrypt and decrypt your 
1343 password file. However if it exists, Alpine will search for a 
1344 key/certificate pair in that
1345 directory, and if it does not find one, it will create one and save it
1346 in that directory.
1348 <P> Alpine does not care about the names of the key and certificates in 
1349 this directory, but the private key must have &quot;.key&quot; extension 
1350 and your public certificate must have the &quot;.crt&quot; extension. The
1351 name of the private key will be used in the prompt when you are asked
1352 to unlock your key to decrypt your password.
1354 <P> If Alpine cannot find a suitable private key and public certificate 
1355 pair to encrypt your password, it will create one. You will be asked to 
1356 create a &quot;Master Password&quot; to protect such key. At this moment 
1357 there are no restrictions on passwords, other than they have to be at 
1358 least 8 characters long, but future versions of Alpine will include 
1359 functionality to restrict master passwords, as set up by the administrator 
1360 of the system in the pine.conf.fixed file.
1362 <P><A NAME="example_existing_key"><B>Example of Use of Existing Key and Certificate</B></A>
1364 <P>Assume you have a private key called peter@address.com.key in your, 
1365 ~/.alpine-smime/private directory, and a public certificate called 
1366 peter@address.com.crt in your ~/.alpine-smime/public directory, and these 
1367 are your only key/certificate pair.
1369 <P> When Alpine starts for the first time, without command line options, 
1370 it will check if the directory ~/.alpine-smime/.pwd exists, and if not, 
1371 it will create it. Then it will go through your keys and certificates and 
1372 find a pair that it can use, and copy the files peter@address.com.key,
1373 and peter@address.com.crt to the ~/.alpine-smime/.pwd directory. Alternatively
1374 you can do the same by copying these files by yourself. This can be done
1375 with the sequence of commands
1377 <PRE>
1378 mkdir ~/.alpine-smime/.pwd
1379 cp ~/.alpine-smime/private/peter@address.com.key ~/.alpine-smime/.pwd
1380 cp ~/.alpine-smime/public/peter@address.com.crt ~/.alpine-smime/.pwd
1381 </PRE>
1383 <P> When Alpine starts, you will be asked the password to unlock your
1384 private key with the prompt.
1386 <PRE>
1387 Enter password of key &lt;peter@address.com&gt; to unlock password file:
1388 </PRE>
1390 <P> If you prefer to use different names for your private and public keys 
1391 in the ~/.alpine-smime/.pwd directory, you can do so, but you must 
1392 preserve the extension of the files. For example, you can use the names 
1393 private_key.key and public_cert.crt instead. In this case, the prompt you 
1394 will see when you are asked to unlock your private key will read
1396 <PRE>
1397 Enter password of key &lt;private_key&gt; to unlock password file:
1398 </PRE>
1400 <P>Observe that you do not need to use an existing key/certificate pair, 
1401 and that you can create a new private key/public certificate pair to 
1402 encrypt and decrypt your password file. Alpine provides a mechanism to
1403 change the encryption key for this file in the S/MIME configuration
1404 screen.
1406 <P><A NAME="example_self_signed"><B>Example of Creating Master Password</B></A>
1408 <P> If Alpine cannot find a suitable private key and public certificate pair
1409 to encrypt your password file, it will create one. When doing so, it will
1410 start the process with the following warning:
1412 <PRE>
1413 Creating a Master Password for your Password file.
1414 </PRE>
1416 <P> Then Alpine will ask you to enter your Master Password:
1418 <PRE>
1419 Create master password (attempt 1 of 3):
1420 </PRE>
1422 <P> Once you enter this password, and it validates according to system policy,
1423 you will be asked to confirm this password. 
1425 <PRE>
1426 Confirm master password (attempt 1 of 3):
1427 </PRE>
1429 <P> If you input the same password, then Alpine will set that as your 
1430 Master Password, and you will use this password to unlock your key in the 
1431 future.
1433 <P> If you would like to switch your Master Password in the future, you can 
1434 do so by creating a new public key and public certificate pair. You can do 
1435 so in the S/MIME configuration screen, in the &quot;Manage Key and 
1436 Certificate for Password File&quot; section, simply enter your current 
1437 password to unlock your current key and then press &quot;C&quot; to create 
1438 a new key.
1441 &lt;End of help&gt;
1442 </BODY>
1443 </HTML>
1444 ====== h_network_encryption_security ======
1445 <HTML>
1446 <HEAD>
1447 <TITLE>Network Encryption Security Explained</TITLE>
1448 </HEAD>
1449 <BODY>
1450 <H1>Network Encryption Security Explained</H1>
1452 You can specify which encryption protocol you would like to try when
1453 creating a secure connection to a server. Alpine will attempt to use
1454 that encryption protocol, but in practice the protocol being used will
1455 default to the most secure protocol that both Alpine and the server
1456 support.
1458 <P> If you use the latest version of OpenSSL, the /ssl modifier to the 
1459 server definition will use the most secure version of the TLS encryption 
1460 protocol. The same will be true if you try /tls1_1 or /tls1_2, but in an 
1461 old version of OpenSSL (pre 1.1.0 series) /tls1_1 might mean to use 
1462 version 1.1 of the TLS protocol.
1464 <P> You will never go wrong by using the /ssl modifier. At the time of
1465 this writing OpenSSL had released version 1.1.1, with support for
1466 TLS version 1.3. If your version of OpenSSL does not support this version
1467 of the TLS protocol, then the /tls1_3 modifier will only mean to use
1468 the most secure version of the TLS protocol that OpenSSL and the
1469 server can negotiate. In future versions of OpenSSL, /tls1_3 might mean
1470 to try to negotiate a higher version of the TLS protocol.
1472 <P> In order to avoid confusion, the /ssl flag is the best way to guarantee
1473 the highest encryption protocol available, and it is the recommended
1474 modifier to the server definition to create a secure encrypted connection.
1477 &lt;End of help&gt;
1478 </BODY>
1479 </HTML>
1480 ====== h_xoauth2 ======
1481 <HTML>
1482 <HEAD>
1483 <TITLE>XOAUTH2 Authenticator Explained</TITLE>
1484 </HEAD>
1485 <BODY>
1486 <H1>XOAUTH2 Authenticator Explained</H1>
1488 The XOAUTH2 authenticator method is a way in which you can sign in to your
1489 account to read and send email. This method is different from the traditional
1490 username/password that users are accostumed to, and it needs to be set up
1491 by the user. This text will help you understand this authentication method.
1494 The most important difference between this method and other autentication
1495 methods is what happens if someone steals your credentials. This method is
1496 attached to three components: Your username, your password and your email
1497 program.
1500 At the beginning of this process, the developer of the email program 
1501 registers the email program with the email service provider (Gmail, 
1502 Outlook, etc.) In return, the email service provider creates an id and
1503 secret for the email program, which the email program will use in the 
1504 future. Since Alpine is an open source program, these values are part
1505 of the source code, and are known to everyone, and cannot be obfuscated.
1508 After a program has been registered with an email service provider, the 
1509 user must authorize the email program access to their email account in 
1510 that service. Alpine helps you do that, but it cannot do all the process 
1511 for you, and you will need to use an external web browser to authorize
1512 Alpine to read and send email.
1515 This part of the process is simple. Alpine creates a URL based on the id 
1516 and secret created by the email service, which the user opens. Once the 
1517 URL has been opened, the user signs in to the server, and once signed into
1518 the account, the user is asked to authorize Alpine access to the email 
1519 account. If the user agrees, an &quot;<I>Access Code</I>&quot; will be
1520 generated.
1523 An Access Code is a very long string, and so the recommendation is to copy 
1524 and paste this code back into Alpine, at the time Alpine is helping you 
1525 set up this authenticator. This part of the process is done only once per 
1526 email program (If you run Alpine in several computers, you would do this 
1527 once per computer. Each computer gets its own Access Code.)
1530 Once Alpine has an Access Code, it goes back internally to the email 
1531 service and asks it to generate two strings, called the &quot;<I>Refresh 
1532 Token</I>&quot; and the &quot;<I>Access Token</I>&quot;. This part is 
1533 invisible to the user, and they will never see it, but in order for you to 
1534 understand what to do in case you lose them, you need to understand their 
1535 use.
1538 The <I>Access Token</I> is the equivalent of a temporary password. It 
1539 allows the user to access (and reaccess as many times as they would like)
1540 their email account for a limited amount of time, typically 1 hour after
1541 it was issued. After that time expires, users need a new Access Token.
1544 The <I>Refresh Token</I> is the equivalent of a password generator. With 
1545 this token, Alpine can go to the email service provider and request a new 
1546 Access Token. This part of the process does not need user intervention, 
1547 anyone can do this, as long as they have the Refresh Token, program id and 
1548 program secret, so it is important that users keep their Refresh Token as 
1549 secure as they can.
1552 Given that the Refresh Token and the Access Token are long strings, users 
1553 are not supposed to be able to memorize them and recall them later. Alpine 
1554 will store them in the password file, should a user have one. Otherwise, 
1555 the user will have to create one each time they run Alpine, starting by 
1556 creating the Access Code all over each time they try to sign in to their 
1557 email account. When Alpine is compiled with SSL and password file support, 
1558 it will default to saving this information using encryption and under a 
1559 master password, so unless they have made changes to this process, their 
1560 Refresh and Access Tokens are saved securely and persist from one session 
1561 to the next.
1564 Should any person steal your Refresh Token, you must login to your account 
1565 with your username and password and revoke Alpine authorization to your 
1566 account. This is enough to stop the person who stole your Refresh Token 
1567 from accessing your email service. In the case of Gmail, changing your 
1568 password will invalidate your Refresh Token, and this will be enough to 
1569 prevent others from using a stolen Refresh Token. Consult with your email
1570 service provider to learn what you can do if someone steals your Refresh
1571 Token.
1574 If, for any reason, Alpine cannot sign in to your email service for two 
1575 consecutive times with Access Codes generated by your Refresh Token, it 
1576 will remove the Refresh Token from your password file, forcing you to get 
1577 a new one, by getting an Access Code first, and granting authorization to
1578 Alpine to access your email once again.
1581 This implementation of XOAUTH2 knows the list of servers that it can 
1582 access using the same credentials, so Alpine will be able to read and send 
1583 emails using the same Access Token. You will not have to create 
1584 Access and Refresh Tokens for the IMAP and SMTP servers separately.
1587 &lt;End of help&gt;
1588 </BODY>
1589 </HTML>
1590 ====== h_tls_failure_details ======
1591 <HTML>
1592 <HEAD>
1593 <TITLE>Certificate Validation Details</TITLE>
1594 </HEAD>
1595 <BODY>
1596 <H1>Certificate Validation Details</H1>
1598 This screen gives details as to why the certificate validation failed: the
1599 name of the desired server system; the reason for failure; and the name on
1600 the certificate.  This is primarily of interest to experts.
1603 &lt;End of help&gt;
1604 </BODY>
1605 </HTML>
1606 ====== h_tls_failure ======
1607 <HTML>
1608 <HEAD>
1609 <TITLE>TLS or SSL Failure</TITLE>
1610 </HEAD>
1611 <BODY>
1612 <H1>TLS or SSL Failure</H1>
1614 An attempt was made to establish a secure, encrypted connection to the
1615 server system using either Transport Layer Security (TLS) or the older
1616 Secure Sockets Layer (SSL).  This attempt failed.
1619 You should contact your server system management for more assistance.
1620 The problem is probably at the server system and not in Alpine or your local
1621 system.  The text in this screen may be helpful for the server system
1622 management in debugging the problem,
1625 &lt;End of help&gt;
1626 </BODY>
1627 </HTML>
1628 ====== h_tls_validation_failure ======
1629 <HTML>
1630 <HEAD>
1631 <TITLE>TLS and SSL Certificate Validation Failures</TITLE>
1632 </HEAD>
1633 <BODY>
1634 <H1>TLS and SSL Certificate Validation Failures</H1>
1636 An attempt was made to establish a secure, encrypted connection to the
1637 server system using either Transport Layer Security (TLS) or the older
1638 Secure Sockets Layer (SSL).
1641 An important part of this procedure is server certificate validation.  A
1642 server certificate is an &quot;electronic identification card&quot; for the server
1643 system that is signed by a well-known certificate authority (CA).  Alpine
1644 compares the server system identity in the server certificate with the
1645 name of the server system to which it is trying to connect.  Alpine also
1646 verifies that the CA signature is authentic.
1649 Some common failure conditions are:
1652 <UL>
1653   <LI> [UNIX Alpine] Self signed certificate.  This means that the server system
1654 signed its own certificate.  This does not necessarily indicate anything
1655 bad; the server operators may simply have elected to not purchase a
1656 signed certificate from a certificate authority.
1658   <LI> [UNIX Alpine] Unable to get local issuer certificate.  This means that
1659 the signature on the server system is from an unknown certificate authority.
1660 It can also mean that no certificate authority certificates have been
1661 installed on the local UNIX system.
1663   <LI> [PC Alpine] Self-signed certificate or untrusted authority.  This is
1664 the same as either of the above two conditions in UNIX Alpine.  Note that
1665 Windows systems typically have a full set of certificate authority
1666 certificates installed, so it is more likely to be a self-signed
1667 certificate than an unknown certificate authority.
1669   <LI> Server name does not match certificate.  This means that the server
1670 presented a proper signed certificate for a name other than the desired
1671 name.
1672 </UL>
1675 Any of these conditions can indicate that you are being attacked and have
1676 been directed to an imposter server that will record your password and
1677 your private mail messages.  It can also mean something innocuous.
1680 If you are certain that the problem is innocuous, you can append the
1681 option
1684 <CENTER><SAMP>/novalidate-cert</SAMP></CENTER>
1687 to the server system name where it appears in your configuration (e.g. the
1688 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>,
1689 a folder-collection, or a news or SMTP server).  This will
1690 disable certificate validation.  On the other hand, if you are attacked,
1691 you will get no warning if you do this.
1694 &lt;End of Cert Validation Failures help&gt;
1695 </BODY>
1696 </HTML>
1697 ====== h_oauth2_start ======
1698 <HTML>
1699 <HEAD>
1700 <TITLE>Setting up XOAUTH2 Authentication</TITLE>
1701 </HEAD>
1702 <BODY>
1703 <H1>Setting up XOAUTH2 Authentication</H1>
1705 You are trying to connect to a server that uses the XOAUTH2 method of
1706 authentication.
1709 In order to set this up, you need to authenticate in the target server
1710 and authorize Alpine to access your email account.
1713 After you have authorized Alpine, the server will generate an
1714 &quot;access code.&quot; In order to use this code, press 'C'
1715 and copy and paste this code back into Alpine.
1718 After you have input the code, Alpine will conclude logging you into your
1719 account.
1722 &lt;End of setting up XOAUTH2 Authentication help&gt;
1723 </BODY>
1724 </HTML>
1725 ====== h_release_tlscerts ======
1726 <HTML>
1727 <HEAD>
1728 <TITLE>TLS and SSL usage note</TITLE>
1729 </HEAD>
1730 <BODY>
1731 <H1>TLS and SSL usage note</H1>
1734 When using Alpine from Unix or Windows 2000,
1735 server certificates must be signed by a trusted certificate authority.
1736 You may relax this requirement (at the cost of some security) by using
1738 <A HREF="h_folder_server_syntax">NoValidate-Cert</A>
1739 modifier in the mailbox name.
1742 <CENTER><SAMP>{foo.example.com/novalidate-cert}INBOX</SAMP></CENTER>
1745 The fully-qualified host name of the server should be used
1746 so that it matches the host name in the server certificate.
1748 Here is an example of a host specification that directs Alpine to use
1749 the SSL port (993) and an encrypted data stream.
1751 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
1753 &lt;End of TLS usage help&gt;
1754 </BODY>
1755 </HTML>
1756 ====== h_news_config ======
1757 <HTML>
1758 <HEAD>
1759 <TITLE>Alpine Configuration</TITLE>
1760 </HEAD>
1761 <BODY>
1762 <H1>Alpine Configuration</H1>
1764 <H2>Using Environment Variables</H2>
1766 The values of Alpine configuration options may include environment variables
1767 that are replaced by the value of the variable at the time Alpine is run
1768 (and also at the time the config option is changed).
1769 The syntax to use environment variables is a subset of the common Unix
1770 shell dollar-syntax.
1771 For example, if
1773 <P><CENTER><SAMP>$VAR</SAMP></CENTER><P>
1775 appears in the value of an Alpine configuration option it is looked up in the
1776 environent (using getenv(&quot;VAR&quot;)) and its
1777 looked-up value replaces the <SAMP>$VAR</SAMP> part of the option value.
1778 To include a literal dollar sign you may precede the dollar sign with another
1779 dollar sign.
1780 In other words, if the text
1782 <P><CENTER><SAMP>$$text</SAMP></CENTER><P>
1784 is the value of a configuration option, it will be expanded to
1786 <P><CENTER><SAMP>$text</SAMP></CENTER><P>
1788 and no environment lookup will be done.
1789 For Unix Alpine it will also work to use a backslash character to
1790 escape the special meaning of the dollar sign, but $$ is preferable since
1791 it works for both PC-Alpine and Unix Alpine, allowing the configuration option
1792 to be in a shared configuration file.
1795 This all sounds more complicated than it actually is.
1796 An example may make it clearer.
1797 Unfortunately, the way in which environment variables are set is OS-dependent 
1798 and command shell-dependent.
1799 In some Unix command shells you may use
1801 <P><CENTER><SAMP>PERSNAME="Fred Flintstone"</SAMP></CENTER><P>
1802    <CENTER><SAMP>export PERSNAME</SAMP></CENTER><P>
1804 Now, if you use Alpine's Setup/Config screen to set
1806 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=$PERSNAME</SAMP></CENTER><P>
1808 the <SAMP>$PERSNAME</SAMP> would be replaced by <SAMP>Fred Flintstone</SAMP>
1809 so that this would be equivalent to
1811 <P><CENTER><SAMP><!--#echo var="VAR_personal-name"-->=Fred Flintstone</SAMP></CENTER><P>
1813 Note, environment variable substitution happens after configuration
1814 options that are lists are split into the separate elements of the list,
1815 so a single environment variable can't contain a list of values.
1818 The environment variable doesn't have to be the only thing
1819 after the equal sign.
1820 However, if the name of the variable is not at the end of the line or
1821 followed by a space (so that you can tell where the variable name ends),
1822 it must be enclosed in curly braces like
1824 <P><CENTER><SAMP>${VAR}</SAMP></CENTER><P>
1826 It is always ok to use the braces even if you don't need to.
1828 It is also possible to set a default value for an environment variable.
1829 This default value will be used if the environment variable is not
1830 set (that is, if getenv(&quot;VAR&quot;) returns NULL).
1831 The syntax used to set a default value is
1833 <P><CENTER><SAMP>${VAR:-default value}</SAMP></CENTER><P>
1835 If the config file contains
1837 <P><CENTER><SAMP>personal-name=${VAR:-Fred Flintstone}</SAMP></CENTER><P>
1839 then when Alpine is run <SAMP>VAR</SAMP> will be looked up in the environment.
1840 If <SAMP>VAR</SAMP> is found then <SAMP>personal-name</SAMP> will have
1841 the value that <SAMP>VAR</SAMP> was set to, otherwise,
1842 <SAMP>personal-name</SAMP> will be set to <SAMP>Fred Flintstone</SAMP>,
1843 the default value.
1844 (Note that the variable is called &quot;personal-name&quot; in the config
1845 file but is displayed in the config screen as
1846 &quot;<!--#echo var="VAR_personal-name"-->&quot;.
1847 In general, the value that goes into a config file is never exactly the
1848 same as the value you see on the screen.)
1851 An example where an environment variable might be useful is the
1852 variable <SAMP>Inbox-Path</SAMP> in the global configuration file.
1853 Suppose most users used the server
1855 <P><CENTER><SAMP>imapserver.example.com</SAMP></CENTER><P>
1857 but that there were some exceptions who used
1859 <P><CENTER><SAMP>altimapserver.example.com</SAMP></CENTER><P>
1861 In this case, the system manager might include the following line in
1862 the systemwide default Alpine configuration file
1864 <P><CENTER><SAMP>Inbox-Path=${IMAPSERVER:-imapserver.example.com}</SAMP></CENTER><P>
1866 For the exceptional users adding
1868 <P><CENTER><SAMP>IMAPSERVER=altimapserver.example.com</SAMP></CENTER><P>
1870 to their environment should work.
1872 Another example might be the case where a user has to use a different
1873 SMTP server from work and from home.
1874 The setup might be something as simple as
1876 <P><CENTER><SAMP>smtp-server=$SMTP</SAMP></CENTER><P>
1878 or perhaps a default value could be given.
1879 Note that, as mentioned above, the variable <SAMP>SMTP</SAMP> cannot contain
1880 a list of SMTP servers.
1883 <H2>Configuration precedence</H2>
1885 There are several levels of Alpine configuration.  Configuration values at
1886 a given level override corresponding values at lower levels.  In order of
1887 increasing precedence:
1889 <UL>
1890  <LI> built-in defaults
1891  <LI> system-wide
1892 <!--chtml if pinemode="os_windows"-->
1893       config file from command line or provided
1894       by "PINECONF" environment variable
1895 <!--chtml else-->
1896       pine.conf file
1897 <!--chtml endif-->
1898  <LI> personal configuration file
1899  <LI> personal exceptions configuration file
1900  <LI> command-line options
1901  <!--chtml if pinemode="os_windows"--><!--chtml else-->
1902  <LI> system-wide pine.conf.fixed file<!--chtml endif-->
1903 </UL>
1905 The values in both the personal configuration file and the
1906 <A HREF="h_config_exceptions">exceptions</A>
1907 configuration file may be set using the Setup command.
1908 Setup/Config is the command to change most of the personal configuration
1909 options.
1910 The other Setup subcommands are also used to change the configuration,
1911 for example, Setup/AddressBook, Setup/Rules, and so on.
1912 Changing the personal exceptions configuration is very similar.
1913 To change a value in the Config screen you would use the command
1914 Setup/eXceptions/Config.
1915 Likewise for the other Setup subcommands (Setup/eXceptions/Rules and so on).
1917 There are a couple exceptions to the rule that configuration values are replaced
1918 by the value of the same option in a higher-precedence file.
1919 The Feature-List variable has values that are additive, but can be
1920 negated by prepending &quot;no-&quot; in front of an individual feature name.
1921 So for features, each individual feature's value is replaced by the value
1922 of the same feature in a higher-precedence file.
1923 Note that this is done automatically for you when you change these values via
1924 the Setup/Config command.
1925 The other exception to the <EM>replace</EM> semantics happens when you
1926 use <A HREF="h_config_inheritance">configuration inheritance</A>
1927 for option lists.
1930 <H2>File name defaults</H2>
1932 Notes:<P>
1934 <BR> &lt;exe dir&gt; = directory where pine.exe found.
1935 <BR> &lt;pinerc dir&gt; = directory where pinerc found.
1936 <BR> # = default file name is overridable in pinerc.
1937 <BR> $HOME, if not explicitly set, defaults to root of the current drive.
1938 <BR> $MAILCAPS, if set, is used in lieu of the default mailcap search paths.
1939 <BR> + between the mailcap paths implies that the two files are combined.
1940 <BR> ; between other default paths implies that the first one found is used.
1941 </P>
1942 Alpine looks for most support files in the same directory it finds its
1943 personal configuration file (pinerc).  The -p command-line flag may be
1944 used to specify a particular path name for the pinerc file.  If a
1945 pinerc file does not exist, it will be created (if directory permissions
1946 allow).  In PC-Alpine, if -p or $PINERC are not defined, Alpine will look
1947 in $HOME&#92;PINE and the directory containing the PINE.EXE.  If a PINERC
1948 file does not exist in either one, it will create one in the first of those
1949 two directories that is writable.  In detail:
1950 <PRE>
1952 PC-Alpine:
1954  executable     &lt;DOS search path&gt;&#92;pine.exe
1955  help index     &lt;exe dir&gt;&#92;pine.ndx
1956  help text      &lt;exe dir&gt;&#92;pine.hlp
1958  pers config    $PINERC  ;  $HOME&#92;pine&#92;PINERC  ;  &lt;exe dir&gt;&#92;PINERC
1959  except config  $PINERCEX ; $HOME&#92;pine&#92;PINERCEX  ;  &lt;exe dir&gt;&#92;PINERCEX
1960  global cfg     $PINECONF
1962  debug          &lt;pinerc dir&gt;&#92;pinedebg.txtN
1963  crash          &lt;pinerc dir&gt;&#92;pinecrsh.txt
1964  signature#     &lt;pinerc dir&gt;&#92;pine.sig
1965  addressbook#   &lt;pinerc dir&gt;&#92;addrbook
1966  mailcap#       &lt;pinerc dir&gt;&#92;mailcap  +  &lt;exe dir&gt;&#92;mailcap
1967  mimetypes#     &lt;pinerc dir&gt;&#92;mimetype +  &lt;exe dir&gt;&#92;mimetype
1968  newsrc#        $HOME&#92;newsrc (if exists, else) &lt;pinerc dir&gt;&#92;newsrc
1969  sentmail#      $HOME&#92;mail&#92;sentmail.mtx
1970  postponed#     $HOME&#92;mail&#92;postpond.mtx
1971  interrupted    $HOME&#92;mail&#92;intruptd
1973 Unix Alpine:
1975  executable     &lt;Unix search path&gt;/pine
1976  persnl cfg     ~/.pinerc
1977  except cfg     ~/.pinercex
1978  global cfg     <!--#echo var="PINE_CONF_PATH"-->
1979  fixed cfg      <!--#echo var="PINE_CONF_FIXED_PATH"-->
1980  local help     <!--#echo var="PINE_INFO_PATH"-->
1982  interrupted    ~/.pine-interrupted-mail
1983  debug          ~/.pine-debugN
1984  crash          ~/.pine-crash
1985  newsrc#        ~/.newsrc
1986  signature#     &lt;pinerc dir&gt;/.signature
1987  addressbook#   &lt;pinerc dir&gt;/.addressbook
1988  postponed#     ~/mail/postponed-msgs
1989  sentmail#      ~/mail/sent-mail
1990  mailcap#       ~/.mailcap + /etc/mailcap
1991                            + /usr/etc/mailcap + /usr/local/etc/mailcap
1992  mimetypes#     ~/.mime.types + /etc/mime.types + /usr/local/lib/mime.types
1994  news-spool     varies across Unix flavors, e.g. /var/spool/news or /usr/spool/news
1995  active-news    varies across Unix flavors, e.g. /usr/lib/news/active
1996  lock files     /tmp/.<!--#echo var="MAIL_SPOOL_LOCK_PATH"-->
1997  inbox          <!--#echo var="MAIL_SPOOL_PATH"-->
1998  password       /etc/passwd
2000 Unix Alpine and PC-Alpine:
2002  .ab*           remote addressbook support files
2003  a[1-9]*        temporary (while Alpine is running) addressbook files
2005 </PRE>
2008 <H2>Mailcap files</H2>
2010 Alpine honors the mailcap configuration system for specifying external
2011 programs for handling attachments.  The mailcap file maps MIME attachment
2012 types to the external programs loaded on your system that can display
2013 and/or print the file.  A sample mailcap file comes bundled with the Alpine
2014 distribution.  It includes comments that explain the syntax you need to
2015 use for mailcap.  With the mailcap file, any program (mail readers,
2016 newsreaders, WWW clients) can use the same configuration for handling
2017 MIME-encoded data.
2020 <H2>MIME-Types files</H2>
2022 Alpine uses mime-types files (.mime.types or MIMETYPE) to determine
2023 what Content-Type to use for labeling an attached file, based on
2024 the file extension.  That is, this file provides a mapping between
2025 filename extensions and MIME content-types.
2028 <H2>Environment variables</H2>
2030 PC-Alpine uses the following environment variables:
2031 <DL>
2032 <DT>PINERC</DT>
2033 <DD>Optional path to pinerc file.</DD>
2034 <DT>PINERCEX</DT>
2035 <DD>Optional path to personal exceptions configuration file.</DD>
2036 <DT>PINECONF</DT>
2037 <DD>Optional path to global pine config file.</DD>
2038 <DT>HOME</DT>
2039 <DT>TMPDIR, TMP, or TEMP</DT>
2040 <DT>COMSPEC</DT>
2041 <DT>MAILCAPS</DT>
2042 <DD>A <B>semicolon</B> delimited list of path names to mailcap files.</DD>
2043 <DT>USER_DICTIONARY</DT>
2044 <DD>Used to specify the file to contain the user's spell check
2045 dictionary.  The default is <SAMP>DICT.U</SAMP> in the same
2046 directory as the <SAMP>SPELL32.DLL</SAMP></DD>
2047 </DL>
2049 Unix Alpine uses the following environment variables:
2050 <DL>
2051 <DT>TERM</DT>
2052 <DD>Tells Alpine what kind of terminal is being used.</DD>
2053 <DT>DISPLAY</DT>
2054 <DD>Determines if Alpine will try to display IMAGE attachments.</DD>
2055 <DT>SHELL</DT>
2056 <DD>If not set, default is &quot;/bin/sh&quot;.</DD>
2057 <DT>TMPDIR, TMP, or TEMP</DT>
2058 <DT>MAILCAPS</DT>
2059 <DD>A <B>colon</B> delimited list of path names to mailcap files.</DD>
2060 </DL>
2061 <!--chtml if pinemode="os_windows"-->
2063 <H2>Common PC-Alpine Configuration Problems</H2>
2065 <H3>Configuration settings aren't being saved</H3>
2067 <P>This problem can happen if you run pine from one directory and
2068 then decide to move your pine directory to another location.  PC-Alpine
2069 stores certain variables, including the configuration location, in the
2070 Windows Registry (which you shouldn't ever need to manually edit).  There
2071 are a couple of ways to go about removing or resetting the values in the
2072 registry.
2075 1) Run PC-Alpine's registry value deletion command.  This can be done by
2076 running: &quot;&lt;your&nbsp;pine&nbsp;directory&gt;&#92;pine.exe&nbsp;-registry&nbsp;clear&quot; from the DOS
2077 prompt. You could create a shortcut to pine.exe and change the &quot;Target&quot;
2078 value to the above command.
2081 2) Tell PC-Alpine where to look for the configuration file.  Configuration
2082 information is stored in a file called the PINERC.  With the &quot;-p&nbsp;PINERC&quot;
2083 option, you can tell PC-Alpine the location of your pinerc.  An example of
2084 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;.
2085 Again, you can use the DOS prompt or the shortcut method explained in (1).
2088 Additionally, there is the &quot;-registry&nbsp;set&quot; option, which will actively
2089 set registry values to the current setting, and is therefore useful with
2090 the &quot;-p&nbsp;PINERC&quot; option.
2092 <!--chtml endif-->
2094 &lt;End of Configuration Notes&gt;
2095 </BODY>
2096 </HTML>
2097 ====== h_news_legal ======
2098 <html>
2099 <head>
2100 <TITLE>Alpine Legal Notices</TITLE>
2101 </head>
2102 <body>
2104 <H1>Alpine Legal Notices</H1>
2106 Alpine and its constituent programs are covered by the Apache License Version 2.0.
2110 &lt;End of Alpine Legal Notices&gt;
2111 </BODY>
2112 </HTML>
2113 ===== h_info_on_mbox =====
2114 <HTML>
2115 <HEAD>
2116 <TITLE>Information on mbox driver</TITLE>
2117 </HEAD>
2118 <BODY>
2119 <H1>Information on &quot;Missing Mail&quot; and the &quot;mbox&quot; driver</H1>
2121 Beginning with Pine 4.00 (Pine came before Alpine)
2122 a new INBOX access method is
2123 available as part of the standard configuration.  It is called the
2124 &quot;mbox&quot; driver and it works like this:<P>
2127 <BLOCKQUOTE>
2128 If the file &quot;mbox&quot; exists in the user's home directory, and
2129 is in Unix mailbox format, then when INBOX is opened this file will be
2130 selected as INBOX instead of the mail spool file.  Messages will be
2131 automatically transferred from the mail spool file into the mbox
2132 file.
2133 </BLOCKQUOTE>
2136 The advantage of this method is that, after new mail has been copied
2137 from the system mail spool, all subsequent access is confined to the
2138 user's home directory, which is desirable on some systems.  However, a
2139 possible disadvantage is that mail tools other than those from the
2140 University of Washington will not know to look for mail in the user's
2141 mbox file.  For example, POP or IMAP servers other than those from the
2142 University of Washington, and many &quot;new mail notification&quot;
2143 programs may not work as expected with this driver enabled.<P>
2145 To disable this behavior, either remove/rename the &quot;mbox&quot;
2146 file or find the <A HREF="h_config_disable_drivers"><!--#echo var="VAR_disable-these-drivers"--></A>
2147 option in Setup/Config
2148 and add &quot;mbox&quot; to it:
2150 <CENTER><SAMP><!--#echo var="VAR_disable-these-drivers"-->=mbox</SAMP></CENTER>
2152 &lt;End of help on this topic&gt;
2153 </BODY>
2154 </HTML>
2155 ===== h_info_on_locking =====
2156 <HTML>
2157 <HEAD>
2158 <TITLE>FAQs on Alpine Locking</TITLE>
2159 </HEAD>
2160 <BODY>
2161 <H1>What Systems Managers Need to Know about Alpine File Locking</H1>
2163 There is an extensive section on locking in the Alpine technical notes;
2164 this information is intended to provide answers to some common questions:<P>
2165 <OL>
2166 <LI> Why did locking change in Pine 4.00?<BR>
2167 The actual locking mechanisms did not change in 4.00.
2168 What changed is that when one particular locking mechanism used by Alpine 
2169 fails, Alpine now issues a warning message.  Prior to Pine 4.00, the locking
2170 failure would occur, but no warning was issued.<P>
2172 <LI> Is this what the &quot;Mailbox vulnerable&quot; message is about?<BR>
2173 Yes.  It means that Alpine was unable to create a lockfile in the
2174 spool directory, generally because of overly restrictive protections on the
2175 spool directory.  The correct permissions on the spool directory for
2176 running Alpine are 1777, i.e. read-write-execute permission for everyone,
2177 with the sticky-bit set, so only owners of a file can delete them.<P>
2179 <LI> Why does Alpine require that the mail spool directory have 1777
2180    protections?<BR>
2181 Alpine was designed to run without special privileges.  This means that in
2182 order to create a lockfile in the spool directory, it is necessary to have
2183 the spool directory permissions be world-writable.<P>
2185 <LI> Can't you create the lockfile somewhere else?<BR>
2186 No.  The lockfile in question must be in the mail spool directory, because
2187 that's where the mail delivery program expects to find it, and the purpose
2188 of the file is to coordinate access between the mail client (Alpine) and the
2189 mail delivery program.<P>
2191 <LI> Isn't having the spool directory world-writable a big security risk?<BR>
2192 No.  Remember that the individual mail files in the spool directory are
2193 NOT world-writable, only the containing directory.  Setting the &quot;sticky
2194 bit&quot; -- indicated by the &quot;1&quot; before the &quot;777&quot; mode 
2195 -- means that only the owner of the file (or root) can delete files in the 
2196 directory.  So the only bad behavior that is invited by the 1777 mode is that 
2197 anyone could
2198 create a random file in the spool directory.  If the spool directory is
2199 under quota control along with home directories, there is little incentive
2200 for anyone to do this, and even without quotas a periodic scan for
2201 non-mail files usually takes care of the problem.  <P>
2203 <LI> Why not run Alpine as setgid mail?<BR>
2204 Alpine was never designed to run with privileges, and to do so introduces a
2205 significant security vulnerability.  For example, if a user suspends Alpine,
2206 the resulting shell will have group privileges.  This is one example of
2207 why we strongly recommend against running Alpine as a privileged program.
2208 In addition, a &quot;privileged mailer &quot paradigm would mean that normal 
2209 users
2210 could not test Alpine versions or other mailers that had not been installed
2211 by the system administrators.<P>
2214 <LI> Are there any alternatives to creating .lock files in the spool dir?<BR>
2215 There are, but they all have different sets of tradeoffs, and not all will
2216 work on all systems.  Some examples:<UL>
2217  <LI> Use lock system calls.  Works fine on a few systems, provided mail
2218    spool is local.   Doesn't work reliably if NFS is used.
2219    Doesn't work unless <B>all</B> the mail programs accessing the spool dir
2220    use the same calls.
2221  <LI> Deliver mail to user's home directory.  An excellent solution, highly
2222    recommended -- but one which is incompatible with some &quot;legacy&quot; 
2223 mail tools that always look in the spool directory for the mail.
2224 </UL><P>
2226 <LI> Are these spool directory lock files the only kinds of locks used by
2227    Alpine?<BR>
2228 No.  Alpine also creates lockfiles in the /tmp directory.  For normal Unix
2229 mailbox format folders, these are used to coordinate access between
2230 multiple Alpine sessions.  <P>
2232 <LI> What about the 
2233 <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>
2234 This is for people who are content to live dangerously, or who have
2235 specific knowledge that the spool directory lockfiles are superfluous on
2236 their system (because both Alpine and the mail delivery program are using 
2237 system call file locking in a context that works reliably, e.g. not NFS.)<P>
2239 <LI> Where can I find more details on how Alpine locking works?<BR>
2240 See the Alpine Technical Notes.<P>
2242 </OL>
2244 &lt;End of help on this topic&gt;
2245 </BODY>
2246 </HTML>
2247 ===== h_finding_help ====
2248 <HTML>
2249 <HEAD>
2250 <TITLE>Finding more information and requesting help</TITLE>
2251 </HEAD>
2252 <BODY>
2253 <H1>Places to Look for More Answers</H1>
2254 If you have questions about or problems with Alpine that you cannot resolve 
2255 after consulting the program's internal, context-sensitive help screens, here 
2256 are additional information resources that you may find helpful:
2258 <UL>
2259   <LI> Alpine's top-level <A HREF="main_menu_tx">MAIN MENU HELP</A>.<P>
2261   <LI> Alpine's <A HREF="h_help_index">Help Index</A>.<P>
2263   <LI> Alpine's internal <A HREF="h_news">Release Notes</A>.  They contain a 
2264 listing of changes in Alpine <!--#echo var="ALPINE_VERSION"-->
2265   since the last version, which may be useful for you to be aware of, 
2266 <B>especially</B> if a &quot;problem&quot; you are encountering is actually 
2267 a change in the way an aspect of Alpine works.  There, you will also find notes 
2268 on Alpine configuration.<P>
2269 <!--
2270   <LI> The main site for Alpine contains information on configuring and solving problems
2271        with Alpine, it can be found at
2273 <CENTER><A HREF="http://alpine.x10host.com/alpine/">http://alpine.x10host.com/alpine/</A></CENTER>  
2275   <LI> The Alpine Information Center (maintained by the University of
2276            Washington) World Wide Web site contains, among other things
2277            <UL>
2278            <LI>a collection of Frequently Asked Questions (and answers!) about Alpine
2279            <LI>an overview of the basics for beginning Alpine users
2280            <LI>Technical Notes for systems administrators
2281            <LI>archives (including a searchable index) of the alpine-info 
2282 mailing list, on which matters of interest to systems/email administrators,
2283 developers, trainers, user support personnel, and others involved with Alpine 
2284 messaging on a &quot;technical&quot; level are discussed.
2285 </UL>
2286         The Alpine Information Center can be accessed with a WWW browser at:<P>
2287             <CENTER><A HREF="http://www.washington.edu/alpine/">http://www.washington.edu/alpine/</A></CENTER>  
2288 </UL>
2289 <P><HR WIDTH="75%">
2290 <H1>Requesting help</H1>
2291 If the internal help, the Release Notes, the Alpine Information Center, and your 
2292 local online and print resources do not help you resolve a problem, please
2293 start by contacting your local computer support staff and asking for help.
2295 This is especially true if:
2296 <ul>
2297   <li>You suddenly have trouble sending or receiving mail.
2298   <li>You receive a "disk quota exceeded" message.
2299   <li>You have forgotten your password.
2300   <li>You think your account may have been compromised.
2301   <li>You need help viewing an attachment.
2302   <li>You need to know how to configure your:
2303       <A HREF="h_config_nntp_server">NNTP (news) server</A>, 
2304       <A HREF="h_config_smtp_server">SMTP (sending mail) server</A>, 
2305       <A HREF="h_config_ldap_server">LDAP (directory lookup) server</A>, or
2306       <A HREF="h_config_inbox_path">INBOX (incoming mail) path</A>.
2307   <li>You want to know what alternative editors or spellcheckers you may be able to use.
2308   <li>You want to block email from a particular person.
2309   <li>You're going on vacation and need to autorespond to incoming mail.
2310   <li>You want to automatically file or filter incoming messages.
2311 </ul>
2313 In all of these cases,
2314 you should contact <B>your</B> support staff, because <B>only they</B> 
2315 will be able to assist you effectively. Your support staff may be, depending on who 
2316 provides you with the email account you use Alpine with, for example:<UL>
2317 <LI> the computing help desk of (a department of) your university, school, 
2318 employer, ... ; or
2319 <LI> the customer service center of your Internet Service Provider; or
2320 <LI> the friendly volunteer helpers of your Freenet; or
2321 <LI> the person who setup your computer and internet connection.
2322 </UL>
2324 Due to the large number of Alpine installations worldwide, and because we
2325 receive no funding for it, the University of Washington <B>cannot provide 
2326 individual support services outside the University of Washington</B>.
2328 If you have no local computing support to turn to, the worldwide <b>comp.mail.pine</b>
2329 newsgroup can be a valuable source of information and assistance for Alpine 
2330 user issues.
2332 For systems/email administrators, developers, trainers, user support
2333 personnel, and others involved with Alpine messaging on a &quot;technical&quot;
2334 level, the mailing list alpine-info is available; for information on
2335 subscribing and posting to it, see
2337 <CENTER><A HREF="http://www.washington.edu/alpine/alpine-info/subscribing.html">http://www.washington.edu/alpine/alpine-info/subscribing.html</A></CENTER>
2340 Regardless of whom you are asking for help with Alpine, remember 
2341 to provide as much detail as you can about the
2342 nature of any problem you are encountering, such as
2343 <UL>
2344 <LI>when it first occurred;
2345 <LI>what, if anything, happened that might have brought it about;
2346 <LI>whether it still persists;
2347 <LI>whether it is reproducible, and if so, how;
2348 <LI>what, if anything, you already tried to solve it.
2349 </UL> 
2350 It may also be helpful if you specify what version of Alpine you are using 
2351 <!--chtml if pinemode="running"-->
2352 -- this is <!--#echo var="ALPINE_VERSION"--> --
2353 <!--chtml endif-->
2354 and on what system, and when the copy of Alpine you are using was created
2355 <!--chtml if pinemode="running"-->
2356 -- for this copy: <!--#echo var=ALPINE_COMPILE_DATE-->
2357 <!--chtml endif-->
2359 <!--chtml if pinemode="running"-->
2360 <P>   
2361 When the Alpine program you are currently using was installed, a support
2362 contact email address may have been set up; in that case, you can simply select
2363 this link now to send a message to it:<BR>
2364 <A HREF="X-Alpine-Gripe:_LOCAL_ADDRESS_?local"><!--#echo var="_LOCAL_FULLNAME_"--></A><P>
2365 <!--chtml endif-->
2366 <!--chtml if [ -r PINE_INFO_PATH ]-->
2367 <HR WIDTH="75%">Local Support Contacts:<P>
2368 <!--#include file="PINE_INFO_PATH"-->
2369 <HR WIDTH="75%">
2370 <!--chtml endif-->
2371 <P> 
2372 &lt;End of help on this topic&gt;
2373 </BODY>
2374 </HTML>
2375 ===== new_user_greeting ======
2376 <HTML>
2377 <HEAD>
2378 <TITLE>NEW USER GREETING</TITLE>
2379 </HEAD>
2380 <BODY>
2381 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2382 <BR>
2383 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2384 We hope you will explore Alpine's many capabilities. From the MAIN MENU,
2385 select Setup/Config to see many of the options available to you. Also note
2386 that all screens have context-sensitive help text available.<P>
2387 <!--chtml if pinemode="phone_home"-->
2388 SPECIAL REQUEST:
2389 This software was originally created and maintained as a public
2390 service by the University of Washington until 2009; updates are made 
2391 available as a public service of the Alpine community. It is always 
2392 helpful to have an idea of how many users are using Alpine. Are you 
2393 willing to be counted as an Alpine user? Pressing 
2394 <A HREF="X-Alpine-Phone-Home:">Return</A>
2395 will send an anonymous (meaning, your real email address will not be revealed) 
2396 message to the Alpine developers for purposes of tallying.
2398 <!--To Exit this screen and continue your Alpine session press "E".-->
2399 <!--chtml else-->
2400 To Exit this screen and continue your Alpine session press "Return".
2401 <!--chtml endif-->
2402 </BODY>
2403 </HTML>
2404 ===== new_alpine_user_greeting ======
2405 <HTML>
2406 <HEAD>
2407 <TITLE>NEW ALPINE USER GREETING</TITLE>
2408 </HEAD>
2409 <BODY>
2410 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2411 <BR>
2412 <H1>Welcome to Alpine ... a Program for Internet News and Email</H1>
2413 Your Alpine configuration file indicates that you may have used Pine before
2414 but not Alpine.
2415 If you are familiar with the way Pine works, you should be comfortable
2416 using Alpine.
2417 Your Pine configuration file is automatically used for Alpine.
2418 The Release Notes may be viewed by pressing 
2419 &quot;R&quot; now or while in the MAIN MENU.
2421 <!--chtml if pinemode="phone_home"-->
2422 SPECIAL REQUEST:
2423 This software was originally created and maintained as a public
2424 service by the University of Washington until 2009; updates are made 
2425 available as a public service of the Alpine community. It is always 
2426 helpful to have an idea of how many users are using Alpine. Are you 
2427 willing to be counted as an Alpine user? Pressing 
2428 <A HREF="X-Alpine-Phone-Home:">Return</A>
2429 will send an anonymous (meaning, your real email address will not be revealed) 
2430 message to the Alpine developers for purposes of tallying.
2432 <!--To Exit this screen and continue your Alpine session press "E".-->
2433 <!--chtml else-->
2434 To Exit this screen and continue your Alpine session press "Return".
2435 <!--chtml endif-->
2436 </BODY>
2437 </HTML>
2438 ===== new_version_greeting ======
2439 <HTML>
2440 <HEAD>
2441 <TITLE>NEW VERSION GREETING</TITLE>
2442 </HEAD>
2443 <BODY>
2444 <CENTER>&lt;&lt;&lt;This message will appear only once&gt;&gt;&gt;</CENTER>
2445 <BR>
2446 <H1>Welcome to Alpine version <!--#echo var="ALPINE_VERSION"-->!</H1>
2447 Your Alpine configuration file indicates that you may not have used 
2448 this version of Alpine before.  This version's significant changes are
2449 documented in the Release Notes, which may be viewed by pressing 
2450 &quot;R&quot; now or while in the MAIN MENU.
2452 <!--chtml if pinemode="phone_home"-->
2453 SPECIAL REQUEST:
2454 This software was originally created and maintained as a public
2455 service by the University of Washington until 2009; updates are made 
2456 available as a public service of the Alpine community. It is always 
2457 helpful to have an idea of how many users are using Alpine. Are you 
2458 willing to be counted as an Alpine user? Pressing 
2459 <A HREF="X-Alpine-Phone-Home:">Return</A>
2460 will send an anonymous (meaning, your real email address will not be revealed) 
2461 message to the Alpine developers for purposes of tallying.
2463 <!--To Exit this screen and continue your Alpine session press "E".-->
2464 <!--chtml else-->
2465 To Exit this screen and continue your Alpine session press "Return".
2466 <!--chtml endif-->
2467 </BODY>
2468 </HTML>
2470 ===== main_menu_tx ======
2471 <HTML>
2472 <HEAD>
2473 <TITLE>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</TITLE>
2474 </HEAD>
2475 <BODY>
2476 <H1>GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</H1>
2477 <DIV ALIGN=CENTER>
2478 Version <!--#echo var="ALPINE_VERSION"-->
2479 <!--chtml if pinemode="running"-->
2480 <BR>(built <!--#echo var=ALPINE_COMPILE_DATE-->)
2481 <!--chtml endif-->
2482 </DIV>
2483 <CENTER>Copyright 2013-2018 Eduardo Chappa,
2484 <BR>Copyright 2006-2008 University of Washington.
2485 </CENTER>
2488 When you are viewing a help screen, there may be links to
2489 other topics highlighted (in Reverse video) in the text.
2490 Here is an example.
2491 The word &quot;Introduction&quot; in the TABLE OF CONTENTS below should be
2492 highlighted.
2493 If you type carriage return (or V for View Link, see the commands at the
2494 bottom of the screen) you will be taken to a new help screen to view the
2495 Introduction.
2496 The commands at the bottom of the screen should then include
2497 &quot;P Prev Help&quot;.
2498 If you type &quot;P&quot; you will end up back here.
2499 If you type &quot;E&quot; for Exit, you will be back out of help and returned
2500 to the place you were in Alpine when you entered Help.
2501 In this case, you would go back to the MAIN MENU.
2502 There are also other links that are highlighted in bold (or the color used
2503 by your terminal to display bold).
2504 The items after the Introduction in the TABLE OF CONTENTS are all examples
2505 of such links.
2506 In order to view those links, you first have to make the link you want
2507 to view the current link.
2508 The &quot;NextLink&quot; and &quot;PrevLink&quot; commands
2509 (see bottom of screen) can do that for you.
2512 <H2>TABLE OF CONTENTS</H2>
2513 <OL>
2514   <LI> <A HREF="h_mainhelp_intro">Introduction</A>
2515   <LI> <A HREF="h_mainhelp_pinehelp">Alpine Help</A>
2516 <!--chtml if [ -r PINE_INFO_PATH ]-->
2517   <LI> <A HREF="h_mainhelp_localsupport">Local Support Contacts</A>
2518 <!--chtml endif-->
2519   <LI> <A HREF="h_mainhelp_cmds">Giving Commands in Alpine</A>
2520   <LI> <A HREF="h_mainhelp_config">Alpine Configuration</A>
2521   <LI> <A HREF="h_mainhelp_status">Titlebar Line</A>
2522   <LI> <A HREF="h_mainhelp_mainmenu">Main Menu</A>
2523   <LI> <A HREF="h_mainhelp_index">Index of Messages</A>
2524   <LI> <A HREF="h_mainhelp_reading">Reading Messages</A>
2525   <LI> <A HREF="h_mainhelp_composing">Composing Messages</A>
2526   <LI> <A HREF="h_mainhelp_readingnews">Reading News</A>
2527   <LI> <A HREF="h_mainhelp_abooks">Address Books</A>
2528   <LI> <A HREF="h_mainhelp_ldap">LDAP Directories</A>
2529   <LI> <A HREF="h_mainhelp_folders">Folders</A>
2530   <LI> <A HREF="h_mainhelp_collections">Collection Lists</A>
2531   <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
2532   <LI> <A HREF="h_mainhelp_color">Color Setup</A>
2533   <LI> <A HREF="h_mainhelp_filtering">Filtering</A>
2534   <LI> <A HREF="h_mainhelp_roles">Roles</A>
2535   <LI> <A HREF="h_mainhelp_patterns">Patterns</A>
2536   <LI> <A HREF="h_mainhelp_keywords">Keywords (or Flags, or Labels)</A>
2537   <LI> <A HREF="h_mainhelp_mouse">Using a Mouse</A>
2538   <LI> <A HREF="h_mainhelp_cmdlineopts">Command Line Options</A>
2539   <LI> <A HREF="h_mainhelp_securing">Securing Your Alpine Session</A>
2540   <LI> <A HREF="h_mainhelp_smime">S/MIME</A>
2541   <LI> <A HREF="h_mainhelp_problems">Reporting Problems</A>
2542   <LI> <A HREF="X-Alpine-Config:">Show Supported Options in this Alpine</A>
2543   <LI> <A HREF="h_help_index">Index to Alpine's Online Help</A>
2544 </OL>
2547 &lt;End of help on this topic&gt;
2548 </BODY>
2549 </HTML>
2550 ===== h_mainhelp_intro ======
2551 <HTML>
2552 <HEAD>
2553 <TITLE>Introduction</TITLE>
2554 </HEAD>
2555 <BODY>
2556 <H1>Introduction</H1>
2558 Alpine is an &quot;Alternatively Licensed Program for Internet
2559 News and Email&quot; produced until 2009 by the University of Washington.
2560 It is intended to be an easy-to-use program for
2561 sending, receiving, and filing Internet electronic mail messages and
2562 bulletin board (Netnews/Usenet) messages. Alpine supports the following
2563 Internet protocols and specifications: SMTP (Simple Mail Transport Protocol), 
2564 NNTP (Network News Transport Protocol), MIME (Multipurpose Internet Mail 
2565 Extensions), IMAP (Internet Message Access Protocol), and LDAP (Lightweight
2566 Directory Access Protocol).<p>
2568 Although originally designed for inexperienced email users, Alpine has
2569 evolved to support many advanced features.  There are an ever-growing
2570 number of configuration and personal-preference options, though which of
2571 them are available to you is determined by your local system managers. 
2573 <H2>WHAT ALPINE DOES...</H2>
2575 Alpine is a &quot;mail user agent&quot; (MUA), which is a program that
2576 allows you to
2577 compose and read messages using Internet mail standards.  (Whether you
2578 can correspond with others on the Internet depends on whether or not your
2579 computer is connected to the Internet.)  Alpine also allows reading and
2580 posting messages on the Internet &quot;net news&quot; system, provided
2581 that your site operates a suitable news server.
2583 <H2>WHAT ALPINE DOES NOT DO...</H2>
2585 A &quot;mail user agent&quot; such as Alpine is just one part of a
2586 messaging system. Here are some things that are <B>not</B> done by Alpine,
2587 but require other programs:<P>
2588 <UL>
2589  <LI> Actual relaying of email... which is done by &quot;message transfer 
2590 agents&quot;.
2591  <LI> Vacation messages... automatically responding to incoming messages
2592  <LI> Anything to do with &quot;talk&quot;... which has nothing to do with 
2593 email.
2594  <LI> Anything to do with &quot;irc&quot;... which has nothing to do with email.
2595  <LI> List processing... resending one message to a list of recipients.
2596 </UL>
2599 &lt;End of help on this topic&gt;
2600 </BODY>
2601 </HTML>
2603 ===== h_mainhelp_pinehelp ======
2604 <HTML>
2605 <HEAD>
2606 <TITLE>Alpine Help</TITLE>
2607 </HEAD>
2608 <BODY>
2609 <H1>Alpine Help</H1>
2611 Alpine help is generally context-sensitive. In other words, each Alpine screen you 
2612 use will have its own help text, explaining the choices available for that
2613 screen. This general help section, on the other hand, attempts to give an 
2614 overall picture of what Alpine is capable of doing, as well as pointers to 
2615 additional help sections about specific topics.<p>
2617 Much of the help text contains links to further help topics, similar to
2618 how the World Wide Web works.
2619 You may choose a link to view using the &quot;NextLink&quot; and
2620 &quot;PrevLink&quot; commands to change the link that is highlighted.
2621 The &quot;View Link&quot; command will then show you the highlighted link.
2622 Similar to the Back button in a web browser, the &quot;Prev Help&quot; command
2623 will return you to where you were before viewing the link, and &quot;Exit Help&quot
2624 will return you to the location in Alpine before you asked for help.
2625 For example, if you are reading this text in Alpine you may return to the
2626 help table of contents with the &quot;Prev Help&quot; command or you may view the
2627 Release notes link in the next paragraph and then return here with
2628 &quot;Prev Help&quot;.
2631 In addition to this general help on Alpine, <A HREF="h_news">Release Notes</A>
2632 on the current Alpine version are also available from the MAIN MENU: Press
2633 <!--chtml if pinemode="function_key"-->
2634 &quot;F9&quot;
2635 <!--chtml else-->
2636 &quot;R&quot;
2637 <!--chtml endif-->
2638 to browse the release notes.  These include changes since the last release,
2639 configuration information, the history of the Alpine
2640 project, credits, and legal notices.
2642 Alpine releases are available via the world wide web at
2644 <CENTER><SAMP><A 
2645 HREF="http://repo.or.cz/alpine.git">http://repo.or.cz/alpine.git</A></SAMP
2646 ></CENTER>
2649 If you would like to print <EM>all</EM> of Alpine's internal help text
2650 (not recommended) for a little light bedtime reading, then press
2651 <!--chtml if pinemode="function_key"-->
2652 &quot;F12&quot;
2653 <!--chtml else-->
2654 &quot;Z&quot;
2655 <!--chtml endif-->
2656 now.  (This assumes that the
2657 copy of Alpine you are using has been properly configured for printing
2658 at your site.)
2660 &lt;End of help on this topic&gt;
2661 </BODY>
2662 </HTML>
2663 ===== h_mainhelp_localsupport ======
2664 <HTML>
2665 <HEAD>
2666 <TITLE>Local Support Contacts</TITLE>
2667 </HEAD>
2668 <BODY>
2669 <H1>Local Support Contacts</H1>
2671 <!--chtml if [ -r PINE_INFO_PATH ]-->
2672 <!--#include file="PINE_INFO_PATH"-->
2673 <!--chtml else-->
2674 No Local Support Contacts configured.
2675 <!--chtml endif-->
2678 &lt;End of help on this topic&gt;
2679 </BODY>
2680 </HTML>
2682 ===== h_mainhelp_cmds ======
2683 <HTML>
2684 <HEAD>
2685 <TITLE>Giving Commands in Alpine</TITLE>
2686 </HEAD>
2687 <BODY>
2688 <H1>Giving Commands in Alpine</H1>
2690 Unless configured otherwise
2691 (<A HREF="h_config_blank_keymenu"><!--#echo var="FEAT_disable-keymenu"--></A>)
2692 the bottom two lines of the screen are always used to list the
2693 commands you can give.  You press the keys that are highlighted to give
2694 the command.  The commands for getting help and going back to the main
2695 menu are always present (except when viewing help as you are now).
2696 <!--chtml if pinemode="function_key"-->
2697 <!--chtml else-->
2699 Pressing O (meaning &quot;Other Commands&quot;) changes the keys
2700 you see at the bottom of any screen. In some cases there are 3 or
2701 even 4 different
2702 sets of keys that can be seen by using the O key. <EM>All commands are 
2703 active</EM>, even if they are not currently showing at the bottom of your 
2704 screen. In other words, you <EM>never</EM> need to press the O key, except to 
2705 remind yourself of the proper key to press to perform an operation.
2707 <H2>Control Key Commands</H2>
2708 When composing mail, and in a few other places, in Alpine you
2709 have to use Control keys. This means pressing the Control key (usually labeled 
2710 &quot;Ctrl&quot;) and the
2711 letter indicated at the same time.  Usually, this is shown with a
2712 &quot;^&quot; in front of the letter.  On some systems, certain control
2713 characters are intercepted before they get to Alpine.  As a work-around,
2714 you can press the ESCAPE key twice followed by the desired key.  For
2715 example, if Ctrl-O (^O) does not work on your system, try typing
2716 &quot;ESC ESC O&quot;.
2717 <!--chtml endif-->
2718 <H2>Paging Up and Down</H2>
2719 The &quot;+&quot; and &quot;-&quot; keys are used for
2720 moving to the next or previous page.  The space bar is a synonym for
2721 &quot;+&quot;.  You may also use Ctrl-V to page down and Ctrl-Y to page
2722 up as you do in the message composer.  On screens with a WhereIs (search)
2723 command, W or Ctrl-W followed by Ctrl-V will move to the bottom of the
2724 message or list, and W or Ctrl-W followed by Ctrl-Y will move to the top
2725 of the message or list.
2727 <H2>Return Key</H2>
2728 The return key is usually a synonym for a frequently used
2729 command.  When viewing a message, there is currently not a default
2730 command, so RETURN does nothing; when in the index, it is synonymous with
2731 &quot;view msg&quot;. In the key menu at the bottom of the screen, whatever is
2732 enclosed in square brackets [] is the same as the return key.
2734 <H2>Control Keys Not Used By Alpine</H2>
2735 Most commands in Alpine are single letters, with -- we hope -- some mnemonic 
2736 value, but in places where Alpine is expecting text input, e.g. in the composer or 
2737 at prompts for file/folder names, control keys must be used for editing and 
2738 navigation functions.
2741 Alpine has used nearly all the control keys available.  There are, however,
2742 certain control keys that are reserved by other programs or for technical
2743 reasons.  Alpine does not use any of these keys:
2744 <DL>
2745  <DT>Ctrl-S</DT> <DD>Used by Unix as &quot;stop output&quot;</DD>
2746  <DT>Ctrl-Q</DT> <DD>Used by Unix as &quot;resume output&quot;</DD>
2747  <DT>Ctrl-]</DT> <DD>Often used by Telnet as escape key</DD>
2748 </DL>
2750 Note: Ctrl-S and Ctrl-Q can be subject to 
2751 <A HREF="h_special_xon_xoff">special handling</A>.
2753 In addition, while the ESC key alone is not used for command input,
2754 Alpine will recognize two consecutive ESC key presses followed by a letter 
2755 key as a substitute for control key input.  For example, the control key
2756 <SAMP>Ctrl-X</SAMP> can alternatively be entered using the
2757 three keystrokes: <SAMP>ESC&nbsp;ESC&nbsp;x</SAMP>.
2758 This is useful if the communication program you are using
2759 (e.g. Telnet) has its own, conflicting, idea of what certain control
2760 characters mean.
2763 <H2>Repainting the Screen</H2>
2764 Sometimes what is displayed on the screen will be
2765 incorrect due to noise on the phone line or other causes and you will want
2766 to repaint the whole screen to make it correct.  You can use the Ctrl-L
2767 command to do this.  It never hurts to do it when in doubt.
2770 &lt;End of help on this topic&gt;
2771 </BODY>
2772 </HTML>
2773 ===== h_mainhelp_status ======
2774 <HTML>
2775 <HEAD>
2776 <TITLE>Titlebar Line</TITLE>
2777 </HEAD>
2778 <BODY>
2779 <H1>Titlebar Line</H1>
2781 The top line of the screen is Alpine's titlebar line.  It will always display
2782 the current version of Alpine and will also convey information about the
2783 status of the program.  This is where you look to find out what
2784 collection, folder and message number is active and where you are in Alpine.
2787 If the titlebar line says &quot;READONLY&quot; it means that the open folder
2788 (typically your INBOX) is &quot;locked&quot; by another mail session --
2789 most likely a more recent session of Alpine has taken the INBOX lock.
2792 If the titlebar line says &quot;CLOSED&quot; it means that you are trying to
2793 access a
2794 folder on a remote mail server, and for some reason, communication with
2795 the mail server has either been lost, or never successfully established.
2796 This can be a result of trying to open a non-existent folder, or one
2797 stored on an invalid or non-operational server, or it can mean that Alpine
2798 has been suspended for more that 30 minutes while accessing a remote mail
2799 server.
2802 &lt;End of help on this topic&gt;
2803 </BODY>
2804 </HTML>
2805 ===== h_mainhelp_mainmenu ======
2806 <HTML>
2807 <HEAD>
2808 <TITLE>Main Menu</TITLE>
2809 </HEAD>
2810 <BODY>
2811 <H1>Main Menu</H1>
2813 The Main Menu lists Alpine's main options.
2814 The key or keys you must type to enter your
2815 choice are to the left of each option or command name.
2816 You can type either uppercase or lowercase letters,
2817 and you should not press &lt;Return&gt; after typing the
2818 letter (unless you are specifically asking for the default,
2819 highlighted command).
2822 From the Main Menu you can choose to read online help, write (compose) and 
2823 send a message, look at an index of your mail messages, open or maintain
2824 your mail folders, update your address book, configure Alpine, and quit Alpine.
2825 There are additional options listed at
2826 the bottom of the screen as well.
2829 The Help command usually returns context-sensitive help information.
2830 However, in the Main Menu you get the most general help, which includes
2831 a Table of Contents.
2832 The last entry in the Table of Contents is an Index of help topics,
2833 so this is a good place to go if you are having trouble finding how
2834 to do something.
2836 <H2>Main Menu Commands</H2>
2837 The Alpine main menu lists the most common Alpine functions. A <a
2838 href="h_main_menu_commands">full list of these
2839 commands</a> and what they do is available.
2841 &lt;End of help on this topic&gt;
2842 </BODY>
2843 </HTML>
2844 ===== h_mainhelp_abooks ======
2845 <HTML>
2846 <HEAD>
2847 <TITLE>Address Books</TITLE>
2848 </HEAD>
2849 <BODY>
2850 <H1>Address Books</H1>
2853 As you use email, you can build a list of your regular email correspondents 
2854 in your Alpine
2855 Address Book. At the Alpine MAIN MENU, press A to see the Address Book List 
2856 screen. Your
2857 personal address book will be highlighted. Press &lt;Return&gt; to view it.
2858 You can use the address book to store email addresses for individuals or
2859 groups, to create easily
2860 remembered &quot;nicknames&quot; for these addresses, and to quickly retrieve an email 
2861 address when you are composing a message.
2863 There are two ways to add addresses to your address book: you can add them 
2864 manually or take them from messages (by pressing T to access the Take command). 
2865 With either method, you specify nicknames for your correspondents. A single 
2866 address book entry (or nickname) can point to just one email address, or, it can
2867 point to more than one. When it points to more than one, it is called a 
2868 distribution list. Each distribution list has a nickname, a full name, and a 
2869 list of addresses. These
2870 addresses may be actual addresses, other nicknames in your address book, or 
2871 other
2872 distribution lists.
2875 Additional information is available in Alpine's online help:
2876 <ul>
2877   <li><a href="h_abook_opened">The Alpine Address Book</a></li>
2878 </ul>
2880 &lt;End of help on this topic&gt;
2881 </BODY>
2882 </HTML>
2883 ===== h_mainhelp_ldap ======
2884 <HTML>
2885 <HEAD>
2886 <TITLE>LDAP</TITLE>
2887 </HEAD>
2888 <BODY>
2889 <H1>LDAP</H1>
2891 LDAP (Lightweight Directory Access Protocol) is a standard means of accessing 
2892 an organization's shared
2893 directories. Essentially, using LDAP, Alpine is able to find email addresses in 
2894 large address
2895 books, rather like the White Pages provided by the phone company. As an Alpine 
2896 user, it is not
2897 necessary to know much about how this works, only how to use it and how to 
2898 configure
2901 More information on configuring LDAP is available in Alpine's online help:
2902 <ul>
2903   <li><a href="h_direct_config">Setup LDAP Directory Servers</a></li>
2904 </ul>
2906 Additional help on using LDAP in Alpine is also available:
2907 <ul>
2908   <li><a href="h_ldap_view">LDAP Response View Explained</a></li>
2909 </ul>
2911 &lt;End of help on this topic&gt;
2912 </BODY>
2913 </HTML>
2914 ===== h_mainhelp_index ======
2915 <HTML>
2916 <HEAD>
2917 <TITLE>Index of Messages</TITLE>
2918 </HEAD>
2919 <BODY>
2920 <H1>Index of Messages</H1>
2922 In Alpine's message index, the selected message is highlighted. The first 
2923 column on the left is blank, shows a &quot;+&quot; if the message was
2924 sent directly to you (i.e., it is not a
2925 copy or from a list), or a &quot;-&quot; if you were explicitly Cc'd.
2927 The second column may be blank, or it may contain:
2928 <ul>
2929   <li>"N" if the message is new (unread), </li>
2930   <li>"A" if you have answered the message (using the Reply command), </li>
2931   <li>"D" if you have marked the message for deletion.</li>
2932 </ul>
2935 Note: If you answer a message as well as mark it deleted (in either order), 
2936 you will only see the &quot;D&quot;.
2939 The rest of the columns in the message line show you the message
2940 number, date sent, sender, size, and subject. For details, press ? (Help).  
2941 The behavior and appearance of the Index screen is highly configurable.
2942 In the Setup/Config screen search (with the WhereIs command) for options
2943 that contain the words &quot;index&quot; or &quot;thread&quot; to see
2944 many of the configuration possibilities.
2945 In particular, the
2946 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
2947 option may be used to configure the look of the standard MESSAGE INDEX lines
2948 in many different ways.
2949 Find <!--#echo var="VAR_index-format"--> in the Setup/Config screen and
2950 read the help text there for more information.
2952 Most of the commands you need to handle your messages are visible at the
2953 bottom of the screen, and you can press O (OTHER CMDS) to see additional
2954 commands that are available.
2955 You do not need to see these &quot;other commands&quot;
2956 on the screen to use them. That is, you never need to press O as a prefix
2957 for any other command.
2960 Additional information is available in Alpine's online help:
2961 <ul>
2962   <li><a href="h_mail_index">Message Index Commands</a></li>
2963 </ul>
2965 &lt;End of help on this topic&gt;
2966 </BODY>
2967 </HTML>
2968 ===== h_mainhelp_reading ======
2969 <HTML>
2970 <HEAD>
2971 <TITLE>Reading Messages</TITLE>
2972 </HEAD>
2973 <BODY>
2974 <H1>Reading Messages</H1>
2976 The message text screen shows you the text of the message along with
2977 its header. If a message has attachments, those will be listed (but not
2978 displayed) also.  The titlebar line displays information about the currently
2979 open message, folder and collection.  You see the name of the collection
2980 (if there is one) in angle brackets, then the name of the folder, then the
2981 message number and finally the position within the current message (in
2982 percent). If the message is marked for deletion
2983 &quot;DEL&quot; will appear in the
2984 upper right as well.
2987 As with every Alpine screen, the bottom two lines show you the commands 
2988 available.
2990 <P>Additional information is available in Alpine's online help:
2991 <ul>
2992   <li><a href="h_mail_view">Message Text Screen</a></li>
2993   <li><a href="h_attachment_screen">Attachment Index Screen Explained</a></li>
2994   <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a></li>
2995 </ul>
2997 &lt;End of help on this topic&gt;
2998 </BODY>
2999 </HTML>
3000 ===== h_mainhelp_composing ======
3001 <HTML>
3002 <HEAD>
3003 <TITLE>Composing Messages</TITLE>
3004 </HEAD>
3005 <BODY>
3006 <H1>Composing Messages</H1>
3008 To write a message, press C (Compose). You see the Compose Message
3009 screen, which is divided into two parts: the header area and the message
3010 text area. The header area is where information on the recipient (the To:
3011 field) and the subject line go, while the message text area contains the
3012 actual text of the email message. Different commands are available to you
3013 when your cursor is in different areas on this screen. To see additional
3014 help on commands in either the message text or header area, type
3015 <Control>G (Get help).
3018 To move around, use the arrow keys or Ctrl-N (Next line) and Ctrl-P 
3019 (Previous line); to correct typing errors, use &lt;Backspace&gt; or &lt;Delete&gt;.
3021 <P>The following information from Alpine's online help may prove useful:
3022 <ul>
3023   <li><a href="h_composer_to">Message Header Commands</a></li>
3024   <li><a href="h_compose_richhdr">Rich Header Command</a></li>
3025   <li><a href="h_composer">Composer Commands</a></li>
3026   <li><a href="h_edit_nav_cmds">Composer Editing Commands</a></li>
3027   <li><a href="h_config_change_your_from">Changing your From Address</a></li>
3028   <li><a href="h_compose_send">Send Command</a></li>
3029   <li><a href="h_compose_spell">Spell Check Command</a></li>
3030 </ul>
3032 &lt;End of help on this topic&gt;
3033 </BODY>
3034 </HTML>
3035 ===== h_mainhelp_collections ======
3036 <HTML>
3037 <HEAD>
3038 <TITLE>Collection Lists</TITLE>
3039 </HEAD>
3040 <BODY>
3041 <H1>Collection Lists</H1>
3043 Collection lists are Alpine's way of organizing groups of folders. Each
3044 "collection" can reside on a different server, for example, and contain a
3045 different group of mail folders.
3048 For more information on this, see:
3049 <ul>
3050   <li><a href="h_what_are_collections">Folder Collections Explained</a></li>
3051 </ul>
3053 Additional information relating to collection lists is also available in 
3054 Alpine's online
3055 help:
3056 <ul>
3057   <li><a href="h_collection_maint">Setup Collection List Screen</a></li>
3058   <li><a href="h_collection_screen">Collection List Screen</a></li>
3059 </ul>
3061 &lt;End of help on this topic&gt;
3062 </BODY>
3063 </HTML>
3064 ===== h_mainhelp_folders ======
3065 <HTML>
3066 <HEAD>
3067 <TITLE>Folders</TITLE>
3068 </HEAD>
3069 <BODY>
3070 <H1>Folders</H1>
3072 Messages can quickly accumulate in your INBOX folder. If you use email
3073 often, you soon could have hundreds. You need to delete messages you do
3074 not want, and you can use folders to organize messages you wish to save. A
3075 folder is a collection of one or more messages that are stored (just like
3076 the messages in your INBOX) so you can access and manage them.
3079 You can organize your email messages into different folders by topic,
3080 correspondent, date, or any other category that is meaningful to you. You
3081 can create your own folders, and Alpine automatically provides three:
3082 <ul>
3083   <li>The INBOX folder: messages sent to you are listed in this folder.
3084       When you first start Alpine and go to the Message Index screen, you are
3085 looking at the list of messages in your INBOX folder. Every incoming
3086 message remains in your INBOX until you delete it or save it in another
3087 folder. </li>
3088   <li>The sent-mail folder: copies of messages you send are stored in this 
3089 folder. This is
3090 convenient if you cannot remember whether you actually sent a message and want 
3091 to check, or
3092 if you want to send a message again.</li>
3093   <li>The saved-messages folder: copies of messages you save are stored in this 
3094 folder
3095 unless you choose to save them to other folders you create yourself.</li>
3096 </ul>
3099 More information about folders is available in Alpine's online help:
3100 <ul>
3101   <li><a href="h_folder_open">Explanation of Folder Selection</a></li>
3102   <li><a href="h_folder_maint">Help for Folder List</a></li>
3103   <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a></li>
3104   <li><a href="h_folder_fcc">Folder Select for Fcc ("sent-mail") 
3105 Explained</a></li>
3106   <li><a href="h_folder_save">Folder Select for Save Explained</a></li>
3107 </ul>
3109 &lt;End of help on this topic&gt;
3110 </BODY>
3111 </HTML>
3112 ===== h_mainhelp_color ======
3113 <HTML>
3114 <HEAD>
3115 <TITLE>Color</TITLE>
3116 </HEAD>
3117 <BODY>
3118 <H1>Color</H1>
3120 If the terminal emulator you are using is capable of displaying color or if
3121 you are using PC-Alpine, then it is possible to set up Alpine so that various
3122 parts of the display will be shown in colors you configure. This is done
3123 using the Setup Color screen, available from the MAIN MENU by selecting
3124 the Setup command followed by &quot;K&quot; for Kolor (because &quot;C&quot;
3125 stands for Config in this context).
3128 For example, you may color things like the titlebar, the current item,
3129 the keymenu, and the status messages.
3130 You may also color lines in the index, and headers and quoted text in the
3131 MESSAGE TEXT screen.
3132 You use the Color Setup screen for configuring most of this, but you must
3133 use the IndexColor setup for coloring whole index lines.
3134 These are available from the MAIN MENU under Setup/Kolor and Setup/Rules/IndexColor.
3137 The following entries in Alpine's online help provide additional information 
3138 about how to use color:
3139 <UL>
3140   <LI> <A HREF="h_color_setup">Color Setup screen</A>
3141   <LI> <A HREF="h_rules_incols">Index Line Color</A>
3142   <LI> <A HREF="h_config_quote_color">quoted text</A> in message view
3143   <LI> <A HREF="h_config_customhdr_pattern">text associated with user-defined headers</A> in message view
3144 </UL>
3146 &lt;End of help on this topic&gt;
3147 </BODY>
3148 </HTML>
3149 ===== h_mainhelp_mouse ======
3150 <HTML>
3151 <HEAD>
3152 <TITLE>Using a Mouse</TITLE>
3153 </HEAD>
3154 <BODY>
3155 <H1>Using a Mouse</H1>
3157 If you are using PC-Alpine mouse support is turned on automatically.
3158 If you are using UNIX Alpine within an X terminal window or within
3159 a terminal emulator that supports an xterm-style mouse, then you may
3160 turn on support for the mouse with the feature
3161 <A HREF="h_config_enable_mouse"><!--#echo var="FEAT_enable-mouse-in-xterm"--></A>.
3162 For UNIX Alpine you will also need to set the $DISPLAY environment variable.
3164 PC-Alpine offers considerable mouse support.  You can view what is
3165 &quot;clickable&quot; by dragging your mouse over any screen; when the
3166 arrow cursor changes into a hand, you found something. Mouse-click
3167 possibilities include navigating between screens and folders and
3168 double-clicking on hyperlinks to open your Web browser.
3169 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
3170 screen.  Examples of right-click options include &quot;copy&quot; after
3171 selecting text to copy and &quot;View in New Window&quot; when you click
3172 on a particular message in the Message Index. The menu choices available
3173 to you will vary based upon what screen is open, where on the screen your
3174 cursor is located, and even what action you have already taken.
3175 Within a folder, you may set the &quot;Important&quot; flag on any
3176 message.
3178 X terminal mouse support is more limited but still quite powerful.
3179 As with PC-Alpine, clicking on any of the commands in the keymenu at
3180 the bottom of the screen will execute that command as if you typed it.
3181 Double-clicking on a link, for example the link to the
3182 <!--#echo var="FEAT_enable-mouse-in-xterm"--> feature in the paragraph above,
3183 will take you to that link.
3184 Double-clicking on an index line will view the message, and so on.
3186 &lt;End of help on this topic&gt;
3187 </BODY>
3188 </HTML>
3189 ===== h_mainhelp_keywords ======
3190 <HTML>
3191 <HEAD>
3192 <TITLE>Keywords</TITLE>
3193 </HEAD>
3194 <BODY>
3195 <H1>Keywords</H1>
3197 Within a folder, you may set the &quot;Important&quot; flag on any
3198 message.
3199 This doesn't have any system-defined meaning and is only called
3200 the Important flag because many users use it to signify that a message
3201 is important to them in some way.
3203 You may also define your own set of keywords.
3204 You might know these as user defined flags or as labels.
3205 These are similar to the Important flag but you choose the names for yourself.
3207 Alpine will only display keywords that
3208 have been added by you in the Flag Details screen or
3209 that have been configured by you using the Setup/Config option
3210 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
3211 Keywords set by other means (for example, by another email client) will not
3212 show up in Alpine unless you configure Alpine to know about them.
3213 They will show up in the Flag Details screen, but will not show up, for example,
3214 in the index line.
3217 The following entries in Alpine's online help provide additional information 
3218 about how to use keywords:
3219 <ul>
3220   <li><A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--> config option</A></li>
3221   <li><A HREF="h_common_flag">Flag command to set keywords</A></li>
3222 </ul>
3224 &lt;End of help on this topic&gt;
3225 </BODY>
3226 </HTML>
3227 ===== h_mainhelp_roles ======
3228 <HTML>
3229 <HEAD>
3230 <TITLE>Roles</TITLE>
3231 </HEAD>
3232 <BODY>
3233 <H1>Roles</H1>
3235 You may play different roles depending on who you are replying to. For
3236 example, if you are replying to a message addressed to help-desk you may
3237 be acting as a Help Desk Worker. That role may require that you use a
3238 different return address and/or a different signature.
3241 To configure roles, go to the MAIN MENU and use the Setup command
3242 followed by &quot;Rules&quot; and then &quot;Roles&quot;.
3243 The following entries in Alpine's online help provide additional information 
3244 about how to
3245 use roles:
3246 <ul>
3247   <li><a href="h_rules_roles">Setup Roles Screen</a></li>
3248   <li><a href="h_role_select">Roles Screen</a></li>
3249 </ul>
3251 &lt;End of help on this topic&gt;
3252 </BODY>
3253 </HTML>
3254 ===== h_mainhelp_filtering ======
3255 <HTML>
3256 <HEAD>
3257 <TITLE>Filtering</TITLE>
3258 </HEAD>
3259 <BODY>
3260 <H1>Filtering</H1>
3262 The software that actually delivers mail (the stuff that happens
3263 before Alpine is involved) for you is in a better position to do mail filtering
3264 than Alpine itself.
3265 If possible, you may want to look into using that sort of mail filtering to
3266 deliver mail to different folders, delete it, or forward it.
3267 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
3270 Filtering is a way to automatically move certain messages from one folder
3271 to another or to automatically delete messages.
3272 You may also automatically set the state (Important, New, Deleted, Answered) of messages
3273 and set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
3274 Alpine doesn't have the ability to forward mail to another address or
3275 to deliver vacation messages.
3278 To configure filtering, go to the MAIN MENU and use the Setup command
3279 followed by &quot;Rules&quot; and then &quot;Filters&quot;.
3280 The following entries in Alpine's online help provide additional information 
3281 about how to use filtering:
3282 <UL>
3283   <LI> <A HREF="h_rules_filter">Filtering Setup screen</A>
3284 </UL>
3286 &lt;End of help on this topic&gt;
3287 </BODY>
3288 </HTML>
3289 ===== h_mainhelp_patterns ======
3290 <HTML>
3291 <HEAD>
3292 <TITLE>Patterns</TITLE>
3293 </HEAD>
3294 <BODY>
3295 <H1>Patterns</H1>
3297 Patterns are used with Roles, Filtering, Index Coloring,
3298 Scoring, Other Rules, and Search Rules, so it may help you to understand exactly how Patterns work.
3299 The following entries in Alpine's online help provide information 
3300 about using Patterns:
3301 <UL>
3302   <LI> <A HREF="h_rule_patterns">Patterns</A>
3303 </UL>
3305 &lt;End of help on this topic&gt;
3306 </BODY>
3307 </HTML>
3308 ===== h_mainhelp_cmdlineopts ======
3309 <HTML>
3310 <HEAD>
3311 <TITLE>Command Line Options</TITLE>
3312 </HEAD>
3313 <BODY>
3314 <H1>Command Line Options</H1>
3316 Alpine accepts a number of command line arguments, allowing you, for
3317 example, to start Alpine and immediately access a particular folder.
3318 Many of these arguments overlap with options in the Alpine configuration file.
3319 If there is a difference, then an option set on the command line takes
3320 precedence.
3321 Alpine expects command line arguments (other than addresses) to be
3322 preceded by a &quot;-&quot; (dash) as normally used by UNIX programs.
3323 A <a href="h_command_line_options">full list</a> of command line
3324 possibilities is available.
3326 &lt;End of help on this topic&gt;
3327 </BODY>
3328 </HTML>
3329 ===== h_mainhelp_config ======
3330 <HTML>
3331 <HEAD>
3332 <TITLE>Alpine Configuration</TITLE>
3333 </HEAD>
3334 <BODY>
3335 <H1>Alpine Configuration</H1>
3337 Unless it has been administratively disabled, the Setup command on the
3338 MAIN MENU has several subcommands that allow you to modify Alpine's behavior.
3339 The possible subcommands are for general Configuration settings,
3340 Printer settings, Changing your Password, Signature setup,
3341 AddressBook setup, Collection Lists setup, Rules (including Roles, Filters,
3342 Scores, Search, Indexcolor, and Other rules), LDAP Directory setup,
3343 and Color configuration.
3344 In particular, the &quot;Config&quot; subcommand has many features you may
3345 set or unset and many other configuration variables that may be set to change
3346 the way Alpine works.
3347 Every one of the hundreds of options available in that configuration settings
3348 screen has help text associated with it.
3349 You may read that text by moving the cursor to highlight the option and then
3350 typing the Help command.
3352 These settings are stored in your personal
3353 &quot;pinerc&quot; configuration file (or, optionally, they may be stored
3354 <A HREF="h_config_remote_config">remotely</A>),
3355 but on shared systems these settings
3356 may be over-ridden by a system-wide control file (due to local site
3357 security or support policies).  A global pine configuration file can also
3358 be used to set default values for all Alpine users on a particular system.
3359 Power users may be interested in splitting their personal configuration
3360 data into two pieces, a generic piece and
3361 <A HREF="h_config_exceptions">exceptions</A> which apply to
3362 a particular platform.
3363 They may also be interested in <A HREF="h_config_inheritance">configuration inheritance</A>.
3364 General Alpine configuration information can be found
3365 <A HREF="h_news_config">here</A>.
3367 &lt;End of help on this topic&gt;
3368 </BODY>
3369 </HTML>
3370 ===== h_mainhelp_aggops ======
3371 <HTML>
3372 <HEAD>
3373 <TITLE>Aggregate Operations</TITLE>
3374 </HEAD>
3375 <BODY>
3376 <H1>Aggregate Operations</H1>
3378 When you are in the MESSAGE INDEX, the available commands
3379 (for example, Delete, Undelete, Save, Reply, and so on)
3380 normally act on a single message.
3381 So, for example, if you press the Delete command, the currently highlighted
3382 message is marked Deleted.
3383 These commands that normally act on a single message may be applied to
3384 several messages at once instead.
3386 By default this feature is turned on, but it could be administratively turned
3387 off to reduce complexity.
3388 The feature
3389 <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>
3390 in the Setup/Config screen is used to turn it off or on.
3391 When this feature is turned on, the four commands &quot;Select&quot;,
3392 &quot;SelectCur&quot;, &quot;ZoomMode&quot;, and &quot;Apply&quot;
3393 are available.
3394 The two selection commands allow you to mark a set of
3395 messages as being &quot;selected&quot;.
3396 The &quot;ZoomMode&quot; command will toggle between
3397 displaying only the selected messages and displaying all the messages.
3398 The &quot;Apply&quot; command allows you to
3399 apply one of the regular MESSAGE INDEX commands to all of the selected
3400 messages instead of to only the highlighted message.
3402 An example aggregate operation would be to catch up when reading
3403 a news group.
3404 That is, get rid of all the messages in the news group so that you can
3405 start fresh.
3406 The easiest way to do this in Alpine is to use aggregate operations.
3407 You want to Delete all of the messages in the group.
3408 You could start at the top and type &quot;D&quot; once for every message.
3409 A much faster method is to first Select all of the messages in the group,
3410 and then Delete all of them.
3411 This would take four keystrokes:
3413 <CENTER><SAMP>; a (to select all messages)</SAMP></CENTER>
3414 <BR>
3415 <CENTER><SAMP>a d (to delete all selected messages)</SAMP></CENTER>
3417 Another use of Select is to use it for searching for a particular message
3418 or set of messages in a large folder.
3419 You may know that the message was From a certain user.
3420 You could select all messages from that user to start, and use Zoom to
3421 look at only those messages.
3422 If there were still too many messages to look at you could Narrow the
3423 set of messages further by selecting from all of those messages only
3424 the ones that were after a certain date, or contained a particular phrase
3425 in the Subject, or were too a particular address, and so on.
3426 That may be the end of what you are doing, or you may want to use Apply to
3427 Save or Forward or Print all of the selected messages.
3429 Some related help topics are
3430 <UL>
3431 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
3432 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
3433 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
3434 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
3435 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
3436 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
3437 </UL>
3439 &lt;End of help on this topic&gt;
3440 </BODY>
3441 </HTML>
3442 ===== h_mainhelp_readingnews ======
3443 <HTML>
3444 <HEAD>
3445 <TITLE>Reading News</TITLE>
3446 </HEAD>
3447 <BODY>
3448 <H1>Reading News</H1>
3450 <H2>Background</H2>
3451 Alpine can read and post to Internet (or USENET) newsgroups, using the same 
3452 commands as for mail. Similar to mailing lists but existing on a larger scale, 
3453 Usenet newsgroups allow groups of people with common interests to discuss 
3454 particular topics. You might find newsgroups related to your career, or you 
3455 might wish to check out the online discussion among the fans of your favorite 
3456 television show. 
3458 <H2>Configuring Alpine for Reading News</H2>
3459 Alpine often arrives
3460 pre-configured by your system administrator to automatically access the
3461 newsgroups offered by your organization, Internet Service Provider, or
3462 school. PC-Alpine users, and those attempting to customize Unix Alpine, will
3463 need additional details on <a href="h_configuring_news">how to
3464 configure Alpine to read news</a>.
3466 <H2>Accessing Newsgroups</H2>
3467 The first step in reading news is to access the newsgroups collections
3468 screen from Alpine. If everything is configured properly, you should be able
3469 to do this by first typing L (folder List), then selecting the folder
3470 collection listed as "News." The actual name of this collection may differ
3471 from system to system.
3473 <H2>Subscribing to Newsgroups</H2>
3475 Once you have accessed the news collection, you need to subscribe to a
3476 newsgroup that interests you. Subscribing to a newsgroup means that Alpine
3477 will keep a record of the newsgroups in which you are interested and which
3478 articles in those newsgroups have been read.
3480 <H2>Using Newsgroups</H2> 
3481 Alpine uses the similar commands to read news as to read mail. For example,
3482 the D command marks messages as Deleted (or "Dismissed," if you prefer),
3483 and the R command Replies to a news posting. Basically, Alpine allows you to
3484 read news as if it were mail, so you don't need to change the way you
3485 interact with Alpine.
3487 There is also additional Alpine help available on 
3488 <A HREF="h_reading_news">how to use Alpine to read news</A>.
3490 &lt;End of help on this topic&gt;
3491 </BODY>
3492 </HTML>
3493 ===== h_mainhelp_securing ======
3494 <HTML>
3495 <HEAD>
3496 <TITLE>Securing your Alpine Session</TITLE>
3497 </HEAD>
3498 <BODY>
3499 <H1>Securing your Alpine Session</H1>
3501 By default, Alpine will attempt to connect to an IMAP server on the normal
3502 IMAP service port (143).
3503 If the Alpine you are using has been built to
3504 support &quot;Transport Layer Security&quot; (TLS)
3505 and &quot;Secure Sockets Layer&quot; (SSL) 
3506 (check by clicking <A HREF="X-Alpine-Config:">here</A>),
3507 and the server offers the STARTTLS capability, then a secure (encrypted)
3508 session will be established.
3510 When you are connected to a remote folder the titlebar will contain a plus sign
3511 in the far right column if the connection is encrypted using TLS or SSL.
3512 Similarly, when you are being prompted for a password a plus sign will appear in the prompt
3513 if the connection is encrypted.
3515 <H2>More Information on Alpine with SSL and TLS</H2>
3516 <UL>
3517 <LI> <A HREF="h_release_tlscerts">TLS and SSL Usage Note</A> </LI>
3518 <LI> <A HREF="h_folder_server_syntax">/SSL</A> option for older servers which support port 993 SSL but not TLS </LI>
3519 <LI> <A HREF="h_config_alt_auth"><!--#echo var="FEAT_try-alternative-authentication-driver-first"--></A> feature </LI>
3520 <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>
3521 </UL>
3522 <H2>Here are some other security-related features and options</H2>
3524 <UL>
3525 <LI> <A HREF="h_config_disable_password_caching"><!--#echo var="FEAT_disable-password-caching"--></A> feature to disable password caching </LI>
3526 <LI> <A HREF="h_config_disable_password_file_saving"><!--#echo var="FEAT_disable-password-file-saving"--></A> Disable password file saving</LI>
3527 <LI> <A HREF="h_config_mailcap_params"><!--#echo var="FEAT_enable-mailcap-param-substitution"--></A> feature </LI>
3528 <LI> <A HREF="h_config_disable_auths"><!--#echo var="VAR_disable-these-authenticators"--></A> option </LI>
3529 <LI> <A HREF="h_config_encryption_range"><!--#echo var="VAR_encryption-protocol-range"--></A> option </LI>
3530 </UL>
3532 &lt;End of help on this topic&gt;
3533 </BODY>
3534 </HTML>
3535 ===== h_mainhelp_problems ======
3536 <HTML>
3537 <HEAD>
3538 <TITLE>Reporting Problems</TITLE>
3539 </HEAD>
3540 <BODY>
3541 <H1>Reporting Problems</H1>
3543 We ask that you first read the relevant help screens and then seek
3544 assistance from your own local support staff.  Once you are sure that your
3545 difficulty is not a local configuration problem, you might look at the
3546 help section explaining where to look for
3547 <A HREF="h_finding_help">more information</A> and where to 
3548 get assistance.
3551 <ADDRESS>
3552    Eduardo Chappa &lt;chappa@gmx.com&gt;
3553 </ADDRESS>
3556 &lt;End of help on this topic&gt;
3557 </BODY>
3558 </HTML>
3559 ===== h_main_menu_commands ======
3560 <HTML>
3561 <HEAD>
3562 <TITLE>MAIN MENU COMMANDS</TITLE>
3563 </HEAD>
3564 <BODY>
3565 <H1>MAIN MENU COMMANDS</H1>
3567 <!--chtml if pinemode="function_key"-->
3568 &nbsp;Available&nbsp;Commands&nbsp;--
3569 &nbsp;Group&nbsp;1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;2<BR>
3570 &nbsp;------------------------------
3571 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------
3572 ----------<BR>
3573 &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>
3574 &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>
3575 &nbsp;F3&nbsp;&nbsp;Quit&nbsp;Alpine<BR>
3576 &nbsp;F4&nbsp;&nbsp;Execute&nbsp;current&nbsp;MAIN&nbsp;MENU&nbsp;command&nbsp;&nbsp;&nbsp;F4&nbsp;&nbsp;<A 
3577 HREF="h_common_compose">Compose</A>&nbsp;a&nbsp;message<BR>
3578 &nbsp;F5&nbsp;&nbsp;Select&nbsp;previous&nbsp;command&nbsp;up&nbsp;on&nbsp;menu&nbsp;&nbsp;F5&nbsp;&nbsp;<A 
3579 HREF="h_common_folders">FOLDER&nbsp;LIST</A>&nbsp;screen<BR>
3580 &nbsp;F6&nbsp;&nbsp;Select&nbsp;next&nbsp;command&nbsp;down&nbsp;on&nbsp;menu&nbsp;&nbsp;&nbsp;&nbsp;F6&nbsp;&nbsp;<A 
3581 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3582 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3583 &nbsp;F7&nbsp;&nbsp;<A 
3584 HREF="h_common_index">MESSAGE&nbsp;INDEX</A>&nbsp;screen<BR>
3585 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3586 &nbsp;F8&nbsp;&nbsp;<A 
3587 HREF="h_main_journal">Journal</A>&nbsp;of&nbsp;status&nbsp;messages<BR>
3588 &nbsp;F9&nbsp;&nbsp;Display&nbsp;<A 
3589 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 
3590 HREF="h_main_setup">SETUP</A>&nbsp;menus<BR>
3591 &nbsp;F10&nbsp;<A 
3592 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 
3593 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen<BR>
3594 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
3595 &nbsp;F11&nbsp;<A 
3596 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3597 <!--chtml else-->
3598 &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>
3599 &nbsp;---------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;--------------------------<BR>
3600 &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>
3601 &nbsp;C&nbsp;&nbsp;<A 
3602 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>
3603 &nbsp;I&nbsp;&nbsp;<A 
3604 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>
3605 &nbsp;L&nbsp;&nbsp;<A 
3606 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>
3607 &nbsp;A&nbsp;&nbsp;<A 
3608 HREF="h_main_addrbook">ADDRESS&nbsp;BOOK</A>&nbsp;screen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;K&nbsp;&nbsp;<A 
3609 HREF="h_main_kblock">Lock&nbsp;Keyboard</A><BR>
3610 &nbsp;S&nbsp;&nbsp;<A 
3611 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 
3612 HREF="h_common_goto">Goto</A>&nbsp;a&nbsp;specified&nbsp;folder<BR>
3613 &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>
3614 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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 
3615 HREF="h_common_role">Compose&nbsp;message&nbsp;using&nbsp;a&nbsp;role</a><BR>
3616 <!--chtml endif-->
3619 NOTE:
3620 <OL>
3621  <LI>For help on a particular command, highlight the bold text associated
3622 with it above and hit Return.
3623  <LI> The availability of certain commands (e.g. some of the options under
3624 SETUP) is determined by Alpine configuration files and system capabilities.
3625 At some sites, certain commands may not be available due to security or
3626 support concerns.
3627 </OL>
3629 &lt;End of help on this topic&gt;
3630 </BODY>
3631 </HTML>
3633 ===== h_command_line_options ======
3634 <HTML>
3635 <HEAD>
3636 <TITLE>COMMAND LINE OPTIONS</TITLE>
3637 </HEAD>
3638 <BODY>
3639 <H1>COMMAND LINE OPTIONS</H1>
3640 Possible starting arguments for Alpine:
3642 <DL COMPACT>
3644 <DT> <EM>[addresses]</EM>
3646 <DD> Send-to:  If you give <EM>Alpine</EM> an argument or arguments which
3647 do not begin with a dash, <EM>Alpine</EM> treats them as email addresses.
3648 <EM>Alpine</EM> will startup in
3649 the composer with a message started to the addresses specified.
3650 Once the message is sent, the <EM>Alpine</EM> session closes.
3651 Standard input redirection is allowed.
3652 Separate multiple addresses with a space between them.
3653 Addresses are placed in the &quot;To&quot; field only.
3656 <DT> &lt; <EM>file</EM>
3658 <DD> <EM>Alpine</EM> will startup in the composer with <EM>file</EM> read
3659 into the body of the message.
3660 Once the message is sent, the <EM>Alpine</EM> session closes. 
3663 <DT> -attach <EM>file</EM>
3665 <DD> Go directly into composer with given file attached.
3668 <DT> -attachlist <EM>file-list</EM>
3670 <DD> Go directly into composer with given files attached.
3671 This must be the last option on the command line.
3674 <DT> -attach_and_delete <EM>file</EM>
3676 <DD> Go directly into composer with given file attached, delete when finished.
3679 <DT> -aux <EM>local_directory</EM>
3681 <DD> <EM>PC-Alpine</EM> only.
3682 This tells <EM>PC-Alpine</EM> the local directory to use for storing auxiliary
3683 files, like debug files, address books, and signature files.  The pinerc may 
3684 be local or remote.
3687 <DT> -bail
3689 <DD> If the personal configuration file doesn't already exist, exit.
3690 This might be useful if the configuration file is accessed using some
3691 remote filesystem protocol. If the remote mount is missing this will cause
3692 <EM>Alpine</EM> to quit instead of creating a new pinerc.
3695 <DT> -c <EM>n</EM>
3697 <DD> When used with the <CODE>-f</CODE> option, apply the <EM>n</EM>th context.
3698 This is used when there are multiple folder collections (contexts) and you 
3699 want to open a folder not in the primary collection.
3702 <DT> -conf
3704 <DD> Configuration: Prints a sample system configuration file to the
3705 screen or standard output. To generate an initial system configuration 
3706 file, execute
3708 <PRE><CODE>
3709                 pine -conf > <!--#echo var="PINE_CONF_PATH"-->
3710 </CODE></PRE>
3713 To generate a system configuration file using settings from an old
3714 system configuration file, execute
3716 <PRE><CODE>
3717                 pine -P old-pine.conf -conf > <!--#echo var="PINE_CONF_PATH"-->
3718 </CODE></PRE>
3720 A system configuration file is not required.
3723 <DT> -copy_abook &lt;<EM>local_abook_file</EM>&gt; &lt;<EM>remote_abook_folder</EM>&gt;
3725 <DD> Copy an address book file to a remote address book folder.
3726 If the remote folder doesn't exist, it will be created.
3727 If it exists but the first message in the folder isn't a remote address
3728 book header message, the copy will be aborted.
3729 This flag will not usually be used by a user.
3730 Instead, the user will create a remote address book from within <EM>Alpine</EM>
3731 and copy entries from the local address book by using aggregate Save in
3732 the address book screen.
3735 <DT> -copy_pinerc &lt;<EM>local_pinerc_file</EM>&gt; &lt;<EM>remote_pinerc_folder</EM>&gt;
3737 <DD> Copy a pinerc configuration file to a remote pinerc folder.
3738 If the remote folder doesn't exist, it will be created.
3739 If it exists but the first message in the folder isn't a remote pinerc
3740 header message, the copy will be aborted.
3741 This flag may be useful to users who already have a local pinerc file and
3742 would like to convert it to a remote pinerc folder and use that instead.
3743 This gives a way to bootstrap that conversion without having to manually
3744 reset all of the variables in the remote pinerc folder.
3747 <DT> -d <EM>debug-level</EM>
3749 <DD> Debug Level:  Sets the level of debugging information written by
3750 <EM>Alpine</EM>.
3751 <EM>debug-level</EM> can be set to any integer 0-9.
3752 A debug level of 0 turns off debugging for the session.
3753 (Actually there are some levels higher than 9, but you probably don't
3754 want to see them.)
3757 <DT> -d <EM>keywords</EM>
3759 <DD> You may use a more detailed version of the debugging flag to set
3760 the debug level in separate parts of <EM>Alpine</EM>.
3761 The possibilities are flush, timestamp, imap=0..4, tcp, numfiles=0..31, and
3762 verbose=0..9.
3763 <EM>Flush</EM> causes debugging information to be flushed immediately to
3764 the debug file as it is written.
3765 <EM>Verbose</EM> is the general debugging verbosity level.
3766 <EM>Timestamp</EM> causes timestamps to be added to the debug file, which
3767 is useful when you are trying to figure out what is responsible for delays.
3768 <EM>Numfiles</EM> sets the number of debug files saved.
3769 <EM>Imap</EM> sets the debug level for the debugging statements related
3770 to the conversation with the IMAP server, and more generally, for the
3771 debugging related to <EM>Alpine</EM>'s interaction with the C-Client library.
3772 <EM>Tcp</EM> turns on some TCP/IP debugging.
3775 <DT> -f <EM>folder</EM>
3777 <DD> Startup folder:  <EM>Alpine</EM> will open this folder in place
3778 of the standard INBOX.
3781 <DT> -F <EM>file</EM>
3783 <DD> Open named text file for viewing and forwarding.
3786 <DT> -h
3788 <DD> Help:  Prints the list of available command-line arguments to the
3789 screen.
3792 <DT> -i
3794 <DD> <EM>Alpine</EM> will start up in the FOLDER INDEX
3795 screen instead of the MAIN MENU.
3798 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"-->=i</EM>.
3801 <DT> -I <EM>a,b,c,...</EM>
3803 <DD> Initial Keystrokes:  <EM>Alpine</EM> will execute this comma-separated
3804 sequence of commands upon startup.
3805 This allows users to get <EM>Alpine</EM> to start in any
3806 of its menus/screens.
3807 You cannot include any input to the composer in the initial keystrokes.
3808 The key &lt;Return&gt; is represented by a ``CR'' in
3809 the keystroke list; the spacebar is designated by the letters ``SPACE''.
3810 Control keys are two character sequences beginning with ``^'', such as
3811 ``^I''.
3812 A tab character is ``TAB''.
3813 Function keys are ``F1'' - ``F12'' and the arrow keys are ``UP'',
3814 ``DOWN'', ``LEFT'', and ``RIGHT''.
3815 A restriction is that you can't mix function keys and character keys in this
3816 list even though you can, in some cases, mix them when running <EM>Alpine</EM>.
3817 A user can always use only <EM>character</EM> keys in the startup list even
3818 if he or she is using <EM>function</EM> keys normally, or vice versa.
3819 If an element in this list is a string of characters surrounded by double
3820 quotes (&quot;) then it will be expanded into the individual characters in
3821 the string, excluding the double quotes.
3824 Configuration equivalent:  <EM><!--#echo var="VAR_initial-keystroke-list"--></EM>
3827 <DT> -install
3829 <DD> For <EM>PC-Alpine</EM> only, this option prompts the user for
3830 some basic information to help with getting properly set up.
3833 <DT> -k
3835 <DD> Function-Key Mode:  When invoked in this way, <EM>Alpine</EM> expects
3836 the input of commands to be function-keys.
3837 Otherwise, commands are linked to the regular character keys.
3840 Configuration equivalent:  <EM><!--#echo var="FEAT_use-function-keys"--></EM> included in
3841 <EM>Feature-List</EM>.
3844 <DT> -n <EM>n</EM>
3846 <DD> Message-Number:  When specified, <EM>Alpine</EM> starts up in the
3847 FOLDER INDEX screen with the current message being the specified
3848 message number.
3851 <DT> -nosplash
3853 <DD> <EM>PC-Alpine</EM> only.
3854 This tells <EM>PC-Alpine</EM> not to display the splash screen upon startup.
3855 This may be helpful for certain troubleshooting or terminal server scenarios.
3858 <DT> -o <EM>folder</EM>
3860 <DD> Opens the INBOX (or a folder specified via the -f argument) ReadOnly. 
3863 <DT> -p <EM>pinerc</EM>
3865 <DD> Uses the named file as the personal configuration file instead of
3866 <EM>~/.pinerc</EM> or the default PINERC search sequence <EM>PC-Alpine</EM> uses.
3867 Alpinerc may be either a local file or a remote configuration folder.
3870 <DT> -P <EM>pinerc</EM>
3872 <DD> Uses the named file as the system wide configuration file instead of
3873 <EM><!--#echo var="PINE_CONF_PATH"--></EM> on UNIX, or nothing on <EM>PC-Alpine</EM>.
3874 Alpinerc may be either a local file or a remote configuration folder.
3877 <DT> -passfile <EM>passfile</EM>
3879 <DD> This tells <EM>Alpine</EM> what file should be used as the password file.
3880 This should be a fully-qualified filename.
3883 <DT> -pinerc <EM>file</EM>
3885 <DD> Output fresh pinerc configuration to <EM>file</EM>, preserving the
3886 settings of variables that the user has made.
3887 Use <EM>file</EM> set to ``-'' to make output go to standard out.
3890 <DT> -r
3892 <DD> Restricted Mode:  For UNIX <EM>Alpine</EM> only.
3893 <EM>Alpine</EM> in restricted mode can only send email to itself.
3894 Save and export are limited.
3897 <DT> -registry <EM>cmd</EM>
3899 <DD> For <EM>PC-Alpine</EM> only, this option affects the values of 
3900 <EM>Alpine</EM>'s registry entries.
3901 Possible values for <EM>cmd</EM> are set, clear, and dump.
3902 <EM>Set</EM> will always reset <EM>Alpine</EM>'s registry 
3903 entries according to its current settings.
3904 <EM>Clear</EM> will clear the registry values.
3905 <EM>Clearsilent</EM> will clear the registry values without any dialogs.
3906 <EM>Dump</EM> will display the values of current registry settings.
3907 Note that the dump command is currently disabled.
3908 Without the -registry option, <EM>PC-Alpine</EM> will write values into
3909 the registry only if there currently aren't any values set.
3912 <DT> -sort <EM>key</EM>
3914 <DD> Sort-Key:  Specifies the order messages will be displayed in for the
3915 FOLDER INDEX screen.
3916 <EM>Key</EM> can have the following values: 
3917 arrival, date, subject, orderedsubj, thread, from, size, score, to, cc,
3918 arrival/reverse, date/reverse, subject/reverse, orderedsubj/reverse, thread/reverse,
3919 from/reverse, size/reverse, score/reverse, to/reverse, and cc/reverse.
3920 The default value is &quot;arrival&quot;.
3921 The <EM>key</EM> value reverse is equivalent to arrival/reverse.
3924 Configuration equivalent:  <EM><!--#echo var="VAR_sort-key"--></EM>.
3927 <DT> -uninstall
3929 <DD> For <EM>PC-Alpine</EM> only, this option removes references to Alpine
3930 in Windows settings.  The registry settings are removed and
3931 the password cache is cleared.
3934 <DT> -url <EM>url</EM>
3936 <DD> Open the given URL.
3939 <DT> -v
3941 <DD> Version:  Print version information to the screen.
3944 <DT> -x <EM>exceptions_config</EM>
3946 <DD> Configuration settings in the exceptions configuration override your normal
3947 default settings.
3948 <EM>Exceptions_config</EM> may be either a local file or a remote Alpine configuration folder.
3951 <DT> -z
3953 <DD> Enable Suspend:  When run with this flag, the key sequence ctrl-z
3954 will suspend the <EM>Alpine</EM> session.
3957 Configuration equivalent:  <EM><!--#echo var="FEAT_enable-suspend"--></EM> included in
3958 <EM>Feature-List</EM>.
3961 <DT> -<EM>option</EM>=<EM>value</EM>
3963 <DD> Assign <EM>value</EM> to the config option <EM>option</EM>.
3964 For example, <EM>-signature-file=sig1</EM> or
3965 <EM>-Feature-List=signature-at-bottom</EM>.
3966 Note:  Feature-List values are
3967 additive and features may be preceded with no- to turn them off.
3968 Also, as a special case, the &quot;Feature-List=&quot; part of that may be
3969 omitted. For example, <EM>-signature-at-bottom</EM> is equivalent to
3970 <EM>-Feature-List=signature-at-bottom</EM>.
3973 </DL>
3975 &lt;End of help on this topic&gt;
3976 </BODY>
3977 </HTML>
3978 ===== h_configuring_news ======
3979 <HTML>
3980 <HEAD>
3981 <TITLE>CONFIGURING NEWS</TITLE>
3982 </HEAD>
3983 <BODY>
3984 <H1>CONFIGURING NEWS</H1>
3985 Alpine can access news folders in any one of three different ways:
3986 <DL>
3987 <DT>REMOTE NNTP</DT>
3988 <DD>Using the Network News Transport Protocol (NNTP) to
3989 access news on a remote news server.  In this case the newsrc file is
3990 stored on the machine where Alpine is running.
3993 To specify a remote news-collection accessed via NNTP use the
3994 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
3995 Server: value to the NNTP server's hostname appended with the
3996 communication method &quot;/service=NNTP&quot;, and set the Path:
3997 value to the &quot;#news.&quot; namespace (without the quotes).  See
3998 the &quot;<A HREF="h_composer_cntxt_server">Server:</A>&quot; field's
3999 help text for a more complete explanation of access method, and the
4000 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
4001 text for a more complete explanation of &quot;namespace&quot;.
4003 Instead of specifying a news-collection, you may simply set the
4004 <A HREF="h_config_nntp_server">NNTP Server</A>
4005 option, which will cause Alpine to create a default news-collection for you.
4006 Another NNTP option that may be of interest is
4007 <A HREF="h_config_nntprange"><!--#echo var="VAR_nntp-range"--></A>.
4009 <DT>REMOTE IMAP</DT>
4010 <DD>Using the Internet Message Access Protocol (IMAP) to
4011 access news on a remote news server.  In this case, your newsrc file is
4012 stored on the news server, in your home directory, so you must have an
4013 account on the news server, but you would be running Alpine on a different
4014 machine.  The news server must be running an IMAPd server process. 
4017 To specify a remote news-collection accessed via IMAP use the
4018 SETUP/collectionList screen's &quot;Add&quot; command.  Set the
4019 Server: value to the IMAP server's hostname, and set the Path: value
4020 to the &quot;#news.&quot; namespace (without the quotes).  See the
4021 &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot; field's help
4022 text for a more complete explanation of &quot;namespace&quot;.
4024 </DD>
4026 <DT>LOCAL</DT>
4027 <DD>Using local file access to the news database.  In this
4028 case, your newsrc file is stored on the news server, in your home
4029 directory, so you must have an account on the news server, and you would
4030 be running Alpine on the same machine.
4033 To specify a local news-collection use the SETUP/collectionList
4034 screen's &quot;Add&quot; command.  Leave the Server: value blank, and
4035 set the Path: value to the &quot;#news.&quot; namespace (without the
4036 quotes).  See the &quot;<A HREF="h_composer_cntxt_path">Path:</A>&quot;
4037 field's help text for a more complete explanation of &quot;namespace&quot;.
4039 </DD>
4040 </DL>
4044 NOTE: Should no news-collection be defined as above, Alpine will
4045 automatically create one using the Setup/Config screen's
4046 &quot;<!--#echo var="VAR_nntp-server"-->&quot; variable's value if defined.  The collection
4047 will be created as a &quot;Remote NNTP&quot; as described above.
4051 If you are a PC-Alpine user, either option 1 (NNTP) or option 2 (IMAP) is
4052 possible.  If you don't have an account on the news server, or if the news
4053 server is not running an IMAP daemon, then you must use NNTP.  (If you are not
4054 sure, ask your service provider, university, or company for help.)  In
4055 this case, your Unix .newsrc file can be transferred to your PC.  A good
4056 place to put it would be in the same directory as your PINERC file, under
4057 the name NEWSRC, but you can 
4058 <A HREF="h_config_newsrc_path">specify a different location</A>
4059 via Alpine's Setup/Config screen.
4062 Other configuration features related to news are
4063 <A HREF="h_config_8bit_nntp"><!--#echo var="FEAT_enable-8bit-nntp-posting"--></A>.
4064 <A HREF="h_config_compose_news_wo_conf"><!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></A>,
4065 <A HREF="h_config_news_uses_recent"><!--#echo var="FEAT_news-approximates-new-status"--></A>,
4066 <A HREF="h_config_news_cross_deletes"><!--#echo var="FEAT_news-deletes-across-groups"--></A>,
4067 <A HREF="h_config_news_catchup"><!--#echo var="FEAT_news-offers-catchup-on-close"--></A>,
4068 <A HREF="h_config_post_wo_validation"><!--#echo var="FEAT_news-post-without-validation"--></A>,
4069 <A HREF="h_config_read_in_newsrc_order"><!--#echo var="FEAT_news-read-in-newsrc-order"--></A>, and
4070 <A HREF="h_config_quell_post_prompt"><!--#echo var="FEAT_quell-extra-post-prompt"--></A>.
4073 &lt;End of help on this topic&gt;
4074 </BODY>
4075 </HTML>
4076 ===== h_reading_news ======
4077 <HTML>
4078 <HEAD>
4079 <TITLE>READING NEWS</TITLE>
4080 </HEAD>
4081 <BODY>
4082 <H1>READING NEWS</H1>
4084 Alpine uses almost the same commands for manipulating news folders as for
4085 mail folders.  This means, for example, that when you are done with a
4086 message, you would use &quot;D&quot; to mark it as Deleted (or Dismissed,
4087 if you prefer.)  This &quot;mail-like&quot; behavior differs from that of
4088 most newsreaders, wherein a message is implicitly dismissed after you have
4089 looked at it once. We strongly believe that Alpine should offer as much
4090 consistency as possible between mail and news, so the mail paradigm --
4091 wherein a message does not magically disappear without explicit action by
4092 the user -- is used for news as well. <P>
4094 If you answer a message in a news folder, the index view will show the
4095 &quot;A&quot; flag as usual; but the industry standard file Alpine uses to
4096 keep track of what news as been read has no way of storing this flag, so
4097 it will not be preserved across sessions.  The Deleted flag is the only
4098 one that is preserved when you leave and then return to a newsgroup.  As an
4099 additional note on replies, when you Reply to a newsgroup message and say
4100 you want to reply to all recipients, Alpine will ask if you want to post the
4101 message to all the newsgroups listed in the original message. <P>
4103 If you would like Alpine to mark more-or-less recent news messages as
4104 &quot;New&quot;, then set the
4105 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
4106 feature (which is set by default).  This will cause messages after the last one you have marked as
4107 Deleted to appear with &quot;N&quot; status in the MESSAGE INDEX.  The
4108 &quot;N&quot; status often makes it easier to distinguish later news
4109 articles from those you've previously seen, but not yet disposed of via
4110 the &quot;D&quot; key.  Note that this is an approximation, not an exact
4111 record of which messages you have not seen.
4114 A frequent operation in news-reading is &quot;catching up&quot; -- that
4115 is, getting rid of all the messages in the newsgroup so that you can
4116 &quot;start fresh.&quot;  The easiest way to do this in Alpine is via the
4117 Select command.  You would enter the following four keystrokes:
4118 <tt>;aad</tt> to select all messaged, and then apply the delete (or
4119 dismiss) command to all of them.
4122 There are also additional details on 
4123 <A HREF="h_configuring_news">configuring news</a>.
4126 &lt;End of help on this topic&gt;
4127 </BODY>
4128 </HTML>
4129 ====== h_help_index ======
4130 <HTML>
4131 <HEAD>
4132 <TITLE>Help Index</TITLE>
4133 </HEAD>
4134 <BODY>
4135 <H1>Help Index</H1>
4136 <ul>
4137 <li><a href="h_mainhelp_abooks">Address Books</a></li>
4138 <li><a href="h_abook_top">ADDRESS BOOK LIST COMMANDS</a>
4139 <li><a href="h_main_addrbook">Address Book Command</a>
4140 <li><a href="h_abook_view">Address Book View Explained</a>
4141 <li><a href="h_compose_addrcomplete">Address Completion</a>
4142 <li><a href="h_abook_select_listmode">Address Listmode Selection from Composer Explained</a>
4143 <li><a href="h_abook_select_checks">Address Selection from Composer Explained</a>
4144 <li><a href="h_composer_abook_comment">Addressbook Comment Explained</a>
4145 <li><a href="h_composer_abook_fcc">Addressbook Fcc Explained</a>
4146 <li><a href="h_composer_abook_add_folder">Addressbook Folder Name Field Explained</a>
4147 <li><a href="h_composer_abook_full">Addressbook Fullname Explained</a>
4148 <li><a href="h_composer_abook_add_nick">Addressbook NickName Field Explained</a>
4149 <li><a href="h_composer_abook_nick">Addressbook Nickname Explained</a>
4150 <li><a href="h_abook_select_addr">Addressbook Selection Explained</a>
4151 <li><a href="h_abook_select_top">Addressbook Selection Navigation Explained</a>
4152 <li><a href="h_composer_abook_add_server">Addressbook Server Name Field Explained</a>
4153 <li><a href="h_mainhelp_aggops">Aggregate Operations</a>
4154 <li><a href="h_mainhelp_config">Alpine Configuration</a>
4155 <li><a href="h_mainhelp_pinehelp">Alpine Help</a>
4156 <li><a href="h_news_legal">Alpine Legal Notices</a>
4157 <li><a href="h_compose_alted">Alt Editor Command</a>
4158 <li><a href="h_index_cmd_apply">Apply Command</a>
4159 <li><a href="h_attachment_screen">Attachment Index Screen Explained</a>
4160 <li><a href="h_mail_text_att_view">Attachment View Screen Explained</a>
4161 <li><a href="h_mainhelp_filtering">Blocking Messages</a>
4162 <li><a href="h_composer_browse">BROWSER</a>
4163 <li><a href="h_common_bounce">Bounce Command</a>
4164 <li><a href="h_compose_cancel">Cancel Command</a>
4165 <li><a href="h_config_change_your_from">Changing your From Address</a>
4166 <li><a href="h_collection_screen">COLLECTION LIST screen</a>
4167 <li><a href="h_mainhelp_color">Color</a>
4168 <li><a href="h_composer_ctrl_j">COMPOSER ATTACH</a>
4169 <li><a href="h_composer">COMPOSER COMMANDS</a>
4170 <li><a href="h_mainhelp_composing">Composing Messages</a>
4171 <li><a href="h_mainhelp_collections">Collection Lists</a>
4172 <li><a href="h_composer_cntxt_nick">Collection Nickname Explained</a>
4173 <li><a href="h_composer_cntxt_path">Collection Path: Explained</a>
4174 <li><a href="h_composer_cntxt_server">Collection Server: Explained</a>
4175 <li><a href="h_composer_cntxt_view">Collection View: Explained</a>
4176 <li><a href="h_mainhelp_cmdlineopts">Command Line Options</a>
4177 <li><a href="h_common_compose">Compose Command</a>
4178 <li><a href="h_edit_nav_cmds">Composer Editing Commands Explained</a>
4179 <li><a href="h_common_conditional_cmds">Conditional Commands</a>
4180 <li><a href="h_reply_token_conditionals">Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</a>
4181 <li><a href="h_mainhelp_config">Configuration</a>
4182 <li><a href="h_composer_custom_free">CUSTOMIZED HEADER FIELD</a>
4183 <li><a href="h_config_dflt_color">Default Color</a>
4184 <li><a href="h_common_delete">Delete and Undelete Commands</a>
4185 <li><a href="h_composer_qserv_cn">Directory Query Form Explained</a>
4186 <li><a href="h_special_list_commands">Email List Commands Explained</a>
4187 <li><a href="h_composer_search">Explanation of Composer Whereis Command </a>
4188 <li><a href="h_folder_open">Explanation of Folder Selection</a>
4189 <li><a href="h_special_xon_xoff">Explanation of Alpine's XOFF/XON Handling</a>
4190 <li><a href="h_valid_folder_names">Explanation of Valid Folder Names</a>
4191 <li><a href="h_ge_export">Export File Selection</a>
4192 <li><a href="h_ge_allparts">Export Message File Selection</a>
4193 <li><a href="h_index_cmd_expunge">Expunge/Exclude Command</a>
4194 <li><a href="h_info_on_locking">FAQs on Alpine Locking</a>
4195 <li><a href="h_config_allow_chg_from">FEATURE: <!--#echo var="FEAT_allow-changing-from"--></a>
4196 <li><a href="h_config_allow_talk">FEATURE: <!--#echo var="FEAT_allow-talk"--></a>
4197 <li><a href="h_config_alt_compose_menu">FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></a>
4198 <li><a href="h_config_alt_role_menu">FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></a>
4199 <li><a href="h_config_alt_reply_menu">FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></a>
4200 <li><a href="h_config_force_low_speed">FEATURE: <!--#echo var="FEAT_assume-slow-link"--></a>
4201 <li><a href="h_config_auto_read_msgs">FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></a>
4202 <li><a href="h_config_auto_open_unread">FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></a>
4203 <li><a href="h_config_auto_unselect">FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></a>
4204 <li><a href="h_config_auto_unzoom">FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></a>
4205 <li><a href="h_config_auto_zoom">FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></a>
4206 <li><a href="h_config_use_boring_spinner">FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></a>
4207 <li><a href="h_config_check_mail_onquit">FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></a>
4208 <li><a href="h_config_combined_abook_display">FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></a>
4209 <li><a href="h_config_combined_folder_display">FEATURE: <!--#echo var="FEAT_combined-folder-display"--></a>
4210 <li><a href="h_config_combined_subdir_display">FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></a>
4211 <li><a href="h_config_cancel_confirm">FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></a>
4212 <li><a href="h_config_lame_list_mode">FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></a>
4213 <li><a href="h_config_compose_rejects_unqual">FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></a>
4214 <li><a href="h_config_send_filter_dflt">FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></a>
4215 <li><a href="h_config_compose_news_wo_conf">FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></a>
4216 <li><a href="h_config_del_from_dot">FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></a>
4217 <li><a href="h_config_compose_maps_del">FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></a>
4218 <li><a href="h_config_confirm_role">FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></a>
4219 <li><a href="h_config_tab_no_prompt">FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></a>
4220 <li><a href="h_config_dates_to_local">FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></a>
4221 <li><a href="h_config_copy_to_to_from">FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></a>
4222 <li><a href="h_config_del_skips_del">FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></a>
4223 <li><a href="h_config_disable_config_cmd">FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></a>
4224 <li><a href="h_config_disable_index_locale_dates">FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></a>
4225 <li><a href="h_config_disable_kb_lock">FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></a>
4226 <li><a href="h_config_blank_keymenu">FEATURE: <!--#echo var="FEAT_disable-keymenu"--></a>
4227 <li><a href="h_config_disable_password_caching">FEATURE: <!--#echo var="FEAT_disable-password-caching"--></a>
4228 <li><a href="h_config_disable_password_cmd">FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></a>
4229 <li><a href="h_config_disable_pipes_in_sigs">FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></a>
4230 <li><a href="h_config_disable_pipes_in_templates">FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></a>
4231 <li><a href="h_config_disable_regex">FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
4232 <li><a href="h_config_disable_roles_setup">FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></a>
4233 <li><a href="h_config_disable_roles_sigedit">FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></a>
4234 <li><a href="h_config_disable_roles_templateedit">FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></a>
4235 <li><a href="h_config_input_history">FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></a>
4236 <li><a href="h_config_disable_collate">FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></a>
4237 <li><a href="h_config_disable_shared">FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></a>
4238 <li><a href="h_config_disable_signature_edit">FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></a>
4239 <li><a href="h_config_take_fullname">FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></a>
4240 <li><a href="h_config_take_lastfirst">FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></a>
4241 <li><a href="h_config_disable_reset_disp">FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></a>
4242 <li><a href="h_config_disable_sender">FEATURE: <!--#echo var="FEAT_disable-sender"--></a>
4243 <li><a href="h_config_quell_dead_letter">FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></a>
4244 <li><a href="h_config_quell_flowed_text">FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></a>
4245 <li><a href="h_downgrade_multipart_to_text">FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></a>
4246 <li><a href="h_config_8bit_smtp">FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></a>
4247 <li><a href="h_config_8bit_nntp">FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></a>
4248 <li><a href="h_config_enable_agg_ops">FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></a>
4249 <li><a href="h_config_enable_alt_ed">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></a>
4250 <li><a href="h_config_alt_ed_now">FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></a>
4251 <li><a href="h_config_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></a>
4252 <li><a href="h_config_relaxed_arrow_nav">FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></a>
4253 <li><a href="h_config_compose_bg_post">FEATURE: <!--#echo var="FEAT_enable-background-sending"--></a>
4254 <li><a href="h_config_enable_bounce">FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></a>
4255 <li><a href="h_config_cruise_mode">FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></a>
4256 <li><a href="h_config_cruise_mode_delete">FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></a>
4257 <li><a href="h_config_compose_dsn">FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></a>
4258 <li><a href="h_config_enable_dot_files">FEATURE: <!--#echo var="FEAT_enable-dot-files"--></a>
4259 <li><a href="h_config_enable_lessthan_exit">FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></a>
4260 <li><a href="h_config_fast_recent">FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></a>
4261 <li><a href="h_config_enable_flag">FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></a>
4262 <li><a href="h_config_flag_screen_default">FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></a>
4263 <li><a href="h_config_flag_screen_kw_shortcut">FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></a>
4264 <li><a href="h_config_enable_full_hdr_and_text">FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></a>
4265 <li><a href="h_config_enable_full_hdr">FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></a>
4266 <li><a href="h_config_allow_goto">FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></a>
4267 <li><a href="h_config_enable_dot_folders">FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></a>
4268 <li><a href="h_config_enable_incoming">FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></a>
4269 <li><a href="h_config_enable_incoming_checking">FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></a>
4270 <li><a href="h_config_enable_jump">FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></a>
4271 <li><a href="h_config_show_delay_cue">FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></a>
4272 <li><a href="h_config_mailcap_params">FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></a>
4273 <li><a href="h_config_enable_mouse">FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></a>
4274 <li><a href="h_config_enable_view_addresses">FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></a>
4275 <li><a href="h_config_enable_view_attach">FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></a>
4276 <li><a href="h_config_enable_view_arrows">FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></a>
4277 <li><a href="h_config_enable_view_url">FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></a>
4278 <li><a href="h_config_enable_view_web_host">FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></a>
4279 <li><a href="h_config_enable_mulnewsrcs">FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></a>
4280 <li><a href="h_config_enable_xterm_newmail">FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></a>
4281 <li><a href="h_config_enable_newmail_short_text">FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>
4282 <li><a href="h_config_sub_lists">FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></a>
4283 <li><a href="h_config_enable_y_print">FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></a>
4284 <li><a href="h_config_prefix_editing">FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></a>
4285 <li><a href="h_config_enable_search_and_repl">FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></a>
4286 <li><a href="h_config_sigdashes">FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></a>
4287 <li><a href="h_config_new_thread_blank_subject">FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></a>
4288 <li><a href="h_config_can_suspend">FEATURE: <!--#echo var="FEAT_enable-suspend"--></a>
4289 <li><a href="h_config_enable_tab_complete">FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></a>
4290 <li><a href="h_config_enable_take_export">FEATURE: <!--#echo var="FEAT_enable-take-export"--></a>
4291 <li><a href="h_config_enable_role_take">FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></a>
4292 <li><a href="h_config_tray_icon">FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></a>
4293 <li><a href="h_config_enable_pipe">FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></a>
4294 <li><a href="h_config_verbose_post">FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></a>
4295 <li><a href="h_config_expanded_addrbooks">FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></a>
4296 <li><a href="h_config_expanded_distlists">FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></a>
4297 <li><a href="h_config_expanded_folders">FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></a>
4298 <li><a href="h_config_expose_hidden_config">FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></a>
4299 <li><a href="h_config_expunge_manually">FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></a>
4300 <li><a href="h_config_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></a>
4301 <li><a href="h_config_full_auto_expunge">FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></a>
4302 <li><a href="h_config_no_fcc_attach">FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></a>
4303 <li><a href="h_config_force_arrow">FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></a>
4304 <li><a href="h_config_ignore_size">FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></a>
4305 <li><a href="h_config_forward_as_attachment">FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></a>
4306 <li><a href="h_config_preserve_field">FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></a>
4307 <li><a href="h_config_quell_empty_dirs">FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></a>
4308 <li><a href="h_config_hide_nntp_path">FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></a>
4309 <li><a href="h_config_attach_in_reply">FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></a>
4310 <li><a href="h_config_fcc_on_bounce">FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></a>
4311 <li><a href="h_config_include_header">FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></a>
4312 <li><a href="h_config_auto_include_reply">FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></a>
4313 <li><a href="h_config_incoming_checking_total">FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></a>
4314 <li><a href="h_config_incoming_checking_recent">FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></a>
4315 <li><a href="h_config_add_ldap">FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></a>
4316 <li><a href="h_config_maildrops_preserve_state">FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></a>
4317 <li><a href="h_config_mark_fcc_seen">FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></a>
4318 <li><a href="h_config_mark_for_cc">FEATURE: <!--#echo var="FEAT_mark-for-cc"--></a>
4319 <li><a href="h_config_mulnews_as_typed">FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></a>
4320 <li><a href="h_config_news_uses_recent">FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></a>
4321 <li><a href="h_config_news_cross_deletes">FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></a>
4322 <li><a href="h_config_news_catchup">FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></a>
4323 <li><a href="h_config_post_wo_validation">FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></a>
4324 <li><a href="h_config_read_in_newsrc_order">FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></a>
4325 <li><a href="h_config_nntp_search_uses_overview">FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></a>
4326 <li><a href="h_config_thread_sorts_by_arrival">FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></a>
4327 <li><a href="h_config_expunge_inbox">FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></a>
4328 <li><a href="h_config_expunge_stayopens">FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></a>
4329 <li><a href="h_config_pass_c1_control">FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></a>
4330 <li><a href="h_config_pass_control">FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></a>
4331 <li><a href="h_config_predict_nntp_server">FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></a>
4332 <li><a href="h_config_prefer_plain_text">FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></a>
4333 <li><a href="h_config_preopen_stayopens">FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></a>
4334 <li><a href="h_config_preserve_start_stop">FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></a>
4335 <li><a href="h_config_quell_folder_internal_msg">FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></a>
4336 <li><a href="h_config_quell_checks_comp">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></a>
4337 <li><a href="h_config_quell_checks_comp_inbox">FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></a>
4338 <li><a href="h_config_quell_partial">FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></a>
4339 <li><a href="h_config_quell_local_lookup">FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></a>
4340 <li><a href="h_config_ff_between_msgs">FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></a>
4341 <li><a href="h_config_print_from">FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></a>
4342 <li><a href="h_config_print_index">FEATURE: <!--#echo var="FEAT_print-index-enabled"--></a>
4343 <li><a href="h_config_custom_print">FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></a>
4344 <li><a href="h_config_prune_uses_iso">FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></a>
4345 <li><a href="h_config_quell_personal_name_prompt">FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></a>
4346 <li><a href="h_config_quell_ssl_largeblocks">FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></a>
4347 <li><a href="h_config_quell_user_id_prompt">FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></a>
4348 <li><a href="h_config_quit_wo_confirm">FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></a>
4349 <li><a href="h_config_quote_replace_noflow">FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></a>
4350 <li><a href="h_config_next_thrd_wo_confirm">FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></a>
4351 <li><a href="h_config_auto_reply_to">FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></a>
4352 <li><a href="h_config_inbox_no_confirm">FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></a>
4353 <li><a href="h_config_save_aggregates">FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></a>
4354 <li><a href="h_config_save_part_wo_confirm">FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></a>
4355 <li><a href="h_config_save_advances">FEATURE: <!--#echo var="FEAT_save-will-advance"--></a>
4356 <li><a href="h_config_save_wont_delete">FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></a>
4357 <li><a href="h_config_quote_all_froms">FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></a>
4358 <li><a href="h_config_scramble_message_id">FEATURE: <!--#echo var="FEAT_scramble-message-id"--></a>
4359 <li><a href="h_config_select_wo_confirm">FEATURE: <!--#echo var="FEAT_select-without-confirm"--></a>
4360 <li><a href="h_config_auto_fcc_only">FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></a>
4361 <li><a href="h_config_send_wo_confirm">FEATURE: <!--#echo var="FEAT_send-without-confirm"--></a>
4362 <li><a href="h_config_separate_fold_dir_view">FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></a>
4363 <li><a href="h_config_show_cursor">FEATURE: <!--#echo var="FEAT_show-cursor"--></a>
4364 <li><a href="h_config_textplain_int">FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></a>
4365 <li><a href="h_config_select_in_bold">FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></a>
4366 <li><a href="h_config_show_sort">FEATURE: <!--#echo var="FEAT_show-sort"--></a>
4367 <li><a href="h_config_single_list">FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></a>
4368 <li><a href="h_config_sig_at_bottom">FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></a>
4369 <li><a href="h_config_slash_coll_entire">FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></a>
4370 <li><a href="h_config_sort_fcc_alpha">FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></a>
4371 <li><a href="h_config_sort_save_alpha">FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></a>
4372 <li><a href="h_config_always_spell_check">FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></a>
4373 <li><a href="h_config_winpos_in_config">FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></a>
4374 <li><a href="h_config_strip_sigdashes">FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>
4375 <li><a href="h_config_strip_ws_before_send">FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></a>
4376 <li><a href="h_config_quells_asterisks">FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></a>
4377 <li><a href="h_config_quell_attach_ext_warn">FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></a>
4378 <li><a href="h_config_quell_attach_extra_prompt">FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></a>
4379 <li><a href="h_config_no_bezerk_zone">FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></a>
4380 <li><a href="h_config_quell_charset_warning">FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></a>
4381 <li><a href="h_config_quell_content_id">FEATURE: <!--#echo var="FEAT_quell-content-id"--></a>
4382 <li><a href="h_config_quell_post_prompt">FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></a>
4383 <li><a href="h_config_quell_filtering_done_message">FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></a>
4384 <li><a href="h_config_quell_filtering_messages">FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></a>
4385 <li><a href="h_config_quell_full_hdr_reset">FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></a>
4386 <li><a href="h_config_quell_imap_env">FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></a>
4387 <li><a href="h_config_quell_lock_failure_warnings">FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></a>
4388 <li><a href="h_config_quell_domain_warn">FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></a>
4389 <li><a href="h_config_quell_news_env">FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></a>
4390 <li><a href="h_config_quell_host_after_url">FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></a>
4391 <li><a href="h_config_quell_beeps">FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></a>
4392 <li><a href="h_config_quell_tz_comment">FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></a>
4393 <li><a href="h_config_suppress_user_agent">FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></a>
4394 <li><a href="h_config_tab_checks_recent">FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></a>
4395 <li><a href="h_config_tab_uses_unseen">FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></a>
4396 <li><a href="h_config_tab_new_only">FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></a>
4397 <li><a href="h_config_termcap_wins">FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></a>
4398 <li><a href="h_config_color_thrd_import">FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></a>
4399 <li><a href="h_config_alt_auth">FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></a>
4400 <li><a href="h_config_unsel_wont_advance">FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></a>
4401 <li><a href="h_config_use_current_dir">FEATURE: <!--#echo var="FEAT_use-current-dir"--></a>
4402 <li><a href="h_config_use_fk">FEATURE: <!--#echo var="FEAT_use-function-keys"--></a>
4403 <li><a href="h_config_use_reg_start_for_stayopen">FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></a>
4404 <li><a href="h_config_use_resentto">FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></a>
4405 <li><a href="h_config_use_sender_not_x">FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></a>
4406 <li><a href="h_config_suspend_spawns">FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></a>
4407 <li><a href="h_config_use_system_translation">FEATURE: Use System Translation</a>
4408 <li><a href="h_config_vertical_list">FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></a>
4409 <li><a href="h_config_warn_if_fcc_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></a>
4410 <li><a href="h_config_warn_if_subj_blank">FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></a>
4411 <li><a href="h_config_warn_if_no_to_or_cc">FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></a>
4412 <li><a href="h_mainhelp_filtering">Filtering</a>
4413 <li><a href="h_finding_help">Finding more information and requesting help</a>
4414 <li><a href="h_common_flag">Flag Command</a>
4415 <li><a href="h_config_quell_flowed_text">Flowed Text</a>
4416 <li><a href="h_mainhelp_folders">Folders</a>
4417 <li><a href="h_what_are_collections">Folder Collections Explained</a>
4418 <li><a href="h_common_folders">Folder List Command</a>
4419 <li><a href="h_folder_fcc">Folder Select for Fcc Explained</a>
4420 <li><a href="h_folder_save">Folder Select for Save Explained</a>
4421 <li><a href="h_folder_server_syntax">Folder Server Name Syntax</a>
4422 <li><a href="h_config_change_your_from">From Address, Changing</a>
4423 <li><a href="main_menu_tx">GENERAL INFORMATION ON THE ALPINE MESSAGE SYSTEM</a>
4424 <li><a href="h_pine_for_windows">GETTING HELP IN ALPINE</a>
4425 <li><a href="h_common_goto">Goto Command</a>
4426 <li><a href="h_common_hdrmode">HdrMode Command</a>
4427 <li><a href="h_mainhelp_pinehelp">Help</a>
4428 <li><a href="h_special_help_nav">Help Text Navigation Explained</a>
4429 <li><a href="h_folder_maint">Help for Folder List</a>
4430 <li><a href="h_valid_folder_names">IMAP</a>
4431 <li><a href="h_ge_import">Import File Selection</a>
4432 <li><a href="h_mainhelp_index">Index of Messages</a>
4433 <li><a href="h_composer_ins_m">INSERT MESSAGE</a>
4434 <li><a href="h_composer_ins">INSERT TEXT FILE</a>
4435 <li><a href="h_address_format">INTERNET EMAIL ADDRESS FORMAT</a>
4436 <li><a href="h_info_on_mbox">Information on mbox driver</a>
4437 <li><a href="h_mainhelp_intro">Introduction</a>
4438 <li><a href="h_main_journal">Journal Command</a>
4439 <li><a href="h_common_jump">Jump Command</a>
4440 <li><a href="h_compose_justify">Justify Command</a>
4441 <li><a href="h_main_kblock">Keyboard Lock Command</a>
4442 <li><a href="h_mainhelp_keywords">Keywords (or Flags, or Labels)</a>
4443 <li><a href="h_mainhelp_ldap">LDAP</a>
4444 <li><a href="h_config_ldap_opts_tls">LDAP FEATURE: Attempt-TLS-On-Connection</a>
4445 <li><a href="h_config_ldap_opts_nosub">LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</a>
4446 <li><a href="h_config_ldap_opts_rhs">LDAP FEATURE: Lookup-Addrbook-Contents</a>
4447 <li><a href="h_config_ldap_opts_tlsmust">LDAP FEATURE: Require-TLS-On-Connection</a>
4448 <li><a href="h_config_ldap_opts_ldaps">LDAP FEATURE: Require-LDAPS-On-Connection</a>
4449 <li><a href="h_config_ldap_opts_ref">LDAP FEATURE: Save-Search-Criteria-Not-Result</a>
4450 <li><a href="h_config_ldap_opts_impl">LDAP FEATURE: Use-Implicitly-From-Composer</a>
4451 <li><a href="h_config_ldap_binddn">LDAP OPTION: Bind-DN</a>
4452 <li><a href="h_config_ldap_cust">LDAP OPTION: Custom-Search-Filter</a>
4453 <li><a href="h_config_ldap_email_attr">LDAP OPTION: EmailAttribute</a>
4454 <li><a href="h_config_ldap_gn_attr">LDAP OPTION: GivennameAttribute</a>
4455 <li><a href="h_config_ldap_server">LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></a>
4456 <li><a href="h_config_ldap_cn_attr">LDAP OPTION: NameAttribute</a>
4457 <li><a href="h_config_ldap_nick">LDAP OPTION: Nickname</a>
4458 <li><a href="h_config_ldap_port">LDAP OPTION: Port</a>
4459 <li><a href="h_config_ldap_base">LDAP OPTION: Search-Base</a>
4460 <li><a href="h_config_ldap_searchrules">LDAP OPTION: Search-Rule</a>
4461 <li><a href="h_config_ldap_searchtypes">LDAP OPTION: Search-Type</a>
4462 <li><a href="h_config_ldap_size">LDAP OPTION: Sizelimit</a>
4463 <li><a href="h_config_ldap_sn_attr">LDAP OPTION: SurnameAttribute</a>
4464 <li><a href="h_config_ldap_time">LDAP OPTION: Timelimit</a>
4465 <li><a href="h_ldap_view">LDAP Response View Explained</a>
4466 <li><a href="h_maildrop">Mail Drop: What is it?</a>
4467 <li><a href="h_mainhelp_mainmenu">MAIN MENU</a>
4468 <li><a href="h_mail_index">MESSAGE INDEX COMMANDS</a>
4469 <li><a href="h_mail_view">MESSAGE TEXT SCREEN</a>
4470 <li><a href="h_compose_markcutpaste">Mark, Cut and Paste Commands</a>
4471 <li><a href="h_common_index">Message Index Command</a>
4472 <li><a href="h_mainhelp_mouse">Mouse</a>
4473 <li><a href="h_mainhelp_aggops">Multiple Message Operations</a>
4474 <li><a href="new_user_greeting">NEW USER GREETING</a>
4475 <li><a href="new_version_greeting">NEW VERSION GREETING</a>
4476 <li><a href="h_mainhelp_readingnews">News Reading</a>
4477 <li><a href="h_folder_subscribe">Newsgroup Subcribe Screen explained</a>
4478 <li><a href="h_folder_postnews">Newsgroup selecting for Posting explained</a>
4479 <li><a href="h_common_nextnew">NextNew Command</a>
4480 <li><a href="h_abook_select_nick">Nickname Selection Explained</a>
4481 <li><a href="h_mainhelp_readingnews">NNTP</a>
4482 <li><a href="h_config_address_book">OPTION: <!--#echo var="VAR_address-book"--></a>
4483 <li><a href="h_config_abook_formats">OPTION: <!--#echo var="VAR_addressbook-formats"--></a>
4484 <li><a href="h_config_ab_sort_rule">OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></a>
4485 <li><a href="h_config_alt_addresses">OPTION: <!--#echo var="VAR_alt-addresses"--></a>
4486 <li><a href="h_config_active_msg_interval">OPTION: <!--#echo var="VAR_busy-cue-rate"--></a>
4487 <li><a href="h_config_color_style">OPTION: Color Style</a>
4488 <li><a href="h_config_wordseps">OPTION: <!--#echo var="VAR_composer-word-separators"--></a>
4489 <li><a href="h_config_composer_wrap_column">OPTION: <!--#echo var="VAR_composer-wrap-column"--></a>
4490 <li><a href="h_config_index_color_style">OPTION: <!--#echo var="VAR_current-indexline-style"--></a>
4491 <li><a href="h_config_cursor_style">OPTION: Cursor Style</a>
4492 <li><a href="h_config_custom_hdrs">OPTION: <!--#echo var="VAR_customized-hdrs"--></a>
4493 <li><a href="h_config_deadlets">OPTION: <!--#echo var="VAR_dead-letter-files"--></a>
4494 <li><a href="h_config_comp_hdrs">OPTION: <!--#echo var="VAR_default-composer-hdrs"--></a>
4495 <li><a href="h_config_default_fcc">OPTION: <!--#echo var="VAR_default-fcc"--></a>
4496 <li><a href="h_config_def_save_folder">OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></a>
4497 <li><a href="h_config_disable_auths">OPTION: <!--#echo var="VAR_disable-these-authenticators"--></a>
4498 <li><a href="h_config_encryption_range">OPTION: <!--#echo var="VAR_encryption-protocol-range"--></a>
4499 <li><a href="h_config_disable_drivers">OPTION: <!--#echo var="VAR_disable-these-drivers"--></a>
4500 <li><a href="h_config_char_set">OPTION: Display Character Set</a>
4501 <li><a href="h_config_display_filters">OPTION: <!--#echo var="VAR_display-filters"--></a>
4502 <li><a href="h_config_download_cmd">OPTION: <!--#echo var="VAR_download-command"--></a>
4503 <li><a href="h_config_download_prefix">OPTION: <!--#echo var="VAR_download-command-prefix"--></a>
4504 <li><a href="h_config_editor">OPTION: <!--#echo var="VAR_editor"--></a>
4505 <li><a href="h_config_empty_hdr_msg">OPTION: <!--#echo var="VAR_empty-header-message"--></a>
4506 <li><a href="h_config_fcc_rule">OPTION: <!--#echo var="VAR_fcc-name-rule"--></a>
4507 <li><a href="h_config_file_dir">OPTION: File Directory</a>
4508 <li><a href="h_config_folder_spec">OPTION: <!--#echo var="VAR_folder-collections"--></a>
4509 <li><a href="h_config_reopen_rule">OPTION: <!--#echo var="VAR_folder-reopen-rule"--></a>
4510 <li><a href="h_config_fld_sort_rule">OPTION: <!--#echo var="VAR_folder-sort-rule"--></a>
4511 <li><a href="h_config_font_char_set">OPTION: Font Character Set</a>
4512 <li><a href="h_config_font_name">OPTION: Font Name</a>
4513 <li><a href="h_config_font_size">OPTION: Font Size</a>
4514 <li><a href="h_config_font_style">OPTION: Font Style</a>
4515 <li><a href="h_config_form_folder">OPTION: <!--#echo var="VAR_form-letter-folder"--></a>
4516 <li><a href="h_config_glob_addrbook">OPTION: <!--#echo var="VAR_global-address-book"--></a>
4517 <li><a href="h_config_goto_default">OPTION: <!--#echo var="VAR_goto-default-rule"--></a>
4518 <li><a href="h_config_header_general_color">OPTION: Header General Color</a>
4519 <li><a href="h_config_image_viewer">OPTION: <!--#echo var="VAR_image-viewer"--></a>
4520 <li><a href="h_config_inbox_path">OPTION: <!--#echo var="VAR_inbox-path"--></a>
4521 <li><a href="h_config_archived_folders">OPTION: <!--#echo var="VAR_incoming-archive-folders"--></a>
4522 <li><a href="h_config_psleep">OPTION: <!--#echo var="VAR_mailcap-check-interval"--></a>
4523 <li><a href="h_config_incoming_interv">OPTION: <!--#echo var="VAR_incoming-check-interval"--></a>
4524 <li><a href="h_config_incoming_second_interv">OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></a>
4525 <li><a href="h_config_incoming_list">OPTION: <!--#echo var="VAR_incoming-check-list"--></a>
4526 <li><a href="h_config_incoming_timeo">OPTION: <!--#echo var="VAR_incoming-check-timeout"--></a>
4527 <li><a href="h_config_incoming_folders">OPTION: <!--#echo var="VAR_incoming-folders"--></a>
4528 <li><a href="h_config_inc_startup">OPTION: <!--#echo var="VAR_incoming-startup-rule"--></a>
4529 <li><a href="h_config_incunseen_color">OPTION: Incoming Unseen Color</a>
4530 <li><a href="h_config_index_arrow_color">OPTION: Index Arrow Color</a>
4531 <li><a href="h_config_index_color">OPTION: Index Colors</a>
4532 <li><a href="h_config_index_format">OPTION: <!--#echo var="VAR_index-format"--></a>
4533 <li><a href="h_config_index_from_color">OPTION: Index From Color</a>
4534 <li><a href="h_config_index_opening_color">OPTION: Index Opening Color</a>
4535 <li><a href="h_config_index_pri_color">OPTION: Index Priority Symbol Colors</a>
4536 <li><a href="h_config_index_subject_color">OPTION: Index Subject Color</a>
4537 <li><a href="h_config_init_cmd_list">OPTION: <!--#echo var="VAR_initial-keystroke-list"--></a>
4538 <li><a href="h_config_key_char_set">OPTION: Keyboard Character Set</a>
4539 <li><a href="h_config_keylabel_color">OPTION: KeyLabel Color</a>
4540 <li><a href="h_config_keyname_color">OPTION: KeyName Color</a>
4541 <li><a href="h_config_keywords">OPTION: <!--#echo var="VAR_keywords"--></a>
4542 <li><a href="h_config_kw_color">OPTION: Keyword Colors</a>
4543 <li><a href="h_config_kw_braces">OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></a>
4544 <li><a href="h_config_prune_date">OPTION: <!--#echo var="VAR_last-time-prune-questioned"--></a>
4545 <li><a href="h_config_last_vers">OPTION: <!--#echo var="VAR_last-version-used"--></a>
4546 <li><a href="h_config_literal_sig">OPTION: <!--#echo var="VAR_literal-signature"--></a>
4547 <li><a href="h_config_mailcheck">OPTION: <!--#echo var="VAR_mail-check-interval"--></a>
4548 <li><a href="h_config_mailchecknoncurr">OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></a>
4549 <li><a href="h_config_mailcap_path">OPTION: <!--#echo var="VAR_mailcap-search-path"--></a>
4550 <li><a href="h_config_maildropcheck">OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></a>
4551 <li><a href="h_config_maxremstream">OPTION: <!--#echo var="VAR_max-remote-connections"--></a>
4552 <li><a href="h_config_metamsg_color">OPTION: Meta-Message Color</a>
4553 <li><a href="h_config_mimetype_path">OPTION: <!--#echo var="VAR_mimetype-search-path"--></a>
4554 <li><a href="h_config_new_ver_quell">OPTION: <!--#echo var="VAR_new-version-threshold"--></a>
4555 <li><a href="h_config_fifopath">OPTION: NewMail FIFO Path</a>
4556 <li><a href="h_config_newmailwidth">OPTION: <!--#echo var="VAR_newmail-window-width"--></a>
4557 <li><a href="h_config_news_active">OPTION: <!--#echo var="VAR_news-active-file-path"--></a>
4558 <li><a href="h_config_news_spec">OPTION: <!--#echo var="VAR_news-collections"--></a>
4559 <li><a href="h_config_news_spool">OPTION: <!--#echo var="VAR_news-spool-directory"--></a>
4560 <li><a href="h_config_newsrc_path">OPTION: <!--#echo var="VAR_newsrc-path"--></a>
4561 <li><a href="h_config_nntprange">OPTION: <!--#echo var="VAR_nntp-range"--></a>
4562 <li><a href="h_config_nntp_server">OPTION: <!--#echo var="VAR_nntp-server"--></HEAD></a>
4563 <li><a href="h_config_normal_color">OPTION: Normal Color</a>
4564 <li><a href="h_config_opening_sep">OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></a>
4565 <li><a href="h_config_oper_dir">OPTION: <!--#echo var="VAR_operating-dir"--></a>
4566 <li><a href="h_config_pat_old">OPTION: Patterns</a>
4567 <li><a href="h_config_pat_filts">OPTION: <!--#echo var="VAR_patterns-filters2"--></a>
4568 <li><a href="h_config_pat_other">OPTION: <!--#echo var="VAR_patterns-other"--></a>
4569 <li><a href="h_config_pat_roles">OPTION: <!--#echo var="VAR_patterns-roles"--></a>
4570 <li><a href="h_config_pat_scores">OPTION: <!--#echo var="VAR_patterns-scores2"--></a>
4571 <li><a href="h_config_pers_name">OPTION: <!--#echo var="VAR_personal-name"--></a>
4572 <li><a href="h_config_print_cat">OPTION: <!--#echo var="VAR_personal-print-category"--></a>
4573 <li><a href="h_config_print_command">OPTION: <!--#echo var="VAR_personal-print-command"--></a>
4574 <li><a href="h_config_post_char_set">OPTION: <!--#echo var="VAR_posting-character-set"--></a>
4575 <li><a href="h_config_postponed_folder">OPTION: <!--#echo var="VAR_postponed-folder"--></a>
4576 <li><a href="h_config_print_font_char_set">OPTION: Print-Font-Char-Set</a>
4577 <li><a href="h_config_print_font_name">OPTION: Print-Font-Name</a>
4578 <li><a href="h_config_print_font_size">OPTION: Print-Font-Size</a>
4579 <li><a href="h_config_print_font_style">OPTION: Print-Font-Style</a>
4580 <li><a href="h_config_printer">OPTION: Printer</a>
4581 <li><a href="h_config_prompt_color">OPTION: Prompt Color</a>
4582 <li><a href="h_config_pruned_folders">OPTION: <!--#echo var="VAR_pruned-folders"--></a>
4583 <li><a href="h_config_pruning_rule">OPTION: <!--#echo var="VAR_pruning-rule"--></a>
4584 <li><a href="h_config_quote_color">OPTION: Quote Colors</a>
4585 <li><a href="h_config_quote_replace_string">OPTION: <!--#echo var="VAR_quote-replace-string"--></a>
4586 <li><a href="h_config_quote_suppression">OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></a>
4587 <li><a href="h_config_read_message_folder">OPTION: <!--#echo var="VAR_read-message-folder"--></a>
4588 <li><a href="h_config_remote_abook_history">OPTION: <!--#echo var="VAR_remote-abook-history"--></a>
4589 <li><a href="h_config_abook_metafile">OPTION: <!--#echo var="VAR_remote-abook-metafile"--></a>
4590 <li><a href="h_config_remote_abook_validity">OPTION: <!--#echo var="VAR_remote-abook-validity"--></a>
4591 <li><a href="h_config_reply_indent_string">OPTION: <!--#echo var="VAR_reply-indent-string"--></a>
4592 <li><a href="h_config_reply_intro">OPTION: <!--#echo var="VAR_reply-leadin"--></a>
4593 <li><a href="h_config_reverse_color">OPTION: Reverse Color</a>
4594 <li><a href="h_config_rshcmd">OPTION: <!--#echo var="VAR_rsh-command"--></a>
4595 <li><a href="h_config_rsh_open_timeo">OPTION: <!--#echo var="VAR_rsh-open-timeout"--></a>
4596 <li><a href="h_config_rshpath">OPTION: <!--#echo var="VAR_rsh-path"--></a>
4597 <li><a href="h_config_saved_msg_name_rule">OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></a>
4598 <li><a href="h_config_scroll_margin">OPTION: <!--#echo var="VAR_scroll-margin"--></a>
4599 <li><a href="h_config_slctbl_color">OPTION: Selectable Item Color</a>
4600 <li><a href="h_config_sending_filter">OPTION: <!--#echo var="VAR_sending-filters"--></a>
4601 <li><a href="h_config_sendmail_path">OPTION: <!--#echo var="VAR_sendmail-path"--></a>
4602 <li><a href="h_config_signature_color">OPTION: Signature Color</a>
4603 <li><a href="h_config_signature_file">OPTION: <!--#echo var="VAR_signature-file"--></a>
4604 <li><a href="h_config_smtp_server">OPTION: <!--#echo var="VAR_smtp-server"--></a>
4605 <li><a href="h_config_sort_key">OPTION: <!--#echo var="VAR_sort-key"--></a>
4606 <li><a href="h_config_speller">OPTION: <!--#echo var="VAR_speller"--></a>
4607 <li><a href="h_config_aspell_dictionary">OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></a>
4608 <li><a href="h_config_sshcmd">OPTION: <!--#echo var="VAR_ssh-command"--></a>
4609 <li><a href="h_config_ssh_open_timeo">OPTION: <!--#echo var="VAR_ssh-open-timeout"--></a>
4610 <li><a href="h_config_sshpath">OPTION: <!--#echo var="VAR_ssh-path"--></a>
4611 <li><a href="h_config_status_color">OPTION: Status Color</a>
4612 <li><a href="h_config_status_msg_delay">OPTION: <!--#echo var="VAR_status-message-delay"--></a>
4613 <li><a href="h_config_permlocked">OPTION: <!--#echo var="VAR_stay-open-folders"--></a>
4614 <li><a href="h_config_tcp_open_timeo">OPTION: <!--#echo var="VAR_tcp-open-timeout"--></a>
4615 <li><a href="h_config_tcp_query_timeo">OPTION: <!--#echo var="VAR_tcp-query-timeout"--></a>
4616 <li><a href="h_config_tcp_readwarn_timeo">OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></a>
4617 <li><a href="h_config_tcp_writewarn_timeo">OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></a>
4618 <li><a href="h_config_thread_disp_style">OPTION: <!--#echo var="VAR_threading-display-style"--></a>
4619 <li><a href="h_config_thread_exp_char">OPTION: <!--#echo var="VAR_threading-expanded-character"--></a>
4620 <li><a href="h_config_thread_index_style">OPTION: <!--#echo var="VAR_threading-index-style"--></a>
4621 <li><a href="h_config_thread_indicator_char">OPTION: <!--#echo var="VAR_threading-indicator-character"--></a>
4622 <li><a href="h_config_thread_lastreply_char">OPTION: <!--#echo var="VAR_threading-lastreply-character"--></a>
4623 <li><a href="h_config_title_color">OPTION: Title Color</a>
4624 <li><a href="h_config_titleclosed_color">OPTION: Title Closed Color</a>
4625 <li><a href="h_config_titlebar_color_style">OPTION: <!--#echo var="VAR_titlebar-color-style"--></a>
4626 <li><a href="h_config_unk_char_set">OPTION: <!--#echo var="VAR_unknown-character-set"--></a>
4627 <li><a href="h_config_upload_cmd">OPTION: <!--#echo var="VAR_upload-command"--></a>
4628 <li><a href="h_config_upload_prefix">OPTION: <!--#echo var="VAR_upload-command-prefix"--></a>
4629 <li><a href="h_config_browser">OPTION: <!--#echo var="VAR_url-viewers"--></a>
4630 <li><a href="h_config_history">OPTION: <!--#echo var="VAR_default-directories"--></a>
4631 <li><a href="h_config_domain_name">OPTION: <!--#echo var="VAR_use-only-domain-name"--></a>
4632 <li><a href="h_config_user_dom">OPTION: <!--#echo var="VAR_user-domain"--></a>
4633 <li><a href="h_config_user_id">OPTION: <!--#echo var="VAR_user-id"--></a>
4634 <li><a href="h_config_user_input_timeo">OPTION: <!--#echo var="VAR_user-input-timeout"--></a>
4635 <li><a href="h_config_viewer_headers">OPTION: <!--#echo var="VAR_viewer-hdrs"--></a>
4636 <li><a href="h_config_customhdr_pattern">OPTION: Viewer Header Color Pattern</a>
4637 <li><a href="h_config_customhdr_color">OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></a>
4638 <li><a href="h_config_viewer_margin_left">OPTION: <!--#echo var="VAR_viewer-margin-left"--></a>
4639 <li><a href="h_config_viewer_margin_right">OPTION: <!--#echo var="VAR_viewer-margin-right"--></a>
4640 <li><a href="h_config_viewer_overlap">OPTION: <!--#echo var="VAR_viewer-overlap"--></a>
4641 <li><a href="h_config_window_position">OPTION: Window-Position</a>
4642 <li><a href="h_mainhelp_patterns">Patterns</a>
4643 <li><a href="h_config_role_abookfrom">PATTERNS: Address in Address Book</a>
4644 <li><a href="h_config_role_age">PATTERNS: Age Interval</a>
4645 <li><a href="h_config_role_alltextpat">PATTERNS: AllText Pattern</a>
4646 <li><a href="h_config_role_bom">PATTERNS: Beginning of Month</a>
4647 <li><a href="h_config_role_boy">PATTERNS: Beginning of Year</a>
4648 <li><a href="h_config_role_bodytextpat">PATTERNS: BodyText Pattern</a>
4649 <li><a href="h_config_role_cat_cmd">PATTERNS: Categorizer Command</a>
4650 <li><a href="h_config_role_cat_cmd_example">PATTERNS: Categorizer Command Example</a>
4651 <li><a href="h_config_role_ccpat">PATTERNS: Cc Pattern</a>
4652 <li><a href="h_config_role_cat_limit">PATTERNS: Character Limit</a>
4653 <li><a href="h_config_role_charsetpat">PATTERNS: Character Set Pattern</a>
4654 <li><a href="h_config_role_comment">PATTERNS: Comment</a>
4655 <li><a href="h_config_role_fldr_type">PATTERNS: Current Folder Type</a>
4656 <li><a href="h_config_role_cat_status">PATTERNS: Exit Status Interval</a>
4657 <li><a href="h_config_role_arbpat">PATTERNS: Extra Headers Pattern</a>
4658 <li><a href="h_config_role_frompat">PATTERNS: From Pattern</a>
4659 <li><a href="h_config_role_keywordpat">PATTERNS: Keyword Pattern</a>
4660 <li><a href="h_config_role_stat_ans">PATTERNS: Message Answered Status</a>
4661 <li><a href="h_config_role_stat_del">PATTERNS: Message Deleted Status</a>
4662 <li><a href="h_config_role_stat_imp">PATTERNS: Message Important Status</a>
4663 <li><a href="h_config_role_stat_new">PATTERNS: Message New Status</a>
4664 <li><a href="h_config_role_stat_recent">PATTERNS: Message Recent Status</a>
4665 <li><a href="h_config_role_newspat">PATTERNS: News Pattern</a>
4666 <li><a href="h_config_role_nick">PATTERNS: Nickname</a>
4667 <li><a href="h_config_role_particpat">PATTERNS: Participant Pattern</a>
4668 <li><a href="h_config_role_stat_8bitsubj">PATTERNS: Raw 8-bit in Subject</a>
4669 <li><a href="h_config_role_recippat">PATTERNS: Recipient Pattern</a>
4670 <li><a href="h_config_role_scorei">PATTERNS: Score Interval</a>
4671 <li><a href="h_config_role_senderpat">PATTERNS: Sender Pattern</a>
4672 <li><a href="h_config_role_size">PATTERNS: Size Interval</a>
4673 <li><a href="h_config_role_subjpat">PATTERNS: Subject Pattern</a>
4674 <li><a href="h_config_role_topat">PATTERNS: To Pattern</a>
4675 <li><a href="h_config_filt_opts_nonterm">PATTERNS FEATURE: Dont-Stop-Even-if-Rule-Matches</a>
4676 <li><a href="h_config_filt_opts_notdel">PATTERNS FEATURE: Move-Only-if-Not-Deleted</a>
4677 <li><a href="h_config_filt_opts_sentdate">PATTERNS FEATURE: Use-Date-Header-For-Age</a>
4678 <li><a href="h_config_filt_rule_type">PATTERNS FILTER ACTION: Filter Action</a>
4679 <li><a href="h_config_filter_kw_clr">PATTERNS FILTER ACTION: Clear These Keywords</a>
4680 <li><a href="h_config_filt_stat_ans">PATTERNS FILTER ACTION: Set Answered Status</a>
4681 <li><a href="h_config_filt_stat_del">PATTERNS FILTER ACTION: Set Deleted Status</a>
4682 <li><a href="h_config_filt_stat_imp">PATTERNS FILTER ACTION: Set Important Status</a>
4683 <li><a href="h_config_filt_stat_new">PATTERNS FILTER ACTION: Set New Status</a>
4684 <li><a href="h_config_filter_kw_set">PATTERNS FILTER ACTION: Set These Keywords</a>
4685 <li><a href="h_config_incol">PATTERNS INDEXCOLOR ACTION: Index Line Color</a>
4686 <li><a href="h_config_set_index_format">PATTERNS OTHER ACTION: Set Index Format</a>
4687 <li><a href="h_config_perfolder_sort">PATTERNS OTHER ACTION: Set Sort Order</a>
4688 <li><a href="h_config_other_startup">PATTERNS OTHER ACTION: Set Startup Rule</a>
4689 <li><a href="h_config_role_inick">PATTERNS ROLE ACTION: Initialize Values From Role</a>
4690 <li><a href="h_config_role_setfcc">PATTERNS ROLE ACTION: Set Fcc</a>
4691 <li><a href="h_config_role_setfrom">PATTERNS ROLE ACTION: Set From</a>
4692 <li><a href="h_config_role_setlitsig">PATTERNS ROLE ACTION: Set Literal Signature</a>
4693 <li><a href="h_config_role_setotherhdr">PATTERNS ROLE ACTION: Set Other Headers</a>
4694 <li><a href="h_config_role_setreplyto">PATTERNS ROLE ACTION: Set Reply-To</a>
4695 <li><a href="h_config_role_setsig">PATTERNS ROLE ACTION: Set Signature</a>
4696 <li><a href="h_config_role_settempl">PATTERNS ROLE ACTION: Set Template</a>
4697 <li><a href="h_config_role_usenntp">PATTERNS ROLE ACTION: Use NNTP Server</a>
4698 <li><a href="h_config_role_usesmtp">PATTERNS ROLE ACTION: Use SMTP Server</a>
4699 <li><a href="h_config_role_scoreval">PATTERNS SCORE ACTION: Score Value</a>
4700 <li><a href="h_config_role_scorehdrtok">PATTERNS SCORE ACTION: Score Value From Header</a>
4701 <li><a href="h_config_role_composeuse">PATTERNS USE: Compose Use</a>
4702 <li><a href="h_config_role_forwarduse">PATTERNS USE: Forward Use</a>
4703 <li><a href="h_config_role_replyuse">PATTERNS USE: Reply Use</a>
4704 <li><a href="h_pipe_command">Pipe Command SubOptions</a>
4705 <li><a href="h_common_pipe">Pipe Command</a>
4706 <li><a href="h_valid_folder_names">POP</a>
4707 <li><a href="h_common_postpone">Postpone Command</a>
4708 <li><a href="h_common_print">Print Command</a>
4709 <li><a href="h_mainhelp_readingnews">Reading News</a>
4710 <li><a href="h_news">RELEASE NOTES for Alpine</a>
4711 <li><a href="h_mainhelp_roles">Roles</a>
4712 <li><a href="h_role_select">ROLES SCREEN</a>
4713 <li><a href="h_compose_readfile">Read File Command</a>
4714 <li><a href="h_mainhelp_reading">Reading Messages</a>
4715 <li><a href="h_main_release_notes">Release Notes Command</a>
4716 <li><a href="h_common_reply">Reply and Forward Commands</a>
4717 <li><a href="h_compose_richhdr">Rich Header Command</a>
4718 <li><a href="h_common_role">Role Command</a>
4719 <li><a href="h_mainhelp_smime">S/MIME</a>
4720 <li><a href="h_index_cmd_select">Searching for Messages</a>
4721 <li><a href="h_address_display">SEARCH RESULTS INDEX</a>
4722 <li><a href="h_address_select">SEARCH RESULTS INDEX</a>
4723 <li><a href="h_simple_index">SELECT POSTPONED MESSAGE</a>
4724 <li><a href="h_abook_config">SETUP ADDRESS BOOKS SCREEN</a>
4725 <li><a href="h_collection_maint">SETUP COLLECTION LIST screen</a>
4726 <li><a href="h_color_setup">SETUP COLOR COMMANDS</a>
4727 <li><a href="h_direct_config">SETUP LDAP DIRECTORY SERVERS SCREEN</a>
4728 <li><a href="h_rules_roles">SETUP ROLES SCREEN</a>
4729 <li><a href="h_rules_incols">SETUP INDEX COLORS SCREEN</a>
4730 <li><a href="h_rules_filter">SETUP FILTERING SCREEN</a>
4731 <li><a href="h_rules_score">SETUP SCORING SCREEN</a>
4732 <li><a href="h_common_save">Save and Export Commands</a>
4733 <li><a href="h_mainhelp_securing">Securing Your Alpine Session</a>
4734 <li><a href="h_index_cmd_select">Selecting: Select and WhereIs/Select</a>
4735 <li><a href="h_compose_send">Send Command</a>
4736 <li><a href="h_folder_server_syntax">Server Name Syntax</a>
4737 <li><a href="h_main_setup">Setup Command</a>
4738 <li><a href="X-Alpine-Config:">Show Supported Options in this Alpine</a>
4739 <li><a href="h_composer_sigedit">Signature Editor Commands Explained</a>
4740 <li><a href="h_simple_text_view">Simple Text View Screen Explained</a>
4741 <li><a href="h_mainhelp_smime">S/MIME</a>
4742 <li><a href="h_config_smime_dont_do_smime">S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></a>
4743 <li><a href="h_config_smime_encrypt_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></a>
4744 <li><a href="h_config_smime_remember_passphrase">S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></a>
4745 <li><a href="h_config_smime_sign_by_default">S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></a>
4746 <li><a href="h_config_smime_use_cert_store">S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></a>
4747 <li><a href="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></a>
4748 <li><a href="h_config_smime_cacertcon">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></a>
4749 <li><a href="h_config_smime_cacertdir">S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></a>
4750 <li><a href="h_config_smime_privkeycon">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-container"--></a>
4751 <li><a href="h_config_smime_privkeydir">S/MIME OPTION: <!--#echo var="VAR_smime-private-key-directory"--></a>
4752 <li><a href="h_config_smime_pubcertcon">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-container"--></a>
4753 <li><a href="h_config_smime_pubcertdir">S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></a>
4754 <li><a href="h_config_smime_transfer_cacert_to_con">S/MIME: Transfer CA Certs to Container</a>
4755 <li><a href="h_config_smime_transfer_cacert_to_dir">S/MIME: Transfer CA Certs to Directory</a>
4756 <li><a href="h_config_smime_transfer_priv_to_con">S/MIME: Transfer Private Keys to Container</a>
4757 <li><a href="h_config_smime_transfer_priv_to_dir">S/MIME: Transfer Private Keys to Directory</a>
4758 <li><a href="h_config_smime_transfer_pub_to_con">S/MIME: Transfer Public Certs to Container</a>
4759 <li><a href="h_config_smime_transfer_pub_to_dir">S/MIME: Transfer Public Certs to Directory</a>
4760 <li><a href="h_config_smime_public_certificates">S/MIME: Manage Public Certificates</a>
4761 <li><a href="h_config_smime_private_keys">S/MIME: Manage Private Keys</a>
4762 <li><a href="h_config_smime_certificate_authorities">S/MIME: Manage Certificate Authorities</a>
4763 <li><a href="h_index_cmd_sort">Sort Command</a>
4764 <li><a href="h_compose_spell">Spell Check Command</a>
4765 <li><a href="h_common_suspend">Suspend Command</a>
4766 <li><a href="h_compose_addrcomplete">THE MESSAGE COMPOSER'S ADDRESS COMPLETION</a>
4767 <li><a href="h_composer_attachment">THE MESSAGE COMPOSER'S ATTCHMNT FIELD</a>
4768 <li><a href="h_composer_bcc">THE MESSAGE COMPOSER'S BCC FIELD</a>
4769 <li><a href="h_composer_cc">THE MESSAGE COMPOSER'S CC FIELD</a>
4770 <li><a href="h_composer_from">THE MESSAGE COMPOSER'S FROM FIELD</a>
4771 <li><a href="h_composer_lcc">THE MESSAGE COMPOSER'S LCC FIELD</a>
4772 <li><a href="h_composer_news">THE MESSAGE COMPOSER'S NEWSGRPS LINE</a>
4773 <li><a href="h_composer_reply_to">THE MESSAGE COMPOSER'S REPLY-TO FIELD</a>
4774 <li><a href="h_composer_to">THE MESSAGE COMPOSER'S TO FIELD</a>
4775 <li><a href="h_abook_opened">THE ALPINE ADDRESS BOOK</a>
4776 <li><a href="h_abook_select_nicks_take">Take Address Nickname Selection Explained</a>
4777 <li><a href="h_takeaddr_screen">Take Address Screen Explained</a>
4778 <li><a href="h_common_take">TakeAddr Command</a>
4779 <li><a href="h_mainhelp_status">Titlebar Line</a>
4780 <li><a href="h_index_tokens">Tokens for Index and Replying</a>
4781 <li><a href="h_config_usenone_color">Use None Color</a>
4782 <li><a href="h_config_usenormal_color">Use Normal Color</a>
4783 <li><a href="h_config_usetransparent_color">Use Transparent Color</a>
4784 <li><a href="h_whatis_vcard">VCARD EXPLAINED</a>
4785 <li><a href="h_view_cmd_hilite">View Hilite and Next item/Previous item</a>
4786 <li><a href="h_view_cmd_viewattch">ViewAttch Command</a>
4787 <li><a href="h_index_cmd_whereis">WhereIs Command</a>
4788 <li><a href="h_view_cmd_whereis">WhereIs Command</a>
4789 <li><a href="h_index_cmd_zoom">ZoomMode Command</a>
4790 <li><a href="h_config_browser_xterm"><!--#echo var="VAR_url-viewers"--> and X windows applications</a>
4791 </UL>
4794 &lt;End of Help Index&gt;
4795 </BODY>
4796 </HTML>
4799 ============== h_config_remote_config =============
4800 <HTML>
4801 <HEAD>
4802 <TITLE>Remote Configuration</TITLE>
4803 </HEAD>
4804 <BODY>
4805 <H1>Remote Configuration</H1>
4807 You may use the command line argument &quot;-p pinerc&quot; to tell
4808 Alpine to use a non-default configuration file.
4809 There are two types of storage for configuration information.
4810 <EM>Local</EM> configuration files are used by default.
4811 These are just regular files on the UNIX system or on the PC.
4812 The file &quot;<CODE>.pinerc</CODE>&quot; is the default for Unix Alpine and the
4813 file &quot;<CODE>PINERC</CODE>&quot; is the default for PC-Alpine.
4814 <EM>Remote</EM> configuration folders are stored on an IMAP server.
4815 The advantage of using a remote configuration is that the same information
4816 may be accessed from multiple platforms.
4817 For example, if you use one computer at work and another at home, the same
4818 configuration could be used from both places.
4819 A configuration change from one place would be seen in both places.
4820 To use a remote configuration you simply give a
4821 <A HREF="h_valid_folder_names">remote folder name</A>
4822 as the argument to the &quot;-p&quot; command line option.
4823 The command line might look something like:
4825 <CENTER><SAMP>pine -p {my.imap.server}remote_pinerc</SAMP></CENTER>
4827 If there are special characters in the command shell you use, you may need to
4828 quote the last argument (to protect the curly braces from the shell).
4829 The command might look like:
4831 <CENTER><SAMP>pine -p &quot;{my.imap.server}remote_pinerc&quot;</SAMP></CENTER>
4833 You should choose a folder name for a folder that does not yet exist.
4834 It will be created containing an empty configuration.
4835 Do not use a folder that you wish to store regular mail messages in.
4837 The Setup/RemoteConfigSetup command will help you convert from a local
4838 configuration to a remote configuration.
4839 It will create a remote configuration for you and copy your current local
4840 configuration to it.
4841 It will also help you convert local address books into remote address books
4842 and local signature files into literal signatures contained in the
4843 remote configuration file.
4845 If the Setup/RemoteConfigSetup command doesn't do what you want, you
4846 may copy a local pinerc file to a remote configuration folder by hand
4847 by using the command line option &quot;-copy_pinerc&quot;.
4849 Another command line option, which is somewhat related to remote
4850 configuration, is the option &quot;-x exceptions_config&quot;.
4851 The configuration settings in the exceptions configuration override
4852 your default settings.
4853 It may be useful to store the default configuration (the -p argument) remotely
4854 and to have the exceptions configuration stored in a local file.
4855 You might put generic configuration information in the remote configuration
4856 and platform-specific configuration on each platform in the exceptions
4857 configuration.
4858 The arguments to the &quot;-p&quot; and &quot;-x&quot; options
4859 can be either remote folders or local files.
4861 There is another command line argument that works only with PC-Alpine and
4862 which may prove useful when using a remote configuration.
4863 The option &quot;-aux local_directory&quot; allows you to tell PC-Alpine where
4864 to store your local auxiliary files.
4865 This only has an effect if your configuration file is remote.
4866 Some examples of auxiliary files are debug files, address book files, and
4867 signature files.
4869 &lt;End of help on this topic&gt;
4870 </BODY>
4871 </HTML>
4872 ============== h_config_exceptions =============
4873 <HTML>
4874 <HEAD>
4875 <TITLE>Generic and Exceptional Configuration</TITLE>
4876 </HEAD>
4877 <BODY>
4878 <H1>Generic and Exceptional Configuration</H1>
4880 If you use Alpine from more than one platform it may be convenient
4881 to split your configuration information into two pieces, a generic piece
4882 and exceptions that apply to a particular platform.
4883 For example, suppose you use Alpine from home and from work.
4884 Most of your configuration settings are probably the
4885 same in both locations, so those settings belong in the generic settings
4886 configuration.
4887 However, you may use a different SMTP server and INBOX
4888 from home than you do from work.
4890 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
4892 <A HREF="h_config_inbox_path">&quot;<!--#echo var="VAR_inbox-path"-->&quot;</A>
4893 options could be
4894 part of your exceptional configuration so that they could be different in the
4895 two places.
4897 The command line option &quot;-x exceptions_config&quot;
4898 may be used to split your configuration into generic and exceptional pieces.
4899 &quot;Exceptions_config&quot; may be either local or remote.
4900 The regular Alpine configuration file will contain the generic data, and
4901 &quot;exceptions_config&quot; will contain the exceptional data.
4903 For Unix Alpine, if you don't have a &quot;-x&quot; command line option,
4904 Alpine will look for the file &quot;<CODE>.pinercex</CODE>&quot;
4905 in the same local directory that the regular config file is located in (usually
4906 the Unix home directory).
4907 If the regular config file is remote (because the command line option
4908 &quot;-p remote_config&quot; was used) then Unix Alpine looks in the Unix home
4909 directory for &quot;<CODE>.pinercex</CODE>&quot;.
4910 If the file does not already exist then no exceptions will be used.
4911 You can force exceptions to be used by using the &quot;-x&quot; option or
4912 by creating an empty &quot;<CODE>.pinercex</CODE>&quot; file.
4914 For PC-Alpine, if you don't have a &quot;-x&quot; command line option,
4915 PC-Alpine will use the value of the
4916 environment variable <CODE>$PINERCEX</CODE>.
4917 If that is not set, PC-Alpine will look for
4918 the local file &quot;<CODE>PINERCEX</CODE>&quot;
4919 in the same local directory that the regular config file is located in.
4920 If the regular config file is remote (because the command line option
4921 &quot;-p remote_config&quot; was used) then PC-Alpine looks in the
4922 local directory specified by the &quot;-aux local_directory&quot; command
4923 line argument, or the directory <CODE>$HOME&#92;PINE</CODE>, or
4924 in the <CODE>&lt;PINE.EXE </CODE>directory<CODE>&gt;</CODE>.
4926 When you have an exception configuration there is a new command
4927 in the Alpine Setup screen, Setup/eXceptions.
4928 It toggles between exceptions and the regular configuration.
4929 This is the usual way to make changes in your exceptional configuration data.
4930 For example, you would type &quot;S&quot; for Setup, &quot;X&quot; for
4931 eXception, then follow that with one of the Setup commands, like &quot;C&quot;
4932 for Config or &quot;K&quot; for Kolor.
4934 For most people, splitting the configuration information into two pieces is
4935 going to be most useful if the generic information is accessed
4936 <A HREF="h_config_remote_config">remotely</A>).
4937 That data will be the same no matter where you access it from and if you
4938 change it that change will show up everywhere.
4939 The exceptional data will most commonly be in a local file, so that the
4940 contents may easily be different on each computing platform used.
4942 If you already have a local configuration file with settings you like
4943 you may find that the command Setup/RemoteConfigSetup is useful
4944 in helping you convert to a remote configuration.
4945 The command line flag &quot;-copy_pinerc&quot;
4946 may also be useful.
4948 &lt;End of help on this topic&gt;
4949 </BODY>
4950 </HTML>
4951 ============== h_config_inheritance =============
4952 <HTML>
4953 <HEAD>
4954 <TITLE>Configuration Inheritance</TITLE>
4955 </HEAD>
4956 <BODY>
4957 <H1>Configuration Inheritance</H1>
4959 Configuration inheritance is a power user feature.
4960 It is confusing and not completely supported by the configuration
4961 user interface.
4962 We start with an explanation of how configuration works in hopes of making
4963 it easier to describe how inheritance works.
4965 Alpine uses a hierarchy of configuration values from different locations.
4966 There are five ways in which each configuration option (configuration
4967 variable) can be set.
4968 In increasing order of precedence they are:
4970 <OL>
4971 <LI> the system-wide configuration file.
4973 <LI> the personal configuration file
4975 <LI> the personal exceptions file
4977 <LI> a command line argument
4979 <LI> the system-wide <EM>fixed</EM> configuration file (Unix Alpine only)
4980 </OL>
4982 The fixed configuration file is normally
4983 <CODE><!--#echo var="PINE_CONF_FIXED_PATH"--></CODE>.
4985 The system-wide configuration file is normally
4986 <CODE><!--#echo var="PINE_CONF_PATH"--></CODE> for Unix Alpine and is normally not
4987 set for PC-Alpine.
4988 For PC-Alpine, if the environment variable <EM>$PINECONF</EM> is set, that
4989 is used for the system-wide configuration.
4990 This location can be set or changed on the command line with the -P flag.
4991 The system-wide configuration file can be either a local file or a
4992 remote configuration folder.
4994 For Unix Alpine, the personal configuration file is normally the file
4995 <CODE>.pinerc</CODE> in the user's home directory.
4996 This can be changed with the -p command line flag.
4997 For PC-Alpine, the personal configuration file is in
4998 <CODE>$PINERC</CODE> or <CODE>&lt;AlpineRC registry value&gt;</CODE> or 
4999 <CODE>$HOME&#92;PINE&#92;PINERC</CODE> or
5000 <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;&#92;PINERC</CODE>.
5001 This can be changed with the -p command line flag.
5002 If -p is used, the configuration data may be in a local file or a remote config
5003 folder.
5005 For Unix Alpine, the personal exceptions configuration file is named
5006 <CODE>.pinercex</CODE> and is in the same directory as the personal
5007 configuration file, if that configuration file is not remote, and is in
5008 the home directory if the personal configuration file is remote.
5009 If the file exists, then exceptions are turned on.
5010 If it doesn't, then you are not using exceptions.
5011 Alternatively, you may change the location of the exceptions configuration
5012 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
5013 Like the personal configuration data, exceptions_config may be
5014 either local or remote.
5016 For PC-Alpine, the personal exceptions configuration file is named
5017 <CODE>PINERCEX</CODE> and is in the same directory as the personal
5018 configuration file unless the personal configuration file is remote.
5019 In that case, it is in the local directory specfied by the
5020 &quot;-aux local_directory&quot; command line argument.
5021 (In the case that the personal configuration is remote and there is no
5022 &quot;-aux&quot; command line argument, Alpine searches for
5023 a PINERCEX file in the directory <CODE>$HOME&#92;PINE</CODE> and
5024 the directory <CODE>&lt;PINE.EXE </CODE>dir<CODE>&gt;</CODE>.)
5025 If the file exists, then exceptions are turned on.
5026 If it doesn't, then you are not using exceptions.
5027 You may change the location of the exceptions configuration
5028 by using the command line argument &quot;-x &lt;exceptions_config&gt;&quot;.
5029 or with the
5030 environment variable <CODE>$PINERCEX</CODE> (if there is no &quot;-x&quot;
5031 option).
5033 To reiterate, the value of a configuration option is taken from the
5034 last location in the list above in which it is set.
5035 Or, thinking about it slightly differently, a default value for an option
5036 is established in the system-wide configuration file (or internally by Alpine
5037 if there is no value in the system-wide file).
5038 That default remains in effect until and unless it is overridden by a value in a
5039 location further down the list, in which case a new &quot;default&quot;
5040 value is established.
5041 As we continue down the list of locations we either retain the
5042 value at each step or establish a new value.
5043 The value that is still set after going through the whole list of
5044 configuration locations is the one that is used.
5046 So, for example, if an option is set in the system-wide configuration
5047 file and in the personal configuration file, but is not set in the
5048 exceptions, on the command line, or in the fixed file; then the value
5049 from the personal configuration file is the one that is used.
5050 Or, if it is set in the system-wide config, in the personal config, not
5051 in the exceptions, but is set on the command line; then the value
5052 on the command line is used.
5054 Finally we get to inheritance.
5055 For configuration options that are lists, like &quot;<!--#echo var="VAR_smtp-server"-->&quot; or
5056 &quot;<!--#echo var="VAR_incoming-folders"-->&quot;,
5057 the inheritance mechanism makes it possible to <EM>combine</EM>
5058 the values from different locations instead of <EM>replacing</EM> the value.
5059 This is true of all configuration lists other than the &quot;Feature-List&quot;,
5060 for which you may already set whatever you want at
5061 any configuration location (by using the &quot;no-&quot; prefix if
5062 necessary).
5064 To use inheritance, set the first item in a configuration list to the
5065 token &quot;INHERIT&quot;, without the quotes.
5066 If the first item is &quot;INHERIT&quot;,
5067 then instead of replacing the default value established so far, the rest of
5068 the list is appended to the default value established so far and that is
5069 the new value.
5071 Here is an example which may make it clearer. Suppose we have:
5073 <PRE>
5074  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5075  Personal config    :   smtp-server = INHERIT, mysmtp.home
5076  Exceptions config  :   smtp-server = &lt;No Value Set&gt;
5077  Command line       :   smtp-server = &lt;No Value Set&gt;
5078  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5079 </PRE>
5082 This would result in an effective smtp-server option of
5084 <PRE>
5085  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home
5086 </PRE>
5088 The &quot;INHERIT&quot; token can be used in any of the configuration files
5089 and the effect cascades.
5090 For example, if we change the above example to:
5092 <PRE>
5093  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5094  Personal config    :   smtp-server = INHERIT, mysmtp.home
5095  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
5096  Command line       :   smtp-server = &lt;No Value Set&gt;
5097  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5098 </PRE>
5101 This would result in:
5103 <PRE>
5104  smtp-server = smtp1.corp.com, smtp2.corp.com, mysmtp.home, yoursmtp.org
5105 </PRE>
5107 Unset variables are skipped over (the default value is carried forward) so
5108 that, for example:
5110 <PRE>
5111  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5112  Personal config    :   smtp-server = &lt;No Value Set&gt;
5113  Exceptions config  :   smtp-server = INHERIT, yoursmtp.org
5114  Command line       :   smtp-server = &lt;No Value Set&gt;
5115  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5116 </PRE>
5119 produces:
5121 <PRE>
5122  smtp-server = smtp1.corp.com, smtp2.corp.com, yoursmtp.org
5123 </PRE>
5126 If any later configuration location has a value set (for a particular list
5127 option) which does <EM>not</EM> begin with &quot;INHERIT&quot;,
5128 then that value replaces whatever value has been defined up to that point.
5129 In other words, that cancels out any previous inheritance.
5131 <PRE>
5132  System-wide config :   smtp-server = smtp1.corp.com, smtp2.corp.com
5133  Personal config    :   smtp-server = INHERIT, mysmtp.org
5134  Exceptions config  :   smtp-server = yoursmtp.org
5135  Command line       :   smtp-server = &lt;No Value Set&gt;
5136  Fixed config       :   smtp-server = &lt;No Value Set&gt;
5137 </PRE>
5140 results in:
5142 <PRE>
5143  smtp-server = yoursmtp.org
5144 </PRE>
5147 For some configuration options, like &quot;<!--#echo var="VAR_viewer-hdr-colors"-->&quot; or
5148 &quot;<!--#echo var="VAR_patterns-roles"-->&quot;, it is
5149 difficult to insert the value &quot;INHERIT&quot; into the list of values
5150 for the option using the normal Setup tools.
5151 In other words, the color setting screen (for example) does not
5152 provide a way to input the text &quot;INHERIT&quot; as the first
5153 item in the <!--#echo var="VAR_viewer-hdr-colors"--> option.
5154 The way to do this is to either edit the pinerc file directly and manually
5155 insert it, or turn
5156 on the <A HREF="h_config_expose_hidden_config"><!--#echo var="FEAT_expose-hidden-config"--></A>
5157 feature and insert it using the Setup/Config screen.
5159 &lt;End of help on this topic&gt;
5160 </BODY>
5161 </HTML>
5162 ============== h_special_xon_xoff =============
5163 <HTML>
5164 <HEAD>
5165 <TITLE>Explanation of Alpine's XOFF/XON Handling</TITLE>
5166 </HEAD>
5167 <BODY>
5168 <H1>XOFF/XON Handling within Alpine</H1>
5170 By default, Alpine treats Ctrl-S or Ctrl-Q (sometimes known as XOFF
5171 and XON) as normal characters, even though Alpine does not use them.
5172 However, the printer, modem, or communication software you are using may
5173 be configured for &quot;software flow control,&quot; which means that
5174 XON/XOFF must be treated as special characters by the operating system.
5175 If you see messages such as &quot;^S not defined for this screen&quot;,
5176 then your system is probably using software flow control. In this case
5177 you will need to set the
5178 <A HREF="h_config_preserve_start_stop">&quot;<!--#echo var="FEAT_preserve-start-stop-characters"-->&quot;</A>
5179 feature.
5181 If you <EM>do</EM> set this
5182 feature, be advised that if you accidentally hit a Ctrl-S, Alpine will
5183 mysteriously freeze up with no warning.  In this case, try typing a Ctrl-Q
5184 and see if that puts things right.  Printing via the
5185 &quot;attached-to-ansi&quot; or 
5186 &quot;attached-to-wyse&quot;
5187 option will automatically enable software
5188 flow-control handling for the duration of the printing.
5190 &lt;End of help on this topic&gt;
5191 </BODY>
5192 </HTML>
5193 ============= h_special_help_nav =============
5194 <HTML>
5195 <HEAD>
5196 <TITLE>Help Text Navigation Explained</TITLE>
5197 </HEAD>
5198 <BODY>
5199 <H1>Help Text Navigation Explained</H1>
5201 Alpine contains extensive context-sensitive help text.   At any point, 
5202 pressing the &quot;?&quot; key will bring up a page of help text
5203 explaining the options available to you.  You can leave the help
5204 text screen and return to normal Alpine operation by pressing
5206 <!--chtml if pinemode="function_key"-->
5207 F3 function
5208 <!--chtml else-->
5209 &quot;E&quot;
5210 <!--chtml endif-->
5211 key to Exit Help at any time.
5214 Within the help screen you might find a word or phrase displayed in 
5215 inverse text and others displayed in bold typeface.  Such words and
5216 phrases are used to tell you Alpine has more information available on
5217 the topic they describe.
5218 The inverted text is the &quot;selected&quot; topic.  
5219 Use the arrow keys, Ctrl-F, and Ctrl-B to change which of the phrases
5220 displayed in bold type
5221 is &quot;selected&quot;.
5222 Hit the Return key to display the information Alpine has available on that
5223 topic.  While viewing such additional information, the 
5224 <!--chtml if pinemode="function_key"-->
5225 F3 function
5226 <!--chtml else-->
5227 &quot;P&quot;
5228 <!--chtml endif-->
5229 key will return you to the previous help screen, and the
5230 <!--chtml if pinemode="function_key"-->
5231 F2 function
5232 <!--chtml else-->
5233 &quot;E&quot;
5234 <!--chtml endif-->
5235 key will Exit the Help system altogether.
5238 The "N" command will tell you the internal name of the help text you are 
5239 reading each time, so that you can send this name in the text of a message 
5240 and create a direct link to that internal help using the x-pine-help URL 
5241 scheme. For example, the direct link to this item is 
5242 x-pine-help:h_special_help_nav. If you add this text to a message, then
5243 a person using Pine to read such message would have a direct link to this
5244 help text.
5247 When you are finished reading this help text, you can press the
5248 <!--chtml if pinemode="function_key"-->
5249 F3 function
5250 <!--chtml else-->
5251 &quot;P&quot;
5252 <!--chtml endif-->
5253 key to return to the previously displayed help text.
5256 &lt;End of help on this topic&gt;
5257 </BODY>
5258 </HTML>
5259 ============= h_special_list_commands =============
5260 <HTML>
5261 <HEAD>
5262 <TITLE>Email List Commands Explained</TITLE>
5263 </HEAD>
5264 <BODY>
5265 <H1>Email List Commands Explained</H1>
5267 Electonic mail lists provide a way for like-minded users to join in
5268 discussions on topics of interest.  The email list itself is 
5269 represented by a
5270 single address that participants send messages to when they have
5271 something of interest to share with other members of the list.  The
5272 receiving computer then, either automatically or after review by the
5273 list's owner (or moderator), sends a copy of that message to each
5274 member of the list.
5277 Usually, subscribing and unsubscribing is done by sending requests in
5278 an email message to a special address setup to handle managing list
5279 membership.  Often this is the name of the list followed by
5280 <I>-request</I>.  This address is almost <EM>never</EM> the same as
5281 the address used to send messages to the list.
5284 Unfortunately, email list participation commands are more a matter
5285 of convention than standard, and thus may vary from list to list.
5286 Increasingly, list management software is adding information to
5287 the copy of the postings as they're copied to the list members that
5288 explains how to do the various list management functions.
5291 Alpine will recognize this information and offer the management commands
5292 they represent in a simple display. One or more of the following
5293 operations will be made available:
5295 <DL>
5296 <DT>Help</DT>
5297 <DD>
5298 A method to get help on subscribing, unsubscribing, 
5299 an explanation of what the list is about, or special instructions
5300 for participation.  This may be in the form of a reply in response
5301 to an email message, or instructions on how to connect to a Web site.
5302 </DD>
5304 <DT>Unsubscribe</DT>
5305 <DD>
5306 A method to get your email addressed removed from the list of
5307 recipients of the email list.
5308 </DD>
5310 <DT>Subscribe</DT>
5311 <DD>
5312 A method to get your email address added to the list of recipients
5313 of the email list.  It may be in the form of a message sent to 
5314 a special address or you may be connected to a web site.
5315 <DD>
5316 </DD>
5318 <DT>Post</DT>
5319 <DD>
5320 A method used to post to the email list.  However, it might also 
5321 indicate that no posting is allowed directly to the list.
5322 </DD>
5324 <DT>Owner</DT>
5325 <DD>
5326 A method to contact the list owner for special questions you might
5327 have regarding the list.
5328 </DD>
5330 <DT>Archive</DT>
5331 <DD>
5332 A method to view an archive of previous messages posted to the list.
5333 This may be in the form of a mail folder on a remote computer, an
5334 IMAP mailbox or even a Web site.
5335 </DD>
5336 </DL>
5339 &lt;End of help on this topic&gt;
5340 </BODY>
5341 </HTML>
5342 ============= h_quota_command =============
5343 <HTML>
5344 <HEAD>
5345 <TITLE>Quota Screen Explained</TITLE>
5346 </HEAD>
5347 <BODY>
5348 <H1>Quota Screen Explained</H1>
5350 <P> This screen summarizes the quota report for this mailbox in the
5351 IMAP server. For each resource that you have a quota, this reports summarizes
5352 its use and limit.
5354 <P> Your IMAP server administrator may have set a quota based either on 
5355 the total size of your mailbox (STORAGE), or the number of messages in 
5356 your mailbox (MESSAGES), or some other criteria. This will be reported
5357 to you indicating the type of quota, its total use and its limit.
5359 <P> The report for STORAGE is reported in kibibytes (KiB). One kibibyte is 
5360 1024 bytes. Each of the characters that you see in this help text is one 
5361 byte, and this help text is about 1 kibibyte in size. Small messages sent 
5362 by Alpine are normally less than 4 kibibytes in size (which includes 
5363 headers and text). Other email programs may send messages with bigger 
5364 sizes when they send messages, since they send plain text and an 
5365 alternative part in HTML.
5367 <P> A convenient way to save space for the STORAGE type of quota is by 
5368 deleting attachments. This is done on each individual message by pressing 
5369 the &quot;V&quot; command while reading the message text, then moving the cursor 
5370 to the position of the attachment that is to be deleted, then pressing
5371 &quot;D&quot; to delete such attachment, going back to reading the 
5372 message with the &quot;&lt;&quot; command and pressing &quot;S&quot; to 
5373 save the message in the same folder you are reading from. The saved 
5374 message will not have the attachment that was marked deleted. Now you
5375 can delete and expunge the message with the unwanted attachment.
5378 &lt;End of help on this topic&gt;
5379 </BODY>
5380 </HTML>
5381 ============= h_mail_thread_index =============
5382 <HTML>
5383 <HEAD>
5384 <TITLE>THREAD INDEX COMMANDS</TITLE>
5385 </HEAD>
5386 <BODY>                 
5387 <H1>THREAD INDEX COMMANDS</H1>
5388 <!--chtml if pinemode="function_key"-->
5389 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>
5390 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5391 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>
5392 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>
5393 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>
5394 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>
5395 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>
5396 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>
5397 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>
5398 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>
5399 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>
5400 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>
5401 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>
5402 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>
5403 <BR>
5404 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5405 -----------------------------<BR>
5406 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>
5407 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>
5408 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>
5409 <BR>
5410 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5411 -----------------------------<BR>
5412 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
5413 F6&nbsp;&nbsp;<A HREF="h_common_role">Compose&nbsp;using&nbsp;a&nbsp;role</A><BR>
5414 <BR>
5415 <!--chtml else-->
5416 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>
5417 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5418 &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>
5419 &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>
5420 &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>
5421 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>
5422 &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>
5423 &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>
5424 &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>
5425 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>
5426 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5427 <BR>
5428 Miscellaneous&nbsp;Operations&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;General&nbsp;Alpine&nbsp;Commands<BR>
5429 ------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------<BR>
5430 &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>
5431 &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>
5432 &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>
5433 &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>
5434 &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>
5435 &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>
5436 &nbsp;:&nbsp;&nbsp;&nbsp;Select&nbsp;Messages&nbsp;in&nbsp;Current&nbsp;Thread<BR>
5437 <!--chtml endif-->
5440 NOTE:
5441 <OL>
5442  <LI>For help on a particular command, highlight the bold text associated
5443 with it above and hit Return.
5444  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5445 </OL>
5447 <H2>Description of the THREAD INDEX Screen</H2>
5449 The THREAD INDEX displays summary information from each
5450 thread (conversation) in the current folder.
5451 This is useful if you want to quickly
5452 scan new threads, or find a particular thread without having to go
5453 through the text of each message, or to quickly get rid of junk
5454 threads, etc.
5455 The current thread is always highlighted.
5456 Each line of the THREAD INDEX contains the following columns: <P>
5457 <DL>
5458  <DT>STATUS:</DT>
5459  <DD> The markings on the left side of the thread tell you about its
5460 status.  You may see one or more of the following codes on any given
5461 thread:
5462 <UL>
5463   <LI> &quot;D&quot; for Deleted. All of the messages in this thread are marked for deletion but not yet eXpunged from the folder.
5464   <LI> &quot;A&quot; for Answered. All of the messages in this thread are marked answered.
5465   <LI> &quot;N&quot; for New. At least one message in the thread is New (you haven't looked at it yet).
5466   <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.
5467   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5468         message in the thread was sent to you as a cc:. This symbol will only show up if
5469         the feature
5470         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5471   <LI> &quot;X&quot; for selected.  You have selected at least one message in the thread by using the
5472         &quot;select&quot; command.  (Some systems may optionally allow selected
5473         messages to be denoted by the index line being displayed in bold
5474         type instead.)
5475   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5476       to mark at least one message in this thread as &quot;important&quot;.
5477 </UL></DD><P>
5479  <DT>THREAD NUMBER:</DT>
5480  <DD>Threads in a folder are numbered, from one through the number
5481 of threads in the folder, to help you know where you are in the folder.
5482 </DD><P>
5484  <DT>DATE STARTED:</DT>
5485  <DD>The date the thread was started. This is actually from the Date header
5486 of the first message in the thread. It doesn't take different time zones
5487 into account.</DD><P>
5489  <DT>WHO STARTED THE THREAD:</DT>
5490  <DD>This is usually the name of the sender of the first message in the thread, taken from
5491 the From header of the message.
5492 If there is no personal name given in that
5493 address, then the email address is used instead.
5494 If the message is from you (or from one of your
5495 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5496 then the recipient's name is shown here instead, with the characters
5497 &quot;To: &quot; inserted before the name.
5498 (The idea of this is that if you started the thread you would rather see who
5499 the mail was sent to instead of that the mail was from you.)
5500 In Newsgroups, if you are
5501 the sender and there are no email recipients, the newsgroup name will be
5502 listed after the &quot;To: &quot;.
5503 </DD><P>
5505  <DT>SIZE:</DT>
5506  <DD>The number in parentheses is the number of messages in the thread.</DD><P>
5508  <DT>SUBJECT:</DT>
5509  <DD>As much of the thread's subject line as will fit on the screen.
5510 This is the subject of the first message in the thread.</DD>
5511 </DL>
5513 <P><UL>
5514 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5515 </UL>
5517 &lt;End of help on this topic&gt;
5518 </BODY>
5519 </HTML>
5520 ============= h_mail_index =============
5521 <HTML>
5522 <HEAD>
5523 <TITLE>MESSAGE INDEX COMMANDS</TITLE>
5524 </HEAD>
5525 <BODY>                 
5526 <H1>MESSAGE INDEX COMMANDS</H1>
5527 <!--chtml if pinemode="function_key"-->
5528 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>
5529 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-----------------------------<BR>
5530 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>
5531 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>
5532 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>
5533 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>
5534 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>
5535 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>
5536 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>
5537 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>
5538 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>
5539 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>
5540 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>
5541 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>
5542 <BR>
5543 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5544 -----------------------------<BR>
5545 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>
5546 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>
5547 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>
5548 <BR>
5549 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5550 -----------------------------<BR>
5551 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
5552 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>
5553 <BR>
5554 <!--chtml else-->
5555 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>
5556 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;---------------------------------<BR>
5557 &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>
5558 &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>
5559 &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>
5560 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>
5561 &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>
5562 &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>
5563 &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>
5564 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>
5565 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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>
5566 Miscellaneous&nbsp;Operations<BR>
5567 ------------------------<BR>
5568 &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>
5569 &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>
5570 &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>
5571 &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>
5572 &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>
5573 &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>
5574 &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>
5575 &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>
5576 <!--chtml endif-->
5579 NOTE:
5580 <OL>
5581  <LI>For help on a particular command, highlight the bold text associated
5582 with it above and hit Return.
5583  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5584 </OL>
5586 <H2>Description of the MESSAGE INDEX Screen</H2>
5588 The MESSAGE INDEX displays summary information from each
5589 message in the current folder.
5590 This is useful if you want to quickly
5591 scan new messages, or find a particular message without having to go
5592 through the text of each message, or to quickly get rid of junk
5593 messages, etc.
5595 The current message is always highlighted
5596 and many commands operate on the current message.
5597 For example, the Delete command will delete the current message.
5598 If the folder is sorted by either Threads or OrderedSubject, then, depending
5599 on some of your configuration settings, a single line in the index may
5600 refer to an entire thread or to a subthread.
5601 If that is the case, then the commands that normally operate on the current
5602 message will operate on the thread or subthread instead.
5603 For example, the Delete command will delete the whole collapsed thread
5604 instead of just a single message.
5606 Each line of the MESSAGE INDEX contains the following columns (by default -- 
5607 you can change this with the 
5608 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
5609 in the SETUP CONFIGURATION screen): <P>
5610 <DL>
5611  <DT>STATUS:</DT>
5612  <DD> The markings on the left side of the message tell you about its
5613 status.  You may see one or more of the following codes on any given
5614 message:
5615 <UL>
5616   <LI> &quot;D&quot; for Deleted.  You have marked this message for deletion but not
5617          yet eXpunged the folder.
5618   <LI> &quot;N&quot; for New.  You have not looked at the text of the message yet.
5619   <LI> &quot;A&quot; for Answered.  Any time you reply to a message it is considered
5620          to be answered.
5621   <LI> &quot;F&quot; for Forwarded.  Similar to Answered, this is set whenever you
5622          forward a message.
5623   <LI> &quot;+&quot; for direct-to-you.  The &quot;+&quot; indicates that a message was sent
5624         directly to your account, your copy is not part of a cc: or a
5625         mailing list.
5626   <LI> &quot;-&quot; for cc-to-you. The &quot;-&quot; indicates that a
5627         message was sent to you as a cc:. This symbol will only show up if
5628         the feature
5629         &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot; is turned on (which is the default).
5630   <LI> &quot;X&quot; for selected.  You have selected the message by using the
5631         &quot;select&quot; command.  (Some systems may optionally allow selected
5632         messages to be denoted by the index line being displayed in bold
5633         type.)
5634   <LI> &quot;*&quot; for Important.  You have previously used the &quot;Flag&quot; command
5635       to mark this message as &quot;important&quot;.
5636 </UL></DD><P>
5638  <DT>MESSAGE NUMBER:</DT>
5639  <DD>Messages in a folder are numbered, from one through the number
5640 of messages in the folder, to help you know where you are in the folder.
5641 These numbers are always in increasing order, even if you sort the folder
5642 in a different way.</DD><P>
5644  <DT>DATE SENT:</DT>
5645  <DD>The date the message was sent.  By default, messages are
5646 ordered by arrival time, not by date sent.  Most of the time, arrival time
5647 and date sent (effectively departure time) are similar.  Sometimes,
5648 however, the index will appear to be out of order because a message took a
5649 long time in delivery or because the sender is in a different time
5650 zone than you are. This date is just the date from the Date header
5651 field in the message.</DD><P>
5653  <DT>WHO SENT THE MESSAGE:</DT>
5654  <DD>This is usually the name of the sender of the message, taken from
5655 the From header of the message.
5656 If there is no personal name given in that
5657 address, then the email address is used instead.
5658 If the message is from you (or from one of your
5659 <A HREF="h_config_alt_addresses">alternate addresses</A>),
5660 then the recipient's name is shown here instead, with the characters
5661 &quot;To: &quot; inserted before the name.
5662 (The idea of this is that if you sent the mail you would rather see who
5663 the mail was sent to instead of that the mail was from you.
5664 This behavior may be changed by modifying the <!--#echo var="VAR_index-format"--> option mentioned
5665 above.
5666 In particular, use the FROM token or the FROMORTONOTNEWS token
5667 in place of the FROMORTO token.)
5668 In Newsgroups, if you are
5669 the sender and there are no email recipients, the newsgroup name will be
5670 listed after the &quot;To: &quot;. </DD><P>
5672  <DT>SIZE:</DT>
5673  <DD>The number in parentheses is the number of characters in the message.
5674 It may have a suffix of K, M, or G which means the number should be
5675 multiplied by one thousand, one million, or one billion to get the
5676 size of the message.</DD><P>
5678  <DT>SUBJECT:</DT>
5679  <DD>As much of the message's subject line as will fit on the screen.</DD>
5680 </DL>
5682 <P><UL>
5683 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5684 </UL>
5686 &lt;End of help on this topic&gt;
5687 </BODY>
5688 </HTML>
5689 ============= h_mail_view ========================
5690 <HTML>
5691 <HEAD>
5692 <TITLE>MESSAGE TEXT SCREEN</TITLE>
5693 </HEAD>
5694 <BODY>
5695 <H1>MESSAGE TEXT SCREEN</H1>
5696 <!--chtml if pinemode="function_key"-->
5697 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>
5698 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;------------------------------<BR>
5699 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>
5700 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>
5701 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>
5702 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>
5703 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>
5704 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>
5705 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>
5706 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>
5707 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>
5708 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>
5709 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>
5710 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>
5711 <BR>
5712 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;3<BR>
5713 ------------------------------<BR>
5714 F1&nbsp;&nbsp;Show&nbsp;Help&nbsp;Text<BR>
5715 F2&nbsp;&nbsp;Toggle&nbsp;to&nbsp;see&nbsp;more&nbsp;commands<BR>
5716 F3&nbsp;&nbsp;<A HREF="h_view_cmd_hilite">View&nbsp;hilited</A><BR>
5717 F4&nbsp;&nbsp;Select&nbsp;current&nbsp;message<BR>
5718 F5&nbsp;&nbsp;Previous&nbsp;selectable&nbsp;item<BR>
5719 F6&nbsp;&nbsp;Next&nbsp;selectable&nbsp;item<BR>
5720 F7&nbsp;&nbsp;<A HREF="h_common_jump">Jump</A>&nbsp;to&nbsp;message&nbsp;number<BR>
5721 F8&nbsp;&nbsp;<A HREF="h_common_nextnew">Next&nbsp;new</A>&nbsp;message<BR>
5722 F9&nbsp;&nbsp;<A HREF="h_common_hdrmode">Display&nbsp;full&nbsp;headers</A><BR>
5723 F10&nbsp;<A HREF="h_common_bounce">Bounce</A>&nbsp;message<BR>
5724 F11&nbsp;<A HREF="h_common_flag">Flag</A>&nbsp;message<BR>
5725 F12&nbsp;<A HREF="h_common_pipe">Pipe</A>&nbsp;to&nbsp;a&nbsp;Unix&nbsp;command<BR>
5726 Available&nbsp;Commands&nbsp;--&nbsp;Group&nbsp;4<BR>
5727 F5&nbsp;&nbsp;<A HREF="h_common_role">Compose using a role</A><BR>
5728 <!--chtml else-->
5729 Operations&nbsp;on&nbsp;the&nbsp;Current&nbsp;Message<BR>
5730 ---------------------------------<BR>
5731 <BR>
5732 &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>
5733 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>
5734 &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>
5735 &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>
5736 &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>
5737 &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>
5738 &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>
5739 &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>
5740 &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>
5741 <BR>
5742 Navigating&nbsp;the&nbsp;List&nbsp;of&nbsp;Messages&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other&nbsp;Commands<BR>
5743 -------------------------------&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;----------------------------<BR>
5744 &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>
5745 &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>
5746 &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>
5747 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>
5748 <BR>
5749 General&nbsp;Alpine&nbsp;Commands<BR>
5750 ---------------------<BR>
5751 &nbsp;O&nbsp;&nbsp;Show&nbsp;all&nbsp;other&nbsp;available&nbsp;commands<BR>
5752 &nbsp;?&nbsp;&nbsp;Show&nbsp;Help&nbsp;text&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Q&nbsp;Quit&nbsp;Alpine<BR>
5753 &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>
5754 &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>
5755 &nbsp;&nbsp;&nbsp;&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>
5756 <!--chtml endif-->
5759 NOTE:
5760 <OL>
5761  <LI>For help on a particular command, highlight the bold text associated
5762 with it above and hit Return.
5763  <LI>Availability of certain commands depends on <A HREF="h_common_conditional_cmds">feature settings</A>.
5764 </OL>
5766 <H2>Description of the MESSAGE TEXT Screen</H2>
5768 The top line of the view message screen displays status
5769 information about the currently open collection and folder and about the
5770 current message.  It shows the name of the collection in angle brackets
5771 and then the name of the folder.  The line also displays the number
5772 of messages in the folder, the number of the current message and the
5773 percentage of the current message that has been displayed on the screen.
5774 If the message is marked for deletion &quot;DEL&quot; will appear in the upper
5775 right corner.
5776 If the message has been answered (but not deleted) &quot;ANS&quot; will show
5777 in the corner.
5780 NOTE: to rapidly move to the end of a message, hit the
5781 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5782 (or Ctrl-W) key followed
5783 by Ctrl-V.  Similarly,
5784 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
5785 followed by Ctrl-Y will take you to the beginning of
5786 a message.
5788 <H2>Explanation of Alternate Character Sets</H2>
5790 Alpine attempts to stay out of the way so that it won't prevent you from
5791 viewing mail in any character set.  It will simply send the message to
5792 your display device.  If the device is capable of displaying the
5793 message as it was written it will do so.  If not, the display may be
5794 partially or totally incorrect.
5795 If the message contains characters that are not representable in your 
5796 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
5797 variable in your configuration, then a warning message will be printed
5798 to your screen at the beginning of the message display.
5799 It is probably best to use UNIX Alpine in a terminal emulator
5800 capable of displaying UTF-8 characters.
5801 See <A HREF="h_config_char_set">Display Character Set</A> for a little
5802 more information about character set settings.
5804 <P><UL>
5805 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
5806 </UL>
5808 &lt;End of help on this topic&gt;
5809 </BODY>
5810 </HTML>
5811 ======= h_index_cmd_select =======
5812 <HTML>
5813 <HEAD>
5814 <TITLE>Selecting: Select and WhereIs/Select</TITLE>
5815 </HEAD>
5816 <BODY>
5817 <H1>Selecting: Select and WhereIs/Select</H1>
5819 Aggregate operations give you the ability to process a group of messages
5820 at once.  Acting on multiple messages requires two steps: (1) selecting a
5821 set of messages and then; (2) applying a command to that set. The first
5822 part is handled by the select command.  Select allows you to
5823 select messages based on their status (read, answered, etc.), contents,
5824 date, size, or keywords.
5825 You may also select based on one of your Rules or based on threads,
5826 and there are quick options to select a specific message or range of messages,
5827 to select the current message, or to select all messages.
5830 We describe the various selection criteria briefly:
5833 <DL>
5834 <DT>select All</DT>
5835 <DD> Marks all the messages in the folder as selected.
5836 </DD>
5838 <DT>select Cur</DT>
5839 <DD> Selects the currently highlighted message or currently highlighted
5840 set of messages if in a threaded view.
5841 </DD>
5843 <DT>select by Number</DT>
5844 <DD> Select by message number. This may be a comma-separated list instead or
5845 a single entry.
5846 Each element in the list may be either a single message number or a range
5847 of numbers with a dash between the lowest and highest member of the range.
5848 Some examples are 7 to select only message number 7; 2-5 to select messages
5849 2 through 5; and 2-5,7-9,11 to select messages 2, 3, 4, 5, 7, 8, 9, and 11.
5850 The word &quot;end&quot; or the character &quot;$&quot; may be used as a 
5851 substitute for the highest numbered message in the folder, while the
5852 character &quot;.&quot; represents the message number holding the position
5853 of the cursor in the folder.
5854 If in a separate thread index where the numbers refer to threads instead of
5855 to messages, then you will be selecting all of the messages in the
5856 referenced threads instead of selecting by message number.
5857 </DD>
5859 <DT>select by Date</DT>
5860 <DD> Select by either the date stored in the Date headers of each message,
5861 or by the date when the messages arrived.
5862 This does not adjust for different time zones, but just checks to see what
5863 day the message was sent on.
5864 You may type in a date. If you do, the date should be in the form
5865 <P><SAMP><CENTER>DD-Mon-YYYY</CENTER></SAMP><P>
5866 For example,
5867 <P><SAMP><CENTER>24-Nov-2004</CENTER></SAMP><P>
5869 <P><SAMP><CENTER>09-Nov-2004</CENTER></SAMP><P>
5870 If the date you want is close to the current date, it is probably
5871 easier to use the &quot;^P&nbsp;Prev Day&quot; or &quot;^N&nbsp;Next Day&quot; commands to change the default date that
5872 is displayed, instead of typing in the date yourself.
5873 Or, the &quot;^X&nbsp;Cur Msg&quot; command may be used to fill in
5874 the date of the currently highlighted message. 
5876 There are six possible settings that are selected using the
5877 &quot;^W&nbsp;Toggle When&quot; command.
5878 Three of them select messages based on the Date headers.
5879 They are &quot;SENT SINCE&quot;, &quot;SENT BEFORE&quot;,
5880 and &quot;SENT ON&quot;.
5881 SINCE is all messages with the selected date or later.
5882 BEFORE is all messages earlier than the selected date (not including the day
5883 itself).
5884 ON is all messages sent on the selected date.
5885 The other three select messages in the same way but they use the arrival
5886 times of the messages instead of the Date headers included in the messages.
5887 Those three are &quot;ARRIVED SINCE&quot;, &quot;ARRIVED BEFORE&quot;,
5888 and &quot;ARRIVED ON&quot;.
5889 When you save a message from one folder to another the arrival time is
5890 preserved.
5891 </DD>
5893 <DT>select by Text</DT>
5894 <DD> Selects messages based on the message contents.
5895 This allows you to select a set of messages based on whether or not the
5896 message headers or message body contain specified text.
5897 You may look for text in the Subject, the From header,
5898 the To header, or the Cc header.
5899 You may also choose Recipient, which searches for the text in
5900 either the To or the Cc header;
5901 or Participant, which means To or Cc or From.
5902 Besides those specific header searches, you may also search the entire
5903 header and text of the message with &quot;All Text&quot;, or just the
5904 body of the message.
5906 To search for the absence of text, first type the &quot;! Not&quot; command
5907 before typing the specific type of text search.
5908 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
5909 search for all messages that do not contain a particular word in their
5910 Subjects.
5912 If you choose a Subject search, you may use the subject from the current
5913 message by typing the &quot;^X Cur Subject&quot; command.
5914 You may then edit it further if you wish.
5915 For example, you might select the subject of a reply and edit the
5916 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
5917 the original message being replied to.
5918 All of the other header searches allow you to use addresses from the
5919 headers of the current message if you want to.
5920 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
5921 &quot;^W Cur Cc&quot;.
5922 In each case, if there is more than one address, only the first is offered.
5923 </DD>
5925 <DT>select by Status</DT>
5926 <DD> Selects messages based on their status.
5927 You may select all New, Important, Deleted, Answered, Recent, or Unseen
5928 messages.
5929 Or, if you first type the &quot;! Not&quot; command, you get not New,
5930 or not Important, and so on.
5931 If you select Deleted messages, you will get all messages with their
5932 Deleted flag set.
5933 Likewise for Important messages, all messages that you have flagged as
5934 being Important with the
5935 <A HREF="h_common_flag">Flag</A> command.
5936 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
5937 because they try to match what you see on the screen by default.
5938 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
5939 and Unanswered.
5940 If you have looked at the message, or deleted it, or answered it; then it
5941 is not considered &quot;New &quot;.
5942 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
5944 &quot;Answered&quot; is another one that is a little different.
5945 It means that the message has been Answered <EM>and</EM> is not deleted.
5946 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
5947 the opposite of &quot;Answered&quot;!
5948 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
5949 both Unanswered <EM>and</EM> not deleted.
5951 The other two types were added later because the special nature of the
5952 New flag was not what was wanted by all users.
5953 New does match what you see in the index by default, but if you use
5954 the IMAPSTATUS or SHORTIMAPSTATUS token in the
5955 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
5956 be exactly what you want.
5957 &quot;Unseen&quot; simply selects all unseen messages, whether or not
5958 they are deleted or answered, and
5959 &quot;Recent&quot; selects all of the messages that have been added to
5960 the folder since you started this Alpine session.
5961 (That's not technically quite true. If there are multiple mail clients
5962 reading an IMAP mailbox, each message will be marked as Recent in only
5963 one of the client's sessions.)
5964 </DD>
5966 <DT>select by siZe</DT>
5967 <DD> Selects messages based on their size being smaller than or larger
5968 than the size you specify.
5969 The size is the number of bytes.
5970 You may use the suffix &quot;K&quot; or &quot;k&quot; to mean 1,000 times
5971 the number.
5972 For example, 7K is the same as 7000.
5973 The suffix &quot;M&quot; or &quot;m&quot; means 1,000,000 times the number,
5974 and the suffix &quot;G&quot; or &quot;g&quot; means 1,000,000,000 times.
5975 Use the &quot;^W&quot; command to toggle back and forth between Smaller
5976 and Larger.
5977 </DD>
5979 <DT>select by Keyword</DT>
5980 <DD> Selects messages that either have or do not have
5981 (using the &quot;!&nbsp;Not&quot; command)
5982 a particular <A HREF="h_config_keywords">Keyword</A> set.
5983 One way to select a keyword is to use the &quot;^T&nbsp;To&nbsp;List&quot;
5984 command to select one from your list of keywords.
5986 <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.
5987 </DD>
5989 <DT>select by Rule</DT>
5990 <DD> Selects messages that either match or don't match
5991 (using the &quot;!&nbsp;Not&quot; command)
5992 one of the Rules you have defined.
5993 The most likely method of filling in the Rule is to use the
5994 &quot;^T&nbsp;To&nbsp;List&quot;
5995 command to select one of your Rules.
5996 All of the Rules you have defined will be in the list, including
5997 Rules for Searching, Indexcolors, Filtering, Roles, Score setting, and Other.
5998 They may not all make sense for this purpose, but they are all there for
5999 flexibility.
6000 You might find it useful to define some rules solely for the purpose
6001 of being used by the Select command.
6002 There is a special category for such Rules. They are called Search Rules.
6004 Unfortunately, Alpine does not allow all possible Rules to be defined.
6005 For example, there is no logical OR operation.
6006 OR is accomplished in the Filter Rules or the other types of Rules by
6007 simply defining two rules, one that matches the first part of the OR
6008 and another that matches the second part.
6009 But you can't do that here, since you only have a single Rule to work with.
6010 Likewise, the order of Rules is usually important.
6011 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
6012 a message, then that stops the search for a further match.
6013 This means that you may be confused if you try to use Select by Rule to
6014 check your Filter rules because the order is important when filtering but
6015 is not considered here.
6016 </DD>
6018 <DT>select by tHread</DT>
6019 <DD> Selects all of the messages in the current thread.
6020 </DD>
6021 </DL>
6023 After you have an initial selection, the next and subsequent selection
6024 commands modify the selection.
6025 The select command changes. It first gives
6026 you selection &quot;alteration&quot; options: &quot;unselect All&quot;,
6027 &quot;unselect Current&quot;,
6028 &quot;Broaden selection&quot; (implements a logical OR), and
6029 &quot;Narrow selection&quot; (implements a logical AND).
6030 After you choose either Broaden or Narrow, you then choose one of the
6031 selection criteria listed above (by Text or Number or ...).
6032 You may use select as many times as you wish to get the selected set right.
6035 The WhereIs command has a feature (Ctrl-X) to
6036 select all the messages that match the WhereIs search. WhereIs searches
6037 through just the text that appears on the MESSAGE INDEX screen.
6038 This method is often slower than using the select command itself, unless the
6039 line you are looking for is not too far away in the index.
6042 The availability of the aggregate operations commands is determined by the
6043 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6044 Feature-List option in your Alpine
6045 configuration, which defaults to set.
6046 The features
6047 <A HREF="h_config_auto_zoom">&quot;<!--#echo var="FEAT_auto-zoom-after-select"-->&quot;</A>
6049 <A HREF="h_config_select_wo_confirm">&quot;<!--#echo var="FEAT_select-without-confirm"-->&quot;</A>
6050 affect the behavior of the Select command.
6053 &lt;End of help on this topic&gt;
6054 </BODY>
6055 </HTML>
6056 ======= h_select_rule =======
6057 <HTML>
6058 <HEAD>
6059 <TITLE>Select: Rule</TITLE>
6060 </HEAD>
6061 <BODY>
6062 <H1>Select: Rule</H1>
6064 You are selecting messages that either match or don't match
6065 one of the Rules you have defined.
6066 You may either type the nickname of the Rule at the prompt, or use the
6067 &quot;^T&nbsp;To&nbsp;List&quot;
6068 command to select one of your Rules.
6069 All of the Rules you have defined will be in the list, including
6070 Rules for Indexcolors, Filtering, Roles, Score setting, and Other.
6071 They may not all make sense for this purpose, but they are all there for
6072 flexibility.
6073 Rules may be added by using the Setup/Rules screen off of the main Alpine
6074 menu.
6076 Unfortunately, Alpine does not allow all possible Rules to be defined.
6077 For example, there is no logical OR operation.
6078 OR is accomplished in the Filter Rules or the other types of Rules by
6079 simply defining two rules, one that matches the first part of the OR
6080 and another that matches the second part.
6081 But you can't do that here, since you only have a single Rule to work with.
6082 Likewise, the order of Rules is usually important.
6083 For example, if the first Filter Rule (or Indexcolor rule or ...) matches
6084 a message, then that stops the search for a further match.
6085 This means that you may be confused if you try to use Select by Rule to
6086 check your Filter rules because the order is important when filtering but
6087 is not considered here.
6090 &lt;End of help on this topic&gt;
6091 </BODY>
6092 </HTML>
6093 ======= h_select_text =======
6094 <HTML>
6095 <HEAD>
6096 <TITLE>Select: Text</TITLE>
6097 </HEAD>
6098 <BODY>
6099 <H1>Select: Text</H1>
6101 You are selecting messages based on the contents of the message.
6102 This allows you to select a set of messages based on whether or not the
6103 message headers or message body contain specified text.
6104 You may look for text in the Subject, the From header,
6105 the To header, or the Cc header.
6106 You may also choose Recipient, which searches for the text in
6107 either the To or the Cc header;
6108 or Participant, which means either the To header, or the Cc header,
6109 or the From header.
6110 Besides those specific header searches, you may also search the entire
6111 header and text of the message with &quot;All Text&quot;, or just the
6112 body of the message with &quot;Body&quot;.
6114 To search for the absence of text, first type the &quot;!&nbsp;Not&quot; command
6115 before typing the specific type of text search.
6116 For example, you could type &quot;!&quot; followed by &quot;S&quot; to
6117 search for all messages that do not contain a particular word in their
6118 Subjects.
6120 If you choose a Subject search, you may use the subject from the current
6121 message by typing the &quot;^X Cur Subject&quot; command.
6122 You may then edit it further if you wish.
6123 For example, you might select the subject of a reply and edit the
6124 &quot;Re:&nbsp;&quot; off of the front of it in order to search for
6125 the original message being replied to.
6126 All of the other header searches allow you to use addresses from the
6127 headers of the current message if you want to.
6128 You may use the &quot;^T Cur To&quot;, &quot;^R Cur From&quot;, or
6129 &quot;^W Cur Cc&quot;.
6130 In each case, if there is more than one address, only the first is offered.
6133 &lt;End of help on this topic&gt;
6134 </BODY>
6135 </HTML>
6136 ======= h_select_status =======
6137 <HTML>
6138 <HEAD>
6139 <TITLE>Select: Status</TITLE>
6140 </HEAD>
6141 <BODY>
6142 <H1>Select: Status</H1>
6144 You are selecting messages based on the status of the message.
6145 For example, whether or not the message has been marked Deleted or Important,
6146 or whether or not it has been Answered or is New.
6147 If you first type the &quot;!&nbsp;Not&quot; command, you will get the
6148 opposite: not Deleted, not Important, and so on.
6150 If you select Deleted messages, you will get all messages with their
6151 Deleted flag set.
6152 Likewise for Important messages, all messages that you have flagged as
6153 being Important with the
6154 <A HREF="h_common_flag">Flag</A> command.
6155 The &quot;New&quot; and &quot;Answered&quot; choices are a little bit odd
6156 because they try to match what you see on the screen by default.
6157 &quot;New&quot; is a shorthand for messages that are Unseen, Undeleted,
6158 and Unanswered.
6159 If you have looked at the message, or deleted it, or answered it; then it
6160 is not considered &quot;New &quot;.
6161 &quot;!&nbsp;New&quot; is the opposite of &quot;New&quot;.
6163 &quot;Answered&quot; is another one that is a little different.
6164 It means that the message has been Answered <EM>and</EM> is not deleted.
6165 And to make it even more confusing, &quot;!&nbsp;Answered&quot; is not
6166 the opposite of &quot;Answered&quot;!
6167 Instead, &quot;!&nbsp;Answered&quot; stands for messages that are
6168 both Unanswered <EM>and</EM> not deleted.
6170 (The New and Answered options may seem counter-intuitive.
6171 The reason it is done this way is
6172 because, by default, a Deleted message will show up with the &quot;D&quot;
6173 symbol in the MAIL INDEX screen even if it is New or Answered.
6174 The Delete symbol overrides the New and Answered symbols, because you
6175 usually don't care about the message anymore once you've deleted it.
6176 Similarly, you usually only care about whether a message is Answered or
6177 not if it is not Deleted.
6178 Once it is Deleted you've put it out of your mind.)
6180 The other two options were added later because the special nature of the
6181 New flag was not what was wanted by all users.
6182 New does match what you see in the index by default, but if you use
6183 the IMAPSTATUS or SHORTIMAPSTATUS token in the
6184 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; it may not
6185 be exactly what you expect.
6186 &quot;Unseen&quot; simply selects all unseen messages, whether or not
6187 they are deleted or answered, and
6188 &quot;Recent&quot; selects all of the messages that have been added to
6189 the folder since you started this Alpine session.
6190 (That's not technically quite true. If there are multiple mail clients
6191 reading an IMAP mailbox, each message will be marked as Recent in only
6192 one of the client's sessions.
6193 That behavior can be convenienent for some purposes, like filtering, but
6194 it isn't usually what you expect when selecting.)
6197 &lt;End of help on this topic&gt;
6198 </BODY>
6199 </HTML>
6200 ======= h_index_cmd_apply =======
6201 <HTML>
6202 <HEAD>
6203 <TITLE>Apply Command</TITLE>
6204 </HEAD>
6205 <BODY>
6206 <H1>Apply Command</H1>
6208 Apply
6209 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->A<!--chtml endif-->)
6210 is the second step of most aggregate operations.  Apply
6211 becomes active any time there is a defined set of selected messages.  The
6212 following commands can be applied to a selected message set: delete,
6213 undelete, reply, forward,
6214 <!--chtml if pinemode="os_windows"-->
6215 <!--chtml else--> 
6216 pipe,
6217 <!--chtml endif-->
6218 print, take address, save, export, bounce, and flag.
6221 The behavior of some of these commands in an aggregate sense is not easy to
6222 explain.  Try them out to see what they do.
6223 The feature
6224 <A HREF="h_config_auto_unzoom">&quot;<!--#echo var="FEAT_auto-unzoom-after-apply"-->&quot;</A>
6225 affects the behavior of the Apply command, as does the feature
6226 <A HREF="h_config_auto_unselect">&quot;<!--#echo var="FEAT_auto-unselect-after-apply"-->&quot;</A>.
6229 &lt;End of help on this topic&gt;
6230 </BODY>
6231 </HTML>
6232 ======= h_index_cmd_zoom =======
6233 <HTML>
6234 <HEAD>
6235 <TITLE>ZoomMode Command</TITLE>
6236 </HEAD>
6237 <BODY>
6238 <H1>ZoomMode Command</H1>
6240 Another action you might want to take on a set of selected messages is to
6241 zoom in on them.  Like apply, zoom only becomes active when messages have
6242 been selected.
6243 ZoomMode
6244 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->Z<!--chtml endif-->)
6245 is a toggle command that allows you to
6246 zoom-in (and only see the selected messages) and zoom-out (to see all
6247 messages in the folder).  Neither apply nor zoom removes the markings that
6248 define the selected set; you need to use a select command in order
6249 to do that.
6252 &lt;End of help on this topic&gt;
6253 </BODY>
6254 </HTML>
6255 ======= h_index_collapse_expand =======
6256 <HTML>
6257 <HEAD>
6258 <TITLE>Collapse/Expand Command</TITLE>
6259 </HEAD>
6260 <BODY>
6261 <H1>Collapse/Expand Command</H1>
6263 The Collapse/Expand command is only available from the MESSAGE INDEX screen when
6264 the folder is sorted by either Threads or OrderedSubject, and the
6265 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
6266 is set to something other than &quot;none&quot;.
6267 By default, this command collapses or expands the subthread that starts at
6268 the currently highlighted message, if any.
6269 If the subthread is already collapsed, then this command expands it.
6270 If the subthread is expanded, then this command collapses it.
6271 If there are no more messages below the current message in the
6272 thread tree (that is, there are no replies to the current message) then
6273 this command does nothing.
6276 The behavior of this command is affected by the option
6277 <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>.
6278 Normally, this command Collapses or Expands the subthread that
6279 starts at the currently highlighted message.
6280 If the above option is set, then this command Collapses or Expands the
6281 entire current thread instead of just the subthread.
6282 The current thread is simply the top-level thread that contains the
6283 current message.
6286 &lt;End of help on this topic&gt;
6287 </BODY>
6288 </HTML>
6289 ======= h_index_cmd_sort =======
6290 <HTML>
6291 <HEAD>
6292 <TITLE>Sort Command</TITLE>
6293 </HEAD>
6294 <BODY>
6295 <H1>Sort Command</H1>
6297 In Alpine's generic configuration, messages are presented in the order in
6298 which they arrive.  This default can be changed in the SETUP CONFIGURATION 
6299 with the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
6300 You can also re-sort the folder on demand with the sort
6301 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
6302 command.
6303 Your sorting options are:
6305 <UL>
6306  <LI> <A HREF="h_index_sort_arrival">A</A>rrival
6307  <LI> <A HREF="h_index_sort_date">D</A>ate
6308  <LI> <A HREF="h_index_sort_subj">S</A>ubject
6309  <LI> <A HREF="h_index_sort_ordsubj">O</A>rderedSubject
6310  <LI> t<A HREF="h_index_sort_thread">H</A>read
6311  <LI> <A HREF="h_index_sort_from">F</A>rom
6312  <LI> si<A HREF="h_index_sort_size">Z</A>e
6313  <LI> scor<A HREF="h_index_sort_score">E</A>,
6314  <LI> <A HREF="h_index_sort_to">T</A>o
6315  <LI> <A HREF="h_index_sort_cc">C</A>c
6316 </UL>
6319 The Reverse option will toggle the order the index is currently
6320 sorted by, but will not change the relative sort order.
6323 Sorting a folder does not actually rearrange the way the folder is saved,
6324 it just re-arranges how the messages are presented to you.  This means
6325 that Alpine has to do the work of sorting every time you change sort order.
6326 Sometimes, especially with PC-Alpine or with large folders, this could take
6327 a while.
6330 &lt;End of help on this topic&gt;
6331 </BODY>
6332 </HTML>
6333 ======= h_index_sort_default =======
6334 <HTML>
6335 <HEAD>
6336 <TITLE>SORT OPTION: Default</TITLE>
6337 </HEAD>
6338 <BODY>
6339 <H1>SORT OPTION: Default</H1>
6341 The <EM>Default</EM> sort option just means to use the default sort order
6342 set in the
6343 <li><a href="h_config_sort_key"><!--#echo var="VAR_sort-key"--></a>
6344 option in Setup/Config.
6347 &lt;End of help on this topic&gt;
6348 </BODY>
6349 </HTML>
6350 ======= h_index_sort_arrival =======
6351 <HTML>
6352 <HEAD>
6353 <TITLE>SORT OPTION: Arrival</TITLE>
6354 </HEAD>
6355 <BODY>
6356 <H1>SORT OPTION: Arrival</H1>
6358 The <EM>Arrival</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6359 in the order that they exist in the folder.  This is usually the same as the
6360 order in which they arrived.  This option is comparable to not sorting
6361 the messages at all.
6364 &lt;End of help on this topic&gt;
6365 </BODY>
6366 </HTML>
6367 ======= h_index_sort_date =======
6368 <HTML>
6369 <HEAD>
6370 <TITLE>SORT OPTION: Date</TITLE>
6371 </HEAD>
6372 <BODY>
6373 <H1>SORT OPTION: Date</H1>
6375 The <EM>Date</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6376 according to the date and time they were
6377 sent.
6380 On a folder like INBOX, sorting by &quot;Date&quot; should be almost
6381 identical to sorting by &quot;Arrival&quot;.
6384 &lt;End of help on this topic&gt;
6385 </BODY>
6386 </HTML>
6387 ======= h_index_sort_subj =======
6388 <HTML>
6389 <HEAD>
6390 <TITLE>SORT OPTION: Subject</TITLE>
6391 </HEAD>
6392 <BODY>
6393 <H1>SORT OPTION: Subject</H1>
6395 The <EM>Subject</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6396 by subject. 
6399 Messages with the same subject are
6400 first grouped together, and then the groups of like-subject messages
6401 are arranged alphabetically.
6404 Alpine ignores leading &quot;Re:&quot; and
6405 &quot;re:&quot; and trailing &quot;(fwd)&quot; when determining the
6406 likeness and alphabetical order of subject lines.
6409 &lt;End of help on this topic&gt;
6410 </BODY>
6411 </HTML>
6412 ======= h_index_sort_ordsubj =======
6413 <HTML>
6414 <HEAD>
6415 <TITLE>SORT OPTION: OrderedSubject</TITLE>
6416 </HEAD>
6417 <BODY>
6418 <H1>SORT OPTION: OrderedSubject</H1>
6420 The <EM>OrderedSubject</EM> sort option arranges messages in the
6421 MESSAGE&nbsp;INDEX by grouping all messages with the same subject
6422 together, similar to sort by <A HREF="h_index_sort_subj">S</A>ubject.
6425 However, <EM>OrderedSubj</EM> then arranges the groups of like-subject
6426 messages by the date of the oldest message in the group.
6429 This sort method provides for pseudo threading of conversations within
6430 a folder.
6431 You may want to try sorting by Thread instead.
6434 &lt;End of help on this topic&gt;
6435 </BODY>
6436 </HTML>
6437 ======= h_index_sort_thread =======
6438 <HTML>
6439 <HEAD>
6440 <TITLE>SORT OPTION: Thread</TITLE>
6441 </HEAD>
6442 <BODY>
6443 <H1>SORT OPTION: Thread</H1>
6445 The <EM>Thread</EM> sort option arranges messages in the
6446 MESSAGE&nbsp;INDEX by grouping all messages that indicate
6447 they are part of a conversation (discussion thread) taking
6448 place within a mailbox or newsgroup.  This indication is
6449 based on information in the message's header -- specifically
6450 its <tt>References:</tt>, <tt>Message-ID:</tt>, and <tt>Subject:</tt> fields.
6453 &lt;End of help on this topic&gt;
6454 </BODY>
6455 </HTML>
6456 ======= h_index_sort_from =======
6457 <HTML>
6458 <HEAD>
6459 <TITLE>SORT OPTION: From</TITLE>
6460 </HEAD>
6461 <BODY>
6462 <H1>SORT OPTION: From</H1>
6464 The <EM>From</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6465 by the name of the author of the message.
6468 Messages with the same author are grouped together. Groups of
6469 messages are then put into alphabetical order according to message
6470 author.
6473 &lt;End of help on this topic&gt;
6474 </BODY>
6475 </HTML>
6476 ======= h_index_sort_size =======
6477 <HTML>
6478 <HEAD>
6479 <TITLE>SORT OPTION: Size</TITLE>
6480 </HEAD>
6481 <BODY>
6482 <H1>SORT OPTION: Size</H1>
6484 The <EM>Size</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6485 by their relative sizes.
6488 &lt;End of help on this topic&gt;
6489 </BODY>
6490 </HTML>
6491 ======= h_index_sort_score =======
6492 <HTML>
6493 <HEAD>
6494 <TITLE>SORT OPTION: Score</TITLE>
6495 </HEAD>
6496 <BODY>
6497 <H1>SORT OPTION: Score</H1>
6499 The <EM>Score</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX
6500 by their scores.
6503 Messages with the same score are sorted in arrival order.
6504 Scores are something you create using the
6505 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
6508 &lt;End of help on this topic&gt;
6509 </BODY>
6510 </HTML>
6511 ======= h_index_sort_to =======
6512 <HTML>
6513 <HEAD>
6514 <TITLE>SORT OPTION: To</TITLE>
6515 </HEAD>
6516 <BODY>
6517 <H1>SORT OPTION: To</H1>
6519 The <EM>To</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX 
6520 by the names of the recipients of the message.
6523 Messages with the same recipients are grouped together. Groups of
6524 messages are then put into alphabetical order according to message
6525 recipients.
6528 &lt;End of help on this topic&gt;
6529 </BODY>
6530 </HTML>
6531 ======= h_index_sort_cc =======
6532 <HTML>
6533 <HEAD>
6534 <TITLE>SORT OPTION: Cc</TITLE>
6535 </HEAD>
6536 <BODY>
6537 <H1>SORT OPTION: Cc</H1>
6539 The <EM>Cc</EM> sort option arranges messages in the MESSAGE&nbsp;INDEX by
6540 the names of the carbon copy addresses of the message.
6543 &lt;End of help on this topic&gt;
6544 </BODY>
6545 </HTML>
6546 ======= h_index_cmd_whereis =======
6547 <HTML>
6548 <HEAD>
6549 <TITLE>WhereIs Command</TITLE>
6550 </HEAD>
6551 <BODY>
6552 <H1>WhereIs Command</H1>
6554 The WhereIs
6555 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6556 command lets you search the MESSAGE INDEX for a word.
6557 It scans through whatever you see, usually the name of the author
6558 and the Subject line.
6559 WhereIs has special subcommands to let you find the beginning of the
6560 index (Ctrl-Y -- first message)
6561 or the end of the index (Ctrl-V -- last message).
6563 Note that WhereIs only searches through the visible text on the screen.
6564 For example, if only part of the Subject of a message is shown because it
6565 is long, then only the visible portion of the Subject is searched.
6566 Also note that WhereIs does not &quot;see&quot; the 
6567 &quot;X&quot; in column one of Index entries for selected messages
6568 so it can't be used to search for
6569 selected messages (use &quot;Zoom&quot; instead).
6571 If the feature
6572 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
6573 is turned on,
6574 WhereIs can also be used as a quick way to select messages that match the
6575 string being searched for.
6576 Instead of typing carriage return to search for the next match, type
6577 Ctrl-X to select all matches.
6578 Once again, this only selects matches that are (or would be if the right
6579 index line was on the screen) visible.
6580 Truncated From lines or Subjects will cause matches to be missed.
6581 Although WhereIs is sometimes convenient for quick matching, the Select
6582 command is usually more powerful and usually faster.
6585 &lt;End of help on this topic&gt;
6586 </BODY>
6587 </HTML>
6588 ======= h_view_cmd_whereis =======
6589 <HTML>
6590 <HEAD>
6591 <TITLE>WhereIs Command</TITLE>
6592 </HEAD>
6593 <BODY>
6594 <H1>WhereIs Command</H1>
6596 The WhereIs
6597 (<!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->)
6598 command does a &quot;find in current message&quot; operation.  You
6599 type in text and Alpine will try to find it in the message you are
6600 reading.  WhereIs also has subcommands to jump to the beginning (Ctrl-Y)
6601 or end (Ctrl-V) of the message.
6602 That is, to rapidly move to the end of a message, hit the 
6603 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6604 (or Ctrl-W) key followed
6605 by Ctrl-V.  Similarly,
6606 <!--chtml if pinemode="function_key"-->F8<!--chtml else-->W<!--chtml endif-->
6607 followed by Ctrl-Y will take you to the beginning of a message.
6610 &lt;End of help on this topic&gt;
6611 </BODY>
6612 </HTML>
6613 ======= h_view_cmd_hilite =======
6614 <HTML>
6615 <HEAD>
6616 <TITLE>View Hilite and Next item/Previous item</TITLE>
6617 </HEAD>
6618 <BODY>
6619 <H1>View Hilite and Next item/Previous item</H1>
6621 Sometimes messages may be in the form of formatted HTML text
6622 or they may contain URLs or Web server hostnames.
6623 When any of the features
6624 <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>,
6625 <A HREF="h_config_enable_view_web_host">&quot;<!--#echo var="FEAT_enable-msg-view-web-hostnames"-->&quot;</A>,
6626 <A HREF="h_config_enable_view_attach">&quot;<!--#echo var="FEAT_enable-msg-view-attachments"-->&quot;</A>,
6628 <A HREF="h_config_enable_view_addresses">&quot;<!--#echo var="FEAT_enable-msg-view-addresses"-->&quot;</A>
6629 are enabled, Alpine will represent such selectable items in the text
6630 in bold typeface.  One of the selectable items will be displayed in
6631 inverse video (highlighted).  This is the &quot;currently selected&quot; item.
6632 Press the Return key to view the currently selected item.
6635 The Up and Down Arrows keys can be used to change the selected item
6636 (also see the feature
6637 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
6638 If there are no selectable items in the direction of the arrow you
6639 pressed, Alpine will scroll the display in that direction until one
6640 becomes visible.  To &quot;jump&quot; forwards/backwards among selectable 
6641 items in the message text, use the Previous and Next item commands,
6642 <!--chtml if pinemode="function_key"-->F5 and F6
6643 <!--chtml else-->^B and ^F<!--chtml endif-->.
6646 &lt;End of help on this topic&gt;
6647 </BODY>
6648 </HTML>
6649 ======= h_view_cmd_viewattch =======
6650 <HTML>
6651 <HEAD>
6652 <TITLE>ViewAttch Command</TITLE>
6653 </HEAD>
6654 <BODY>
6655 <H1>ViewAttch Command</H1>
6658 The View/Save Attachment
6659 (<!--chtml if pinemode="function_key"-->F4<!--chtml else-->V<!--chtml endif-->)
6660 command allows you to handle MIME attachments to a message you have
6661 received.  Alpine shows you a list of the message attachments -- you just
6662 choose the attachment you want.  You may either view or save the
6663 selected attachment.
6666 Because many attachments require external programs for display, there
6667 is some system configuration that has to happen before you can
6668 actually display attachments.  Hopefully much of that will have been
6669 done already by your system administrator.  MIME configuration is
6670 handled with the &quot;mailcap&quot; configuration file.  (See the section 
6671 on configuration in the
6672 <A HREF="h_news">release notes</A> for more information.)
6675 &lt;End of help on this topic&gt;
6676 </BODY>
6677 </HTML>
6678 ======= h_index_cmd_expunge =======
6679 <HTML>
6680 <HEAD>
6681 <TITLE>Expunge/Exclude Command</TITLE>
6682 </HEAD>
6683 <BODY>
6684 <H1>Expunge/Exclude Command</H1>
6686 Expunge/Exclude
6687 (<!--chtml if pinemode="function_key"-->F3<!--chtml else-->X<!--chtml endif-->)
6688 is the command Alpine uses to actually remove all messages
6689 marked for deletion.  With regular email files, expunge literally deletes
6690 the text from the current folder.  With newsgroups or shared mailboxes,
6691 you don't have permission to actually remove the message, so it is an
6692 exclude -- Alpine removes the message from your view of the folder even
6693 though it is not technically gone.
6695 <P> A selective expunge command is available in IMAP folders that support 
6696 the UID EXPUNGE extension in <A 
6697 HREF="http://tools.ietf.org/html/rfc4315">RFC 4315</A> as well as for all 
6698 other folders (local folders in all formats, POP3 inbox, and newsgroups) 
6699 as a subcommand of the apply command. If some selected messages are marked 
6700 deleted, then the apply command will offer the eXpunge command, which when 
6701 executed will only expunge those messages that are selected and deleted.
6703 <P> 
6704 Observe that the expunge command (when not used from the apply command) 
6705 will expunge/exclude all deleted messages from the folder, and so all 
6706 messages marked deleted will be expunged, regardless of if they are 
6707 selected or not. In other words, there is no protection against 
6708 potentially expunging more messages than only those that have been 
6709 selected and deleted.
6712 The configuration features
6713 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
6715 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>
6716 affect the behavior of the Expunge command.
6719 &lt;End of help on this topic&gt;
6720 </BODY>
6721 </HTML>
6722 ======= h_common_compose =======
6723 <HTML>
6724 <HEAD>
6725 <TITLE>Compose Command</TITLE>
6726 </HEAD>
6727 <BODY>
6728 <H1>Compose Command</H1>
6730 The Compose command takes you into the Alpine message composer where you
6731 can start a new message for sending.  This is where you type in the
6732 message's text and specify its recipient list (the &quot;To:&quot;
6733 address), where copies should be directed (e.g., &quot;Fcc&quot;,
6734 &quot;Cc:&quot; or &quot;Bcc:&quot;), and which files, if any, should
6735 be attached to the message.
6738 When you type this command, Alpine will also automatically check for any
6739 interrupted (i.e., a message that was being composed when your modem
6740 or network connection was broken) or previously postponed messages and
6741 offer you a chance to continue working on those.
6744 <UL>   
6745 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6746 </UL><P>
6747 &lt;End of help on this topic&gt;
6748 </BODY>
6749 </HTML>
6750 ======= h_common_index =======
6751 <HTML>
6752 <HEAD>
6753 <TITLE>Message Index Command</TITLE>
6754 </HEAD>
6755 <BODY>
6756 <H1>Message Index Command</H1>
6758 The Index command takes you to the MESSAGE INDEX screen that displays a
6759 summary caption for each message in the currently-open folder. One
6760 message will be highlighted; this is the &quot;Current&quot; message.
6761 The message commands available from this screen (e.g. View, Reply,
6762 Forward, Delete, Print, Save, etc) apply to the current message.
6765 &lt;End of help on this topic&gt;
6766 </BODY>
6767 </HTML>
6768 ======= h_common_folders =======
6769 <HTML>
6770 <HEAD>
6771 <TITLE>Folder List Command</TITLE>
6772 </HEAD>
6773 <BODY>
6774 <H1>Folder List Command</H1>
6776 This Folder List command takes you to the FOLDER LIST screen that displays
6777 the names of all your message folders and allows you to view, rename,
6778 delete, and add folders.  You can open (view) a different folder than the
6779 one currently open by highlighting the desired one (using the arrow keys
6780 or their control-key equivalents) and pressing RETURN.
6783 If you have multiple folder collections defined (see the Help text for
6784 the FOLDER LIST screen to learn more about Collections), you may need
6785 to press Return to expand the collection and display all of the
6786 folders in it.
6789 &lt;End of help on this topic&gt;
6790 </BODY>
6791 </HTML>
6792 ======= h_main_addrbook =======
6793 <HTML>
6794 <HEAD>
6795 <TITLE>Address Book Command</TITLE>
6796 </HEAD>
6797 <BODY>
6798 <H1>Address Book Command</H1>
6800 This command, available only from the MAIN MENU, takes you
6801 to the ADDRESS BOOK management screen.  From here, your personal address
6802 book(s) may be updated.
6805 &lt;End of help on this topic&gt;
6806 </BODY>
6807 </HTML>
6808 ======= h_main_setup =======
6809 <HTML>
6810 <HEAD>
6811 <TITLE>Setup Command</TITLE>
6812 </HEAD>
6813 <BODY>
6814 <H1>Setup Command</H1>
6816 The Setup command, available only from the MAIN MENU, prompts you for
6817 one of several configuration screens, including the SETUP CONFIGURATION 
6818 screen, by which you may activate optional Alpine features.
6821 &lt;End of help on this topic&gt;
6822 </BODY>
6823 </HTML>
6824 ======= h_main_release_notes =======
6825 <HTML>
6826 <HEAD>
6827 <TITLE>Release Notes Command</TITLE>
6828 </HEAD>
6829 <BODY>
6830 <H1>Release Notes Command</H1>
6832 This command displays information about Alpine <!--#echo var="ALPINE_VERSION"-->,
6833 as well as pointers to further information such as history and legal notes.
6836 &lt;End of help on this topic&gt;
6837 </BODY>
6838 </HTML>
6839 ======= h_main_kblock =======
6840 <HTML>
6841 <HEAD>
6842 <TITLE>Keyboard Lock Command</TITLE>
6843 </HEAD>
6844 <BODY>
6845 <H1>Keyboard Lock Command</H1>
6847 This command allows your Alpine session to be protected
6848 during a temporary absence from your terminal.
6851 &lt;End of help on this topic&gt;
6852 </BODY>
6853 </HTML>
6854 ======= h_main_journal =======
6855 <HTML>
6856 <HEAD>
6857 <TITLE>Journal Command</TITLE>
6858 </HEAD>
6859 <BODY>
6860 <H1>Journal Command</H1>
6862 This command displays a list of all the status messages Alpine has
6863 displayed (on the third line from the bottom of the screen). This may
6864 be useful if a message disappeared before you had a chance to read it.
6867 &lt;End of help on this topic&gt;
6868 </BODY>
6869 </HTML>
6870 ======= h_common_role =======
6871 <HTML>
6872 <HEAD>
6873 <TITLE>Role Command</TITLE>
6874 </HEAD>
6875 <BODY>
6876 <H1>Role Command</H1>
6878 The Role command is similar to the Compose command except that it starts
6879 off by letting you select a <A HREF="h_rules_roles">role</A>
6880 to be used for the composition.
6881 You may set up alternate roles by using Setup/Rules/Roles.
6884 &lt;End of help on this topic&gt;
6885 </BODY>
6886 </HTML>
6887 ======= h_common_conditional_cmds =======
6888 <HTML>
6889 <HEAD>
6890 <TITLE>Conditional Commands</TITLE>
6891 </HEAD>
6892 <BODY>
6893 <H1>Conditional Commands</H1>
6895 The presence or absence of certain commands, particularly in the
6896 MESSAGE INDEX and MESSAGE TEXT screens, is determined by
6897 whether or not specific features are set in your Alpine configuration.  
6898 (You can access the SETUP CONFIGURATION screen, where they are found, from 
6899 Alpine's MAIN MENU.)  To see if a desired command's availability is
6900 conditioned on a feature setting, see the command's help text (highlight
6901 the phrase associated with the command and hit Return).
6904 Also note that some
6905 commands may be administratively disabled by your system manager;
6906 if they don't work, please check with your local help desk.
6909 <UL>   
6910 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
6911 </UL><P>
6912 &lt;End of help on this topic&gt;
6913 </BODY>
6914 </HTML>
6915 ======= h_common_pipe =======
6916 <HTML>
6917 <HEAD>
6918 <TITLE>Pipe Command</TITLE>
6919 </HEAD>
6920 <BODY>
6921 <H1>Pipe Command</H1>
6923 Pipe
6924 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->|<!--chtml endif-->)
6925 allows you to send a message to a specified Unix command for external
6926 processing.
6927 This command's availability is controlled by the
6928 <A HREF="h_config_enable_pipe">&quot;<!--#echo var="FEAT_enable-unix-pipe-cmd"-->&quot;</A> 
6929 feature.
6930 By default, the processed text of the message is sent to the command
6931 you specify and the output is captured by Alpine and shown to you.
6932 When you run the pipe command, there are some sub-commands which may be
6933 used to alter this behavior.
6934 These sub-commands are described <A HREF="h_pipe_command">here</A>.
6937 &lt;End of help on this topic&gt;
6938 </BODY>
6939 </HTML>
6940 ======= h_common_goto =======
6941 <HTML>
6942 <HEAD>
6943 <TITLE>Goto Command</TITLE>
6944 </HEAD>
6945 <BODY>
6946 <H1>Goto Command</H1>
6948 Goto
6949 (<!--chtml if pinemode="function_key"-->F6<!--chtml else-->G<!--chtml endif-->)
6950 is the command that lets you bypass Alpine's folder selection screens
6951 and jump directly to a new folder.  You can select any folder in the
6952 world: one in your current collection, one in a different collection or
6953 one in a collection you've never even used before.
6956 Alpine will help you as much as possible to narrow in on the folder you want.
6957 However, if the folder is outside of your defined collections, you are
6958 going to have to enter the exact folder location using the correct
6959 <A HREF="h_valid_folder_names">syntax</A>
6960 for a remote folder and/or fully-qualified path name.
6963 &lt;End of help on this topic&gt;
6964 </BODY>
6965 </HTML>
6966 ======= h_common_nextnew =======
6967 <HTML>
6968 <HEAD>
6969 <TITLE>NextNew Command</TITLE>
6970 </HEAD>
6971 <BODY>
6972 <H1>NextNew Command</H1>
6974 When you press the TAB key, Alpine advances to the next
6975 &quot;interesting&quot; message.
6976 This will be the next message you have not seen before, or the next message
6977 you have flagged Important, whichever comes first.
6978 Unread messages that have been deleted are not considered interesting.
6979 (A note about reading news. Alpine expects you to &quot;Delete&quot; news
6980 articles after you have read them if you want to remove them from future
6981 consideration. See <A HREF="h_mainhelp_readingnews">Reading News</A> for
6982 more information.)
6985 The NextNew command is affected by the feature
6986 <A HREF="h_config_tab_new_only">&quot;<!--#echo var="FEAT_tab-visits-next-new-message-only"-->&quot;</A>,
6987 which causes Alpine to only consider Unread messages interesting, not messages
6988 flagged Important.
6991 This command behaves a little differently when it finds there are no more
6992 interesting messages left in the current folder.
6993 If the current folder is one of your Incoming Message Folders
6994 (<A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>)
6995 or it is a newsgroup, then Alpine will try to find the next folder or
6996 newsgroup that contains <EM>Recent</EM> messages and will ask you
6997 if you want to open that folder.
6998 This behavior may be modified by using the
6999 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
7000 feature that causes Alpine to look for Unseen messages instead of Recent
7001 messages.
7002 The NextNew command's behavior is also affected by the configuration features
7003 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A>,
7005 <A HREF="h_config_tab_no_prompt">&quot;<!--#echo var="FEAT_continue-tab-without-confirm"-->&quot;</A>.
7008 &lt;End of help on this topic&gt;
7009 </BODY>
7010 </HTML>
7011 ======= h_common_jump =======
7012 <HTML>
7013 <HEAD>
7014 <TITLE>Jump Command</TITLE>
7015 </HEAD>
7016 <BODY>
7017 <H1>Jump Command</H1>
7019 This is Alpine's way of allowing you to go straight to a specific message.
7020 Just press &quot;J&quot; and then enter the message number.  By default, Alpine is also
7021 configured such that typing in any number automatically jumps you to that
7022 message 
7023 (<A HREF="h_config_enable_jump">&quot;<!--#echo var="FEAT_enable-jump-shortcut"-->&quot;</A> 
7024 in the SETUP CONFIGURATION).
7027 &lt;End of help on this topic&gt;
7028 </BODY>
7029 </HTML>
7030 ======= h_common_flag =======
7031 <HTML>
7032 <HEAD>
7033 <TITLE>Flag Command</TITLE>
7034 </HEAD>
7035 <BODY>
7036 <H1>Flag Command</H1>
7038 Flag
7039 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
7040 is the command that allows users to manipulate the status flags that
7041 appear on the left side of the MESSAGE INDEX screen.  The most common
7042 use of this is to mark a message as important. This is something of a
7043 note to yourself to get back to that message.  You may also use the
7044 flag command to set (or unset) the flags that indicate that a message
7045 is new, answered, deleted, or forwarded.<P>
7047 Provided the mail server supports it,
7048 you may also manipulate user-defined keywords
7049 for a message using the flag command.
7050 These keywords will be available if you use the Flag Details screen that you
7051 can get to after typing the
7052 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
7053 command.
7054 They will be listed after the Important, New, Answered, Deleted , and Forwarded flags,
7055 which are always present.
7056 You may add new keywords by using the Add KW command from the Flag Details screen
7057 or by defining them in the <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
7059 The availability of the flag command is determined by the
7060 <A HREF="h_config_enable_flag">&quot;<!--#echo var="FEAT_enable-flag-cmd"-->&quot;</A>
7061 feature in your Alpine configuration. Also, it is possible that Flag could be
7062 administratively disabled by your system manager; if it doesn't work,
7063 please check with your local help desk before reporting a bug.
7064 The behavior of the flag command may be modified by the
7065 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
7066 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
7069 &lt;End of help on this topic&gt;
7070 </BODY>
7071 </HTML>
7072 ======= h_common_hdrmode =======
7073 <HTML>
7074 <HEAD>
7075 <TITLE>HdrMode Command</TITLE>
7076 </HEAD>
7077 <BODY>
7078 <H1>HdrMode Command</H1>
7080 Every email message comes with some header lines that you normally
7081 don't see (and don't want to see).
7082 These include anywhere from 3-20 lines (or more) added by the
7083 Internet mail transport system to record the route your message took,
7084 for diagnostic purposes.
7085 These are normally of no import and simply
7086 add clutter, so Alpine suppresses them in the MESSAGE TEXT display.
7087 This also includes other non-standard headers the message may contain.
7088 If you want to see these headers, there is a way to reveal them.
7091 The Header Mode
7092 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
7093 command is a toggle that controls Alpine's handling of these header
7094 lines.  Normally, full headers is &quot;off&quot; and you only see a
7095 few lines about who a message is to and who it is from.  When you
7096 press
7097 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->H<!--chtml endif-->)
7098 to turn full headers on, Alpine will show you
7099 the normal header lines as well as delivery headers, comment headers,
7100 MIME headers, and any other headers present.
7103 Several different Alpine commands honor the header mode -- it affects how
7104 messages are displayed, how they appear in forward and reply email, how
7105 they are printed, how they are saved, and how they are exported.
7106 <!--chtml if pinemode="os_windows"-->
7107 <!--chtml else--> 
7108 The pipe command is also affected.
7109 <!--chtml endif-->
7112 The presence or absence of the Header Mode command is determined by the
7113 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
7114 Feature-List option in your Alpine configuration.
7117 If you have also turned on the
7118 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
7119 option then the HdrMode command actually rotates through three states
7120 instead of just two.
7121 The first is the normal view with long quotes suppressed.
7122 The second is the normal view but with the long quotes included.
7123 The last enables the display of all headers in the message.
7124 When using Export, Pipe, Print, Forward, or Reply the quotes are
7125 never suppressed, so the first two states are identical.
7128 The behavior of the Header Mode command may be altered slightly by
7129 turning on the
7130 <A HREF="h_config_quell_full_hdr_reset">&quot;<!--#echo var="FEAT_quell-full-header-auto-reset"-->&quot;</A>
7131 Feature-List option in your Alpine configuration.
7132 In particular, it will cause the Header Mode to be persistent when moving
7133 from message to message instead of resetting to the default for each message.
7136 <UL>   
7137 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
7138 </UL><P>
7139 &lt;End of help on this topic&gt;
7140 </BODY>
7141 </HTML>
7142 ======= h_common_print =======
7143 <HTML>
7144 <HEAD>
7145 <TITLE>Print Command</TITLE>
7146 </HEAD>
7147 <BODY>
7148 <H1>Print Command</H1>
7150 The Print
7151 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->%<!--chtml endif-->)
7152 command allows you to print a copy of a message.
7153 There are many SETUP CONFIGURATION features that affect the
7154 Print command, including
7155 <A HREF="h_config_enable_y_print">&quot;<!--#echo var="FEAT_enable-print-via-y-command"-->&quot;</A>,
7156 <A HREF="h_config_print_index">&quot;<!--#echo var="FEAT_print-index-enabled"-->&quot;</A>,
7157 <A HREF="h_config_custom_print">&quot;<!--#echo var="FEAT_print-offers-custom-cmd-prompt"-->&quot;</A>,
7158 <A HREF="h_config_print_from">&quot;<!--#echo var="FEAT_print-includes-from-line"-->&quot;</A>, and
7159 <A HREF="h_config_ff_between_msgs">&quot;<!--#echo var="FEAT_print-formfeed-between-messages"-->&quot;</A>.
7160 You set up for printing by using the Printer option of the Setup command
7161 on the MAIN MENU.
7165 &lt;End of help on this topic&gt;
7166 </BODY>
7167 </HTML>
7168 ======= h_common_take =======
7169 <HTML>
7170 <HEAD>
7171 <TITLE>TakeAddr Command</TITLE>
7172 </HEAD>
7173 <BODY>
7174 <H1>TakeAddr Command</H1>
7177 With the Take Address
7178 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->T<!--chtml endif-->)
7179 command, you can extract email addresses from an
7180 incoming message and save them in an address book.  This is an easy way
7181 to add to your address book and avoid having to remember the email
7182 addresses of the people who write to you.
7185 If the message is just to you individually, then you will only need to
7186 provide a nickname.  If the message contains more than one email address,
7187 then you will see an address
7188 selection screen that lets you choose the address you want to save into
7189 your address book, or lets you choose several of them add to a
7190 personal distribution list.
7193 Once you've added an entry to your address book, you can use it from the
7194 message composer by typing the nickname of the entry into one of the
7195 header fields (for example, into the To: field), or you can use ^T from
7196 the header field to select the entry from your address book.
7199 If the configuration feature
7200 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
7201 is set, the behavior of the Take command is altered slightly.
7204 &lt;End of help on this topic&gt;
7205 </BODY>
7206 </HTML>
7207 ======= h_ge_import =======
7208 <HTML>
7209 <HEAD>
7210 <TITLE>Import File Selection</TITLE>
7211 </HEAD>
7212 <BODY>
7213 <H1>Import File Selection</H1>
7215 You are importing a file that you previously
7216 exported from Alpine.
7217 You are now being asked for the name of that file.
7218 The easiest way to select a file is probably with the &quot;^T&quot;
7219 &quot;To Files&quot; command.
7220 Alternatively, you may type in a file name.
7221 It may be an absolute pathname.
7222 Otherwise, it is a file located in your home directory
7223 or current working directory
7224 <!--chtml if pinemode="running"-->
7225 (which, at least for your current Alpine &quot;session,&quot; 
7226 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7227 <!--chtml endif-->, depending on the
7228 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7229 In any case, you finish by typing a carriage return to accept the
7230 file name that is displayed.
7231 When the feature
7232 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7233 is turned on you may use TAB to complete partially typed in names.
7235 You may cancel the import operation by typing &quot;^C&quot; after exiting
7236 this help.
7238 &lt;End of help on this topic&gt;
7239 </BODY>
7240 </HTML>
7241 ======= h_ge_allparts =======
7242 <HTML>
7243 <HEAD>
7244 <TITLE>Export Message File Selection</TITLE>
7245 </HEAD>
7246 <BODY>
7247 <H1>Export Message File Selection</H1>
7249 You are Exporting a message from an Alpine mail folder
7250 to a plain text file.
7251 You also have the option of exporting all of the attachments associated
7252 with the message.
7253 You are now being asked for the name of the file to export <EM>to</EM>.
7254 The easiest way to select a file is probably with the &quot;^T&quot;
7255 &quot;To Files&quot; subcommand.
7256 After returning from that subcommand you will still be allowed to
7257 edit the name you have selected.
7258 Alternatively, you may type in a file name.
7259 It may be an absolute pathname.
7260 Otherwise, it is a file located in your home directory
7261 or current working directory
7262 <!--chtml if pinemode="running"-->
7263 (which, at least for your current Alpine &quot;session,&quot; 
7264 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7265 <!--chtml endif-->, depending on the
7266 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7267 In any case, you finish by typing a carriage return to accept the
7268 file name that is displayed.
7269 When the feature
7270 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7271 is turned on you may use TAB to complete partially typed in names.
7273 The message you are exporting appears to have some attachments.
7274 If you wish to save <EM>all</EM> of the attachments at once,
7275 type the &quot;^P&quot; &quot;AllParts&quot; command to turn on
7276 saving of the attachments.
7277 You may turn it back off by typing &quot;^P&quot; again, which will now
7278 be labeled &quot;NoAllParts&quot; instead.
7279 If you want to save the parts the command displayed should be
7280 &quot;NoAllParts&quot;!
7281 When you choose to save attachments like this, the attachments will be saved
7282 in a newly created directory.
7283 That directory will have the same name as the file name you choose here,
7284 with the letters &quot;.d&quot; appended.
7285 If that directory already exists, then the letters &quot;.d_1&quot; will
7286 be tried, then &quot;.d_2&quot; and so on until a name that doesn't exist
7287 is found.
7288 For example, if you select the file name
7290 <CENTER><SAMP>filename</SAMP></CENTER>
7292 to export the message to, then the directory used for the attachments will be
7294 <CENTER><SAMP>filename.d</SAMP></CENTER>
7296 or perhaps
7298 <CENTER><SAMP>filename.d_&lt;n&gt;</SAMP></CENTER>
7300 The attachments will then be put into files inside that directory.
7301 The names for the attachment files will be derived from the attachments
7302 if possible.
7303 This is done in the same way as the default values are derived if you
7304 save them one at a time.
7305 (The &quot;filename&quot; parameter from the Content-Disposition header
7306 is the first choice. If that doesn't exist, the &quot;name&quot;
7307 parameter from the Content-Type header is used.)
7308 If a name for a particular attachment is not available, then the
7309 part number of the attachment is used, with the characters &quot;part_&quot;
7310 prepended.
7311 An example of that would be
7313 <CENTER><SAMP>part_2.1</SAMP></CENTER>
7315 If you want to save only some of the attachments or if you want more control
7316 over the directory and filename where an attachment is saved you may
7317 cancel out of this command and View the attachment list.
7318 From there you can save each attachment individually.
7320 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7321 this help.
7323 &lt;End of help on this topic&gt;
7324 </BODY>
7325 </HTML>
7326 ======= h_ge_export =======
7327 <HTML>
7328 <HEAD>
7329 <TITLE>Export File Selection</TITLE>
7330 </HEAD>
7331 <BODY>
7332 <H1>Export File Selection</H1>
7334 You are Exporting or Saving something from within the Alpine world
7335 (a message, an attachment, etc.)
7336 to a plain text file.
7337 You are now being asked for the name of the file to export <EM>to</EM>.
7338 The easiest way to select a file is probably with the &quot;^T&quot;
7339 &quot;To Files&quot; subcommand.
7340 After returning from that subcommand you will still be allowed to
7341 edit the name you have selected.
7342 Alternatively, you may type in a file name.
7343 It may be an absolute pathname.
7344 Otherwise, it is a file located in your home directory
7345 or current working directory
7346 <!--chtml if pinemode="running"-->
7347 (which, at least for your current Alpine &quot;session,&quot; 
7348 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7349 <!--chtml endif-->, depending on the
7350 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A> option.
7351 In any case, you finish by typing a carriage return to accept the
7352 file name that is displayed.
7353 When the feature
7354 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
7355 is turned on you may use TAB to complete partially typed in names.
7357 If the object you are exporting is a message with some attachments,
7358 you may wish to save all of the attachments by typing the &quot;^P&quot;
7359 &quot;AllParts&quot; command to turn on saving of the attachments.
7360 This subcommand will only be visible if the message actually has attachments.
7361 You may also View the attachment list and save individual attachments from
7362 there.
7364 If you are SAVING a text part (text/plain, text/html, etc.) you can use
7365 the Control-R subcommand to toggle if saving will be done in binary mode,
7366 meaning that the attachment will be decoded, but will not be transformed
7367 to UTF-8 for further processing (either in internal filters, or user
7368 supplied filters.) This is useful in case you either want to preserve
7369 the text as it was encoded originally to you, or the attachment was
7370 incorrectly attached (the attachment is not of text type) and you need
7371 the original text to process the attachment.
7373 You may cancel the Export operation by typing &quot;^C&quot; after exiting
7374 this help.
7376 &lt;End of help on this topic&gt;
7377 </BODY>
7378 </HTML>
7379 ======= h_common_save =======
7380 <HTML>
7381 <HEAD>
7382 <TITLE>Save and Export Commands</TITLE>
7383 </HEAD>
7384 <BODY>
7385 <H1>Save and Export Commands</H1>
7387 Save
7388 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->S<!--chtml endif-->)
7389 and Export
7390 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->E<!--chtml endif-->)
7391 are the two alternatives Alpine gives you to keep a copy of the message
7392 you are reading. If you want to keep the message within Alpine's email
7393 world, use &quot;Save&quot;; if you want to use the message in another
7394 program, use &quot;Export&quot;.
7397 When you Save a message, it is put into an existing folder or into a new
7398 folder in one of your existing folder collections.  The message stays in
7399 email format and can be read by Alpine again.  Alpine may use a special format
7400 for its mail folders -- never edit an Alpine folder by hand or with any
7401 program other than Alpine.  The exact behavior of the Save command can be
7402 configured with the
7403 <A HREF="h_config_quote_all_froms">&quot;<!--#echo var="FEAT_save-will-quote-leading-froms"-->&quot;</A>,
7404 <A HREF="h_config_save_wont_delete">&quot;<!--#echo var="FEAT_save-will-not-delete"-->&quot;</A>,
7405 and 
7406 <A HREF="h_config_save_advances">&quot;<!--#echo var="FEAT_save-will-advance"-->&quot;</A>
7407 feature list settings.
7408 The name of the folder offered as a default is controlled by the option
7409 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>.
7412 When you use Export, the message is placed in a plain text file in your
7413 home directory 
7414 <!--chtml if pinemode="running"-->
7415 (which, in the present configuration of your system, is
7416  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7417 <!--chtml endif-->
7418 or current working directory
7419 <!--chtml if pinemode="running"-->
7420 (which, at least for your current Alpine &quot;session,&quot; 
7421 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7422 <!--chtml endif-->, depending on the
7423 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7424 configuration setting.  In the normal case, only minimal
7425 headers are exported with the message; however, if the full header mode 
7426 (whose availability may be disabled  by setting the feature 
7427 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
7428 in SETUP CONFIGURATION) is
7429 toggled on, then complete headers are exported along with the message
7430 text. (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
7431 defined, they may affect the contents of the exported file.)
7434 &lt;End of help on this topic&gt;
7435 </BODY>
7436 </HTML>
7437 ======= h_common_bounce =======
7438 <HTML>
7439 <HEAD>
7440 <TITLE>Bounce Command</TITLE>
7441 </HEAD>
7442 <BODY>
7443 <H1>Bounce Command</H1>
7445 The Bounce 
7446 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->B<!--chtml endif-->)
7447 command allows you to re-send, or &quot;remail&quot;, a
7448 message, as if you were never in the loop.  It is analogous to crossing
7449 out your address on a postal letter, writing a different address on the
7450 envelope, and putting it into the mailbox. Bounce is used primarily to
7451 redirect email that was sent to you in error.
7452 Also, some owners of email
7453 lists need the bounce command to handle list traffic.
7454 Bounce is not anonymous.
7455 A ReSent-From header is added to the message so that the recipient may
7456 tell that you Bounced it to them.
7459 The presence or absence of the Bounce command is determined by the
7460 <A HREF="h_config_enable_bounce">&quot;<!--#echo var="FEAT_enable-bounce-cmd"-->&quot;</A>
7461 feature in your Alpine configuration.
7462 The feature
7463 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A>
7464 affects the behavior of the Bounce command.
7465 Also, it is possible that Bounce could be
7466 administratively disabled by your system manager; if it doesn't work,
7467 please check with your local help desk before reporting a bug.
7470 &lt;End of help on this topic&gt;
7471 </BODY>
7472 </HTML>
7473 ======= h_common_reply =======
7474 <HTML>
7475 <HEAD>
7476 <TITLE>Reply and Forward Commands</TITLE>
7477 </HEAD>
7478 <BODY>
7480 <H1>Reply and Forward Commands</H1>
7482 Replying 
7483 (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->R<!--chtml endif-->)
7484 and Forwarding 
7485 (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->F<!--chtml endif-->)
7486 are your two alternatives for following up on the
7487 message you are reading.  You would use reply if you want to get email
7488 back to the author of the message and/or the other people who have
7489 already seen it.  You use forward if you want somebody new to see the
7490 message.
7493 In the normal case, the only thing that you must supply when forwarding a
7494 message is the name/email address of the new recipient.
7495 Alpine will include the text of the forwarded message.
7496 Alpine will also include any attachments to the message.
7497 There is space above the forwarded text for you to include additional comments.
7500 When replying, you usually have to answer some questions.
7501 If the message is to multiple people and/or specified with a Reply-To: header,
7502 then you will have to decide who should get the reply.
7503 You also need to decide whether or not to include the previous
7504 message in your reply.
7505 Some of this is configurable.
7506 Specifically, see the
7507 <A HREF="h_config_include_header">&quot;<!--#echo var="FEAT_include-header-in-reply"-->&quot;</A>,
7508 <A HREF="h_config_auto_include_reply">&quot;<!--#echo var="FEAT_include-text-in-reply"-->&quot;</A>,
7509 <A HREF="h_config_attach_in_reply">&quot;<!--#echo var="FEAT_include-attachments-in-reply"-->&quot;</A>,
7511 <A HREF="h_config_auto_reply_to">&quot;<!--#echo var="FEAT_reply-always-uses-reply-to"-->&quot;</A>
7512 configuration features.
7515 Both the Reply and Forward commands react to the full header mode toggle.
7516 If the full header mode is on, then all the header and delivery lines are
7517 included with the text of the message in your reply/forward.
7520 Other configuration features that affect the Reply command are
7521 <A HREF="h_config_sig_at_bottom">&quot;<!--#echo var="FEAT_signature-at-bottom"-->&quot;</A>,
7522 <A HREF="h_config_sigdashes">&quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot;</A>, and
7523 <A HREF="h_config_strip_sigdashes">&quot;<!--#echo var="FEAT_strip-from-sigdashes-on-reply"-->&quot;</A>.
7526 &lt;End of help on this topic&gt;
7527 </BODY>
7528 </HTML>
7529 ======= h_common_delete =======
7530 <HTML>
7531 <HEAD>
7532 <TITLE>Delete and Undelete Commands</TITLE>
7533 </HEAD>
7534 <BODY>
7535 <H1>Delete and Undelete Commands</H1>
7537 Delete 
7538 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->D<!--chtml endif-->)
7539 and Undelete 
7540 (<!--chtml if pinemode="function_key"-->F10<!--chtml else-->U<!--chtml endif-->)
7541 allow you to change the Deleted flag for the current message.
7542 Delete marks a message Deleted (turns on the Deleted flag) and Undelete
7543 removes the mark.
7544 In the MESSAGE INDEX, deleted messages have a &quot;D&quot; in the status field
7545 at the left hand edge of the index line.
7546 When viewing a deleted message, the letters &quot;DEL&quot; will be present
7547 in the upper right hand corner of the screen.
7548 Delete simply <EM>marks</EM> a message Deleted, it does not actually
7549 get rid of the message.
7550 The eXpunge command (available from the MESSAGE INDEX screen) actually
7551 removes all of the deleted messages in a folder.
7552 Once a message is eXpunged, it can't be retrieved.
7555 The Delete command is affected by the setting of the configuration feature
7556 <A HREF="h_config_del_skips_del">&quot;<!--#echo var="FEAT_delete-skips-deleted"-->&quot;</A>.
7559 &lt;End of help on this topic&gt;
7560 </BODY>
7561 </HTML>
7562 ======= h_common_postpone =======
7563 <HTML>
7564 <HEAD>
7565 <TITLE>Postpone Command</TITLE>
7566 </HEAD>
7567 <BODY>
7568 <H1>Postpone Command</H1>
7570 The postpone
7571 <!--chtml if pinemode="function_key"-->(F11)<!--chtml else-->(^O)<!--chtml endif-->
7572 command allows you to temporarily stop working on the current
7573 message so you may read
7574 other messages or compose another message.  When you want to resume a
7575 message later, start to compose and answer &quot;yes&quot; to the
7576 &quot;Continue postponed composition?&quot; question.  You may
7577 postpone as many messages as you like.
7580 Note: If a <A HREF="h_config_form_folder"><!--#echo var="VAR_form-letter-folder"--></A> is defined
7581 in the Setup/Config screen, then the Postpone command will prompt you for
7582 the folder in which to store your outgoing message.
7585 &lt;End of help on this topic&gt;
7586 </BODY>
7587 </HTML>
7588 ======= h_compose_cancel =======
7589 <HTML>
7590 <HEAD>
7591 <TITLE>Cancel Command</TITLE>
7592 </HEAD>
7593 <BODY>
7594 <H1>Cancel Command</H1>
7596 Cancel
7597 <!--chtml if pinemode="function_key"-->
7598 (F2)
7599 <!--chtml else-->
7600 (^C) 
7601 <!--chtml endif-->
7603 The Cancel command returns you to Alpine's normal mail processing and
7604 causes the message currently under composition to be thrown out.
7605 The message text <EM>will be lost</EM>.
7608 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
7609 will be preserved in the file named
7610 <!--chtml if pinemode="os_windows"-->
7611 &quot;DEADLETR&quot;.
7612 <!--chtml else-->
7613 &quot;dead.letter&quot; in your home directory.
7614 <!--chtml endif-->
7615 If you unintentionally cancel a message, look there for its text.
7618 &lt;End of help on this topic&gt;
7619 </BODY>
7620 </HTML>
7621 ======= h_compose_addrcomplete =======
7622 <HTML>
7623 <HEAD>
7624 <TITLE>Address Completion</TITLE>
7625 </HEAD>
7626 <BODY>
7627 <H1>Address Completion</H1>
7629 When entering addresses in the address fields of the composer (To, Cc, etc.)
7630 the TAB key may be used to help complete the address.
7631 Type a partial nickname and tap the TAB key to complete the typing.
7632 The unambiguous part of the name will be filled in automatically.
7633 Typing TAB twice in succession will bring up a selection list of possibilities,
7634 making it easy to find and choose the correct address.
7637 The matching algorithm is rather ad hoc.
7638 The search starts with a search of your address book.
7639 It counts as a match if the nickname, address, or fullname field of an
7640 entry begins with the text typed in so far. It is also a match if
7641 a later word in the fullname (for example, the middle name or last name)
7642 begins with the entered text.
7644 Next comes an LDAP search.
7645 The search will happen for any servers that have the
7646 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
7647 feature set. You can set or unset the feature for each server independently
7648 in the Setup/Directory screen.
7650 Finally, if you are replying to or forwarding a message, that message is
7651 searched for likely candidate addresses that match the typed-in text.
7654 &lt;End of help on this topic&gt;
7655 </BODY>
7656 </HTML>
7657 ======= h_compose_richhdr =======
7658 <HTML>
7659 <HEAD>
7660 <TITLE>Rich Header Command</TITLE>
7661 </HEAD>
7662 <BODY>
7663 <H1>Rich Header Command</H1>
7665 The Rich Header command allows you to toggle between the list of 
7666 all message headers available for editing and those that are most
7667 common.
7670 Use this toggle to expose headers that are not normally visible by
7671 default.
7672 This set usually includes the
7673 &quot;Bcc:&quot;,
7674 &quot;Fcc:&quot;,
7675 &quot;Lcc:&quot;,
7676 and &quot;Newsgroups&quot;
7677 headers.
7678 If you are posting to a newsgroup the set of defaults is a little different.
7679 Obviously, in that case, the Newsgroups header is of interest so is not
7680 hidden.
7681 For news posting the hidden set includes the
7682 &quot;To:&quot;,
7683 &quot;Cc:&quot;,
7684 &quot;Bcc:&quot;,
7685 &quot;Fcc:&quot;,
7686 and &quot;Lcc:&quot;
7687 headers.
7688 You won't normally want to edit these, which is why they are hidden,
7689 but it is sometimes useful to be able to set them manually.
7692 The default sets of headers listed above can be altered.
7693 Any header that you have added to the
7694 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
7695 option, but not to the
7696 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
7697 option will appear when you use the Rich Headers command to
7698 make the Rich Headers visible.
7699 (Headers listed in the <!--#echo var="VAR_default-composer-hdrs"--> list will be visible
7700 even without toggling the Rich Headers command.)
7703 &lt;End of help on this topic&gt;
7704 </BODY>
7705 </HTML>
7706 ======= h_compose_send =======
7707 <HTML>
7708 <HEAD>
7709 <TITLE>Send Command</TITLE>
7710 </HEAD>
7711 <BODY>
7712 <H1>Send Command</H1>
7714 The Send command
7715 <!--chtml if pinemode="function_key"-->
7716 (F3)
7717 <!--chtml else-->
7718 (^X) 
7719 <!--chtml endif-->
7720 tells Alpine you are finished composing.
7721 Before actually sending it, though, Alpine will ask you to confirm 
7722 your intention, and, at the same time, redisplayed the message text
7723 with the recipients at the top of the screen to give you the opportunity
7724 to review and verify that the message is addressed to the people
7725 you intended.
7727 If the feature
7728 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
7729 then this confirmation prompt and any options it allows are skipped.
7732 This confirmation prompt may also offer, depending
7733 on your particular Setup/Config, options allowing you to set
7734 <A HREF="h_config_compose_dsn">delivery status notifications</A>,
7735 include attachments in the &quot;Fcc&quot; (if you had previously
7736 specified that they <A HREF="h_config_no_fcc_attach">exclude attachments</A>, 
7737 observe details of the
7738 <A HREF="h_config_verbose_post">message submission process</A>,
7739 choose the filter through which the
7740 <A HREF="h_config_sending_filter">outgoing text should first pass</A>,
7741 or turn of flowed text generation.
7744 &lt;End of help on this topic&gt;
7745 </BODY>
7746 </HTML>
7747 ======= h_compose_markcutpaste =======
7748 <HTML>
7749 <HEAD>
7750 <TITLE>Mark, Cut and Paste Commands</TITLE>
7751 </HEAD>
7752 <BODY>
7753 <H1>Mark, Cut and Paste Commands</H1>
7755 You can define a &quot;block&quot; of text, which can subsequently
7756  be deleted or
7757 copied as a unit, by setting a mark at the start of the block (Ctrl-^) and
7758 then moving the cursor to the end of the desired text block.  You can then
7759 &quot;cut&quot; the block out 
7760 <!--chtml if pinemode="function_key"-->
7761 &quot;F9&quot;,
7762 <!--chtml else-->
7763 &quot;Ctrl-K&quot;,
7764 <!--chtml endif-->
7765 move the cursor, and &quot;paste&quot; it
7766 <!--chtml if pinemode="function_key"-->
7767 &quot;F10&quot;,
7768 <!--chtml else-->
7769 &quot;Ctrl-U&quot;,
7770 <!--chtml endif-->
7771 in the new location.  Also, you can paste more than once, allowing you
7772 to use this feature to copy a block of text.<P>
7774 If you press 
7775 <!--chtml if pinemode="function_key"-->
7776 &quot;F9&quot;
7777 <!--chtml else-->
7778 &quot;^K&quot;
7779 <!--chtml endif-->
7780 without having marked anything, Alpine will delete
7781 a single line.  If you delete a group of lines together, Alpine keeps them
7782 in the same buffer, so 
7783 <!--chtml if pinemode="function_key"-->
7785 <!--chtml else-->
7787 <!--chtml endif-->
7788 will restore them as a block.  About
7789 terminology:  Mark is shown as &quot;^^&quot;.  The first &quot;^&quot; means you should
7790 hold down the &quot;Control&quot; key on your keyboard.  The second &quot;^&quot; means
7791 &quot;type the character ^&quot;.
7794 &lt;End of help on this topic&gt;
7795 </BODY>
7796 </HTML>
7797 ======= h_compose_justify =======
7798 <HTML>
7799 <HEAD>
7800 <TITLE>Justify Command</TITLE>
7801 </HEAD>
7802 <BODY>
7803 <H1>Justify Command</H1>
7805 The Justify
7806 <!--chtml if pinemode="function_key"-->
7807 (F4)
7808 <!--chtml else-->
7809 (^J) 
7810 <!--chtml endif-->
7811 command reformats the text in the paragraph the cursor is in.
7812 Paragraphs are separated by one blank line or a line beginning with a space.
7813 This is useful when you have been editing a paragraph and the lines become
7814 uneven.  The text is left aligned or justified and the right is ragged.  If
7815 the text is already justified as typed with auto-wrap, no justification will
7816 be done.
7819 If you have set a <A HREF="h_compose_markcutpaste">mark</A> to select a
7820 block of text, the Justify command is modified.
7821 Instead of automatically justifying the current paragraph you will be
7822 asked if you want to justify the paragraph, justify the selected region,
7823 or adjust the quote level of the selected region.
7824 Adjusting the quote level only works if you are using standard
7825 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes, which is the default if you haven't
7826 changed &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;.
7829 When composing a reply containing included text, the justify command
7830 will reformat text to the right of the 
7831 &quot;<A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>&quot;,
7832 adding or removing indented lines as needed.  Paragraphs are separated
7833 by a blank line, a line containing only the <!--#echo var="VAR_reply-indent-string"-->, or a
7834 line containing the indent string and one or more blank spaces.
7835 Included text that was previously indented (or &quot;quoted&quot;) is
7836 not preserved.
7839 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
7840 in 1999 and its wide-spread adoption since then, you will usually be better off if you
7841 use the standard
7842 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot; quotes.
7845 &lt;End of help on this topic&gt;
7846 </BODY>
7847 </HTML>
7848 ======= h_compose_spell =======
7849 <HTML>
7850 <HEAD>
7851 <TITLE>Spell Check Command</TITLE>
7852 </HEAD>
7853 <BODY>
7854 <H1>Spell Check Command</H1>
7856 The &quot;To Spell&quot;
7857 <!--chtml if pinemode="function_key"-->
7858 (F12)
7859 <!--chtml else-->
7860 (^T) 
7861 <!--chtml endif-->
7862 command calls an external spell checking program to look over the
7863 message you are composing.  By default, Alpine uses
7865 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
7867 if it knows where to find &quot;aspell&quot;.
7868 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
7869 then the command used is
7871 <CENTER><SAMP>ispell -l</SAMP></CENTER>
7873 Otherwise, the ancient &quot;spell&quot; command is used.
7875 For PC-Alpine, you must install the aspell library code that you
7876 may get from
7877 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
7880 &lt;End of help on this topic&gt;
7881 </BODY>
7882 </HTML>
7883 ======= h_compose_alted =======
7884 <HTML>
7885 <HEAD>
7886 <TITLE>Alt Editor Command</TITLE>
7887 </HEAD>
7888 <BODY>
7889 <H1>Alt Editor Command</H1>
7891 The &quot;Alt Editor&quot; command's availability depends on the
7892 Setup/Config variable &quot;<A HREF="h_config_editor"><!--#echo var="VAR_editor"--></A>&quot;.
7895 When the variable specifies a valid editor on your system, this
7896 command will launch it with the current text of your message
7897 already filled in.
7900 &lt;End of help on this topic&gt;
7901 </BODY>
7902 </HTML>
7903 ======= h_compose_readfile =======
7904 <HTML>
7905 <HEAD>
7906 <TITLE>Read File Command</TITLE>
7907 </HEAD>
7908 <BODY>
7909 <H1>Read File Command</H1>
7911 The &quot;Read File&quot;
7912 <!--chtml if pinemode="function_key"-->
7913 (F5)
7914 <!--chtml else-->
7915 (^R) 
7916 <!--chtml endif-->
7917 command allows you to copy in text from an existing file. You will be
7918 prompted for the name of a file to be inserted into the message.  The file
7919 name is relative to your home directory 
7920 <!--chtml if pinemode="running"-->
7921 (which, in the present configuration of your system, is
7922  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
7923 <!--chtml endif-->
7924 or current working directory
7925 <!--chtml if pinemode="running"-->
7926 (which, at least for your current Alpine &quot;session,&quot; 
7927 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
7928 <!--chtml endif-->, depending on the
7929 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
7930 configuration setting; or, the file name must be specified as a full path name 
7931 <!--chtml if pinemode="os_windows"-->
7932 -- for example: &quot;A:&#92;PAPER.TXT&quot;
7933 <!--chtml else-->
7934 -- for example: &quot;/tmp/wisdom-of-the-day&quot;
7935 <!--chtml endif-->
7936 (without the quotation marks).
7939 The file will be inserted where the cursor is located.  <B>The
7940 file to be read must be on the same system as Alpine.</B> If you use Alpine on a
7941 Unix machine but have files on a PC or Mac, the files must be transferred
7942 to the system Alpine is running on before they can be read.  Please ask your
7943 local computer support people about the correct way to transfer a file to 
7944 your Alpine system.
7947 &lt;End of help on this topic&gt;
7948 </BODY>
7949 </HTML>
7950 ======= h_config_tray_icon =======
7951 <HTML>
7952 <HEAD>
7953 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></TITLE>
7954 </HEAD>
7955 <BODY>
7956 <H1>FEATURE: <!--#echo var="FEAT_enable-tray-icon"--></H1>
7958 PC-Alpine only.
7960 This option restores a behavior of previous versions of PC-Alpine.
7961 These
7962 versions, when started, installed a PC-Alpine icon in the notification 
7963 tray of Window's Taskbar.  The primary use of this icon was to indicate
7964 new mail arrival by turning red (while the Taskbar icon remained green).
7965 Additionally, the icon now changes to yellow to signify that a mail folder
7966 has been closed unexpectedly.
7969 Rather than add another icon to the Taskbar, this version of PC-Alpine will 
7970 color its Taskbar entry's icon red (as well as the icon in the Window
7971 Title).  This feature is only provided for backwards compatibility.
7974 &lt;End of help on this topic&gt;
7975 </BODY>
7976 </HTML>
7977 ======= h_common_suspend =======
7978 <HTML>
7979 <HEAD>
7980 <TITLE>Suspend Command</TITLE>
7981 </HEAD>
7982 <BODY>
7983 <H1>Suspend Command</H1>
7985 With the <A HREF="h_config_can_suspend"><!--#echo var="FEAT_enable-suspend"--></A> feature
7986 enabled, you can, at almost any time, temporarily halt your Alpine session,
7987 <!--chtml if pinemode="os_windows"-->
7988 minimizing it into an icon.
7989 <!--chtml else-->
7990 and return to your system prompt.
7991 <!--chtml endif-->
7994 &lt;End of help on this topic&gt;
7995 </BODY>
7996 </HTML>
7997 ======= h_pipe_command =======
7998 <HTML>
7999 <HEAD>
8000 <TITLE>Pipe Command SubOptions</TITLE>
8001 </HEAD>
8002 <BODY>
8003 <H1>Pipe Command SubOptions</H1>
8005 By default, when you use the Pipe command, the processed text of the
8006 message is sent to the Unix command
8007 you specify and the output is captured by Alpine and shown to you.
8008 (This command is available in PC-Alpine, as well, but there aren't many
8009 Windows commands that work well with piping.)
8010 There are some sub-commands that may be used to alter this behavior.
8011 These are toggles that switch the behavior between two possibilities.
8012 They can be combined in any way you wish.
8014 By default, the prompt at the bottom of the screen looks like
8016 <CENTER><SAMP>Pipe message 37 to :</SAMP></CENTER>
8020 <CENTER><SAMP>Pipe messages to :</SAMP></CENTER>
8022 if you are piping more than one message.
8024 The sub-command options are:
8025 <DL>
8026    <DT>Shown Text or Raw Text</DT>
8027    <DD>This option toggles between sending the shown (processed) text
8028 of the message to the Unix command, and sending the
8029 raw (unprocessed) text of the message to the Unix command.
8030 The default is to send the shown text.
8031 The raw version of the message will contain all of the headers and any
8032 MIME encoding that the message contains.
8033 If you've selected the Raw Text then the prompt will have the additional word
8034 &quot;RAW&quot; in it, like
8036 <CENTER><SAMP>Pipe RAW messages to :</SAMP></CENTER>
8038 You can experiment with this option by piping to something simple like the
8039 Unix &quot;cat&quot; command.
8040    </DD>
8041    <DT>Captured Output or Free Output</DT>
8042    <DD>This option toggles between having Alpine capture the output of
8043 the Unix pipe command for display, and not capturing it.
8044 If the command you are piping to is a filter that will produce output
8045 you want to view, then you want to capture that output
8046 for display (the default).
8047 If the Unix command doesn't produce output or handles the display itself,
8048 then you want free output.
8049 When you've selected the Free Output option the prompt will change to
8051 <CENTER><SAMP>Pipe messages to (uncaptured) :</SAMP></CENTER>
8053    </DD>
8054    <DT>No Delimiter or With Delimiter</DT>
8055    <DD>This option controls whether or not a Unix mailbox style delimiter
8056 will come before the text of the message.
8057 This is the delimiter used in the common Unix mailbox format.
8058 It's the single line that begins with the five characters
8059 &quot;From&quot; followed by a &lt;SPACE&gt; character.
8060 You'll usually only want to include this if the Unix command requires
8061 input in the format of a traditional Unix mailbox file.
8062 When you've selected the With Delimiter option the prompt will change to
8064 <CENTER><SAMP>Pipe messages to (delimited) :</SAMP></CENTER>
8066    </DD>
8067    <DT>To Same Pipe or To Individual Pipes</DT>
8068    <DD>This option only shows up if you are running an aggregate
8069 pipe command.
8070 That is, the command was Apply Pipe, not just Pipe.
8071 You have the option of piping all of the selected messages through a
8072 single pipe to a single instance of the Unix command,
8073 or piping each individual message through a separate pipe to separate
8074 instances of the Unix command.
8075 The default is that all of the output will go through a single pipe
8076 to a single instance of the command.
8077 You can try this option with a command like &quot;less&quot;, with Free
8078 Output enabled.
8079 When you've selected the Individual Pipes option the prompt will change to
8081 <CENTER><SAMP>Pipe messages to (new pipe) :</SAMP></CENTER>
8083    </DD>
8084 </DL>
8087 As mentioned earlier, the options can be combined in any way you wish.
8088 You may leave them all off, turn them all on, or turn some of them on
8089 and some of them off.
8090 If you use the pipe command a second time in the same session the default
8091 options will be what you used the last time.
8094 &lt;End of help on this topic&gt;
8095 </BODY>
8096 </HTML>
8097 ========== h_emptydir_subfolder_name =========
8098 <HTML>
8099 <HEAD>
8100 <TITLE>ENTER SUBFOLDER NAME</TITLE>
8101 </HEAD>
8102 <BODY>
8103 <H1>Enter Subfolder Name</H1>
8105 <P> 
8106 This is the name of a new subfolder in the directory you are creating.
8107 Because empty directories are hidden and therefore not useful, you must also
8108 create a subfolder in the directory you are creating in order that the
8109 directory remains visible.
8111 Alternatively, you may turn off the configuration feature
8112 <A HREF="h_config_quell_empty_dirs"><!--#echo var="FEAT_quell-empty-directories"--></A>
8113 so that empty directories remain visible.
8114 If you do that, you will not be required to create the subfolder when you
8115 create a directory.
8118 &lt;End of help on this topic&gt;
8119 </BODY>
8120 </HTML>
8121 ========== h_incoming_add_folder_name =========
8122 <HTML>
8123 <HEAD>
8124 <TITLE>ENTER FOLDER NAME</TITLE>
8125 </HEAD>
8126 <BODY>
8127 <H1>Enter Folder Name</H1>
8129 <P> 
8130 This is the name of the folder on the previously specified server.
8131 By default the folder name is interpreted as defining a section of your personal
8132 folder area.  This area and how you specify it are defined by the
8133 server, if one is specified.
8136 To define a folder outside the default area, prefix
8137 the path with the namespace to use when interpreting the
8138 given path.  If a namespace is specified, the folder name begins with the
8139 sharp (#) character followed by the name of the namespace
8140 and then the namespace's path-element-delimiter.  Aside from the
8141 name's format, namespaces can also imply access rights, content
8142 policy, audience, location, and, occasionally, access methods.
8145 Each server exports its own set (possibly of size one) of 
8146 namespaces.
8147 For a more detailed explanation read about
8148 <A HREF="h_folder_name_namespaces">Namespaces</A>.
8151 To specify the default for INBOX on the server you can usually just enter
8152 &quot;INBOX&quot;, and the server will understand the special meaning of
8153 that word.
8156 &lt;End of help on this topic&gt;
8157 </BODY>
8158 </HTML>
8159 ========== h_incoming_add_folder_host =========
8160 <HTML>
8161 <HEAD>
8162 <TITLE>ENTER INCOMING FOLDER SERVER</TITLE>
8163 </HEAD>
8164 <BODY>
8165 <H1>Enter Incoming Folder Server</H1>
8167 You are being asked for the name of the server for use with this incoming
8168 folder.
8169 If the folder is on the machine where Alpine is running, then just enter
8170 RETURN without typing a server name.
8173 If the folder is on an IMAP server then type the server's name followed
8174 by RETURN.
8175 You may use the ^X command if the server is the same as the server that
8176 the INBOX is on.
8179 You may have to add optional extra information to the server name.
8180 For example, if the IMAP server is using a non-standard port number you
8181 would specify that by appending a colon (:) followed by the port number
8182 to the server name
8185 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8188 or you may need to specify a different protocol if the server is not an
8189 IMAP server. For example:
8192 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8195 for a POP server or
8198 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8201 for an NNTP news server.
8202 For an explanation of all of the possibilities, see
8203 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8204 for folders.
8207 There is a special command (^W) if you want to set up a folder that gets its
8208 mail from a
8209 <A HREF="h_maildrop">Mail Drop</A>.
8210 If you type that command, you will be prompted for the information for
8211 both the Mail Drop folder and the destination folder.
8214 &lt;End of help on this topic&gt;
8215 </BODY>
8216 </HTML>
8217 ========== h_incoming_add_inbox =========
8218 <HTML>
8219 <HEAD>
8220 <TITLE>ENTER INBOX SERVER</TITLE>
8221 </HEAD>
8222 <BODY>
8223 <H1>Enter INBOX Server</H1>
8225 You are being asked for the name of the server for use with
8226 the INBOX folder.
8227 Type the server's name followed by RETURN.
8230 You may have to add optional extra information to the server name.
8231 For example, if the server is using a non-standard port number you
8232 would specify that by appending a colon (:) followed by the port number
8233 to the server name
8236 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8239 or you may need to specify a different protocol if the server is not an
8240 IMAP server. For example:
8243 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8246 for a POP server.
8249 For an explanation of all of the possibilities, see
8250 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8251 for folders.
8254 If the INBOX folder is on the machine where Alpine is running, then just enter
8255 RETURN without typing a server name.
8258 There is a special command (^W) if you want to set up a folder that gets its
8259 mail from a
8260 <A HREF="h_maildrop">Mail Drop</A>.
8261 If you type that command, you will be prompted for the information for
8262 both the Mail Drop folder and the destination folder, which will be used
8263 as your INBOX folder.
8266 &lt;End of help on this topic&gt;
8267 </BODY>
8268 </HTML>
8269 ========== h_incoming_add_maildrop_destn =========
8270 <HTML>
8271 <HEAD>
8272 <TITLE>ENTER DESTINATION SERVER</TITLE>
8273 </HEAD>
8274 <BODY>
8275 <H1>Enter Destination Server</H1>
8277 You are being asked for the name of the server where the destination
8278 folder is for use with this Mail Drop incoming folder.
8279 That is, you are using a Mail Drop for this incoming folder and
8280 you've already entered
8281 the server and folder name for the Mail Drop.
8282 Now you need to enter the server for the destination folder
8283 where the mail should be copied to.
8284 Mail will come from the Mail Drop and be copied to the destination folder.
8287 Type the server's name followed by RETURN.
8288 If the folder is local to this computer, just type RETURN without entering
8289 a server name.
8292 You may have to add optional extra information to the server name.
8293 For example, if the server is using a non-standard port number you
8294 would specify that by appending a colon (:) followed by the port number
8295 to the server name
8298 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8301 For an explanation of all of the possibilities, see
8302 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8303 for folders.
8306 &lt;End of help on this topic&gt;
8307 </BODY>
8308 </HTML>
8309 ========== h_inbox_add_maildrop_destn =========
8310 <HTML>
8311 <HEAD>
8312 <TITLE>ENTER DESTINATION SERVER</TITLE>
8313 </HEAD>
8314 <BODY>
8315 <H1>Enter Destination Server</H1>
8317 You are being asked for the name of the server where the destination
8318 folder is for use with your Mail Drop INBOX.
8319 That is, you are using a Mail Drop for your INBOX and you've already entered
8320 the server and folder name for the Mail Drop.
8321 Now you need to enter the server for the destination folder
8322 where the mail should be copied to.
8323 Mail will come from the Mail Drop and be copied to the destination folder.
8326 Type the server's name followed by RETURN.
8327 If the folder is local to this computer, just type RETURN without entering
8328 a server name.
8331 You may have to add optional extra information to the server name.
8332 For example, if the server is using a non-standard port number you
8333 would specify that by appending a colon (:) followed by the port number
8334 to the server name
8337 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8340 For an explanation of all of the possibilities, see
8341 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8342 for folders.
8345 &lt;End of help on this topic&gt;
8346 </BODY>
8347 </HTML>
8348 ========== h_inbox_add_maildrop =========
8349 <HTML>
8350 <HEAD>
8351 <TITLE>ENTER MAILDROP SERVER</TITLE>
8352 </HEAD>
8353 <BODY>
8354 <H1>Enter Mail Drop Server</H1>
8356 You are being asked for the name of the Mail Drop server for use with
8357 your INBOX.
8360 Type the server's name followed by RETURN.
8363 You may have to add optional extra information to the server name.
8364 For example, if the server is using a non-standard port number you
8365 would specify that by appending a colon (:) followed by the port number
8366 to the server name
8369 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8372 or you may need to specify a different protocol if the server is not an
8373 IMAP server. For example:
8376 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8379 for a POP server or
8382 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8385 for an NNTP news server.
8386 For an explanation of all of the possibilities, see
8387 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8388 for folders.
8391 &lt;End of help on this topic&gt;
8392 </BODY>
8393 </HTML>
8394 ========== h_incoming_add_maildrop =========
8395 <HTML>
8396 <HEAD>
8397 <TITLE>ENTER MAILDROP SERVER</TITLE>
8398 </HEAD>
8399 <BODY>
8400 <H1>Enter Mail Drop Server</H1>
8402 You are being asked for the name of the Mail Drop server for use with
8403 this incoming folder.
8406 Type the server's name followed by RETURN.
8407 You may use the ^X command if the server is the same as the server that
8408 the INBOX is on.
8411 You may have to add optional extra information to the server name.
8412 For example, if the server is using a non-standard port number you
8413 would specify that by appending a colon (:) followed by the port number
8414 to the server name
8417 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
8420 or you may need to specify a different protocol if the server is not an
8421 IMAP server. For example:
8424 <CENTER><SAMP>foo.example.com/pop3</SAMP></CENTER>
8427 for a POP server or
8430 <CENTER><SAMP>foo.example.com/nntp</SAMP></CENTER>
8433 for an NNTP news server.
8434 For an explanation of all of the possibilities, see
8435 <A HREF="h_folder_server_syntax">Server Name Syntax</A>
8436 for folders.
8439 If the Mail Drop folder is on the machine where Alpine is running, then just enter
8440 RETURN without typing a server name.
8443 &lt;End of help on this topic&gt;
8444 </BODY>
8445 </HTML>
8446 ========== h_maildrop =========
8447 <HTML>
8448 <HEAD>
8449 <TITLE>WHAT IS A MAIL DROP?</TITLE>
8450 </HEAD>
8451 <BODY>
8452 <H1>What is a Mail Drop?</H1>
8454 In some situaions it may make sense to have your mail delivered to one
8455 folder (the Mail Drop) and then when you want to read mail that has been
8456 delivered to the Mail Drop folder Alpine will move it to another
8457 destination folder.
8458 Often the Mail Drop will be a remote folder and messages will be moved from
8459 there to a local destination folder.
8462 One example where this might make sense is if the Mail Drop folder is accessible
8463 only with the POP protocol.
8464 You could designate your POP inbox as the Mail Drop folder and have Alpine move
8465 mail from there to a local (on the same machine Alpine is running on)
8466 destination folder, where you'll read it.
8469 A Mail Drop may only be used as your Inbox or as an
8470 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A>.
8473 There is no attempt to synchronize the contents of the destination folder
8474 with the contents of the Mail Drop folder.
8475 All that happens is that all of the messages in the Mail Drop folder are
8476 copied to the destination folder and then they are deleted and expunged (if possible)
8477 from the Mail Drop folder.
8478 The next time a check for new mail is made, any messages in the Mail 
8479 Drop folder are once again copied to the destination folder and deleted
8480 and expunged from the Mail Drop folder.
8481 (If the Mail Drop folder is a news group, then the messages can't be
8482 expunged from the newsgroup. Instead, only Recent messages are copied from
8483 the newsgroup to the destination folder.)
8486 Configuration of a Mail Drop is a little different from configuration of
8487 a folder that does not use a Mail Drop because you have to specify two
8488 folder names instead of one.
8489 The two folders may be any types of folders that Alpine can normally use.
8490 They don't have to be a remote folder and a local folder, that is
8491 simply the most common usage.
8492 When you use a Mail Drop folder Alpine will periodically re-open the Mail
8493 Drop to check for new mail.
8494 The new-mail checks will happen at the frequency set with the
8495 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option,
8496 but with a minimum time
8497 (<A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>)
8498 between checks.
8499 Because of this minimum you may notice that new mail does not
8500 appear promptly when you expect it.
8501 The reason for this is to protect the server from over-zealous opening and
8502 closing of the Mail Drop folder.
8503 If the user initiates the check by typing ^L (Ctrl-L) or the Next command when at
8504 the end of the folder index, then the check will happen, regardless of how
8505 long it has been since the previous check.
8507 If there is new mail, that mail will be copied to the destination folder
8508 and then will be deleted from the Mail Drop.
8509 Note that using a Mail Drop with a local destination folder does not make
8510 sense if you read mail from more than one machine, because the mail is
8511 downloaded to the destination folder (which is accessible from only one
8512 machine) and deleted from the Mail Drop.
8514 The feature <A HREF="h_config_maildrops_preserve_state"><!--#echo var="FEAT_maildrops-preserve-state"--></A> modifies the operation of Mail Drops.
8517 The actual syntax used by Alpine for a folder that uses a Mail Drop is:
8520 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
8522 The brackets are not literal.
8524 <CENTER><SAMP>&lt;DELIM&gt;</SAMP></CENTER>
8526 is a single character that does not appear in the MailDropFolder name.
8527 If the name doesn't contain spaces then it can be a space character.
8528 The two folder names are full technical
8529 <A HREF="h_valid_folder_names">folder names</A>
8530 as used by Alpine.
8531 Here are a couple examples to give you an idea what is being talked about:
8534 <CENTER><SAMP>#move&nbsp;{popserver.example.com/pop3}inbox&nbsp;localfolder</SAMP></CENTER>
8536 <CENTER><SAMP>#move+{nntpserver.example.com/nntp}#news.comp.mail.pine+local&nbsp;folder</SAMP></CENTER>
8539 A #move folder may only be used as an
8540 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
8541 an Inbox.
8542 When you are in the FOLDER LIST of Incoming Message Folders (after turning
8543 on the
8544 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8545 option)
8546 the Add command has a subcommand &quot;Use Mail Drop&quot;
8547 which may be helpful for defining the folder in your Alpine configuration.
8548 The same is true when you edit the
8549 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
8550 option in Setup/Config.
8551 Each of these configuration methods will also create the DestinationFolder
8552 if it doesn't already exist.
8553 If you are having problems, make sure the DestinationFolder exists.
8556 &lt;End of help on this topic&gt;
8557 </BODY>
8558 </HTML>
8559 ========== h_save =========
8560 <HTML>
8561 <HEAD>
8562 <TITLE>CHOOSE A FOLDER TO SAVE INTO</TITLE>
8563 </HEAD>
8564 <BODY>
8565 <H1>Choose a Folder to Save Into</H1>
8567 After Exiting from this help text,
8568 type the name of the folder you want to save into and press RETURN.
8570 Press ^T to get a list of your folders to choose from.
8571 Press ^C to cancel the Save.
8573 If you have Folder Collections defined you may use
8574 Ctrl-P (Previous collection) and Ctrl-N (Next collection) to switch
8575 the collection being saved to.
8577 If Tab Completion is enabled (it is enabled by default)
8578 you may type a Tab character to have Alpine complete the folder name for you.
8580 If Partial Match Lists is enabled (it is enabled by default) you may type
8581 Ctrl-X to get a list of matches to the prefix you've typed in so far.
8583 If the Ctrl-R subcommand is present that means you can decide to Delete or
8584 not Delete the message you are saving after you save it.
8585 The label on that key gives the action to switch to.
8586 If it says Delete and you type Ctrl-R the label displayed will change to
8587 No Delete and the source message will be deleted after the save. If it
8588 says No Delete and you type Ctrl-R the label displayed will change to
8589 Delete and the message will not be deleted.
8590 You can control the default for the Delete parameter with the
8591 configuration feature <!--#echo var="FEAT_save-will-not-delete"-->.
8593 Similarly, if the Ctrl-W subcommand is present that means you can decide
8594 to Preserve the order of the messages being saved or not.
8595 If it is labeled Preserve Order and you type Ctrl-W, the resulting Saved messages
8596 will be in the same order as you see them in the source folder now.
8597 The opposite action (which is usually the default) is that you don't care
8598 about the order.
8599 The Saved messages may or may not be in the same order in the destination folder.
8600 There may be a performance penalty for choosing to save the messages in order.
8601 You can control the default for the Preserve Order parameter with the
8602 configuration feature
8603 <!--#echo var="FEAT_save-aggregates-copy-sequence"-->.
8606 If you haven't disabled the Save Input History and you've already done a
8607 Save earlier in this session then you may use the Up and Down arrows to retrieve
8608 a folder name used in a previous Save.
8611 &lt;End of help on this topic&gt;
8612 </BODY>
8613 </HTML>
8614 ============= h_simple_index ========================
8615 <HTML>
8616 <HEAD>
8617 <TITLE>SELECT POSTPONED MESSAGE</TITLE>
8618 </HEAD>
8619 <BODY>
8620 <H1>POSTPONED MESSAGE SELECTION COMMANDS</H1>
8621 <!--chtml if pinemode="function_key"-->
8622 <PRE>
8623 Navigating the List of Messages               General Alpine Commands
8624 -------------------------------               -----------------------
8625  F5   Move to previous message                 F1   Show this help text
8626  F6   Move to next message
8627  F7   Show previous screen of messages
8628  F8   Show next screen of messages
8630 Message Selection Commands
8631 --------------------------
8632  F3   Exit the Message Select menu (canceling Send command)
8633  F4   Select the currently highlighted message
8634  F9   Mark the currently highlighted message as deleted
8635  F10  Undelete (remove deletion mark from) the highlighted message
8636 </PRE>
8637 <!--chtml else-->
8638 <PRE>
8639 Navigating the List of Messages               General Alpine Commands
8640 -------------------------------               -----------------------
8641   P  Move to previous message                  ?  Show this help text
8642   N  Move to next message
8643   -  Show previous screen of messages
8644  Spc (space bar) Show next screen of messages
8646 Message Selection Commands
8647 --------------------------
8648   E  Exit the Message Select menu (canceling Send command)
8649   S  Select the currently highlighted message
8650   D  Mark the currently highlighted message as deleted
8651   U  Undelete (remove deletion mark from) the highlighted message
8652 </PRE>
8653 <!--chtml endif-->
8655 <H2>Description of the Select Postponed Message Screen</H2>
8657 This screen allows you to select one of several previously postponed
8658 messages in order to continue composition.  Your options are very limited
8659 -- the screen is not meant to let you manipulate these messages.  However,
8660 you may now delete messages from this list.  Once you choose a message,
8661 Alpine reads it in and puts you into the regular message composer.
8664 Messages do not stay in this postponed state automatically.  If you select
8665 a message and then want to postpone it again, use the normal postpone
8666 (Ctrl-O) command in the composer.
8669 If you exit this screen without selecting a message, the Compose command
8670 that got you here is canceled.  Other than messages explicitly marked
8671 &quot;Deleted&quot;, no messages will be removed.
8674 &lt;End of help on this topic&gt;
8675 </BODY>
8676 </HTML>
8677 ============= h_collection_screen ========================
8678 <HTML>
8679 <HEAD>
8680 <TITLE>COLLECTION LIST screen</TITLE>
8681 </HEAD>
8682 <BODY>
8683 <H1>COLLECTION LIST screen</H1>
8685 The COLLECTION LIST screen is used to select one of your  
8686 collection definitions to display the folders they contain.  See
8687 <A HREF="h_what_are_collections">Folder Collections Explained</A> for 
8688 detailed explanation of collections.<P>
8690 To manage your collection definitions (Add, Change, Delete, etc.), use
8691 the <A HREF="h_collection_maint">Setup/collectionList</A> command on Alpine's
8692 MAIN MENU.
8695 &lt;End of help on this topic&gt;
8696 </BODY>
8697 </HTML>
8698 ============= h_collection_maint ========================
8699 <HTML>
8700 <HEAD>
8701 <TITLE>SETUP COLLECTION LIST screen</TITLE>
8702 </HEAD>
8703 <BODY>
8704 <H1>SETUP COLLECTION LIST screen</H1>
8706 The SETUP COLLECTION LIST screen lets you manage your collection
8707 definitions.  See 
8708 <A HREF="h_what_are_collections">Folder Collections Explained</A> 
8709 for detailed explanation of collections.<P>
8711 Maintenance commands include:
8712 <DL>
8713 <DT>Change
8714 <!--chtml if pinemode="function_key"-->
8715 (F4)
8716 <!--chtml else-->
8718 <!--chtml endif-->
8719 </DT>
8721 <DD>Modify attributes of the selected collection definition.
8723 <DT>Add Cltn
8724 <!--chtml if pinemode="function_key"-->
8725 (F9)
8726 <!--chtml else-->
8728 <!--chtml endif-->
8729 </DT>
8731 <DD>Create a new collection definition.
8732 </DD>
8734 <DT>Del Cltn
8735 <!--chtml if pinemode="function_key"-->
8736 (F10)
8737 <!--chtml else-->
8739 <!--chtml endif-->
8740 </DT>
8742 <DD>Delete the selected collection definition.<BR>
8743 NOTE: The folders and directories referred to by the
8744 collection definition are <EM>NOT</EM> deleted.  Folders must
8745 be deleted, if that's what you wish to do, from the 
8746 <A HREF="h_folder_maint">FOLDER LIST screen</A>, which shows the 
8747 individual folders in a collection.
8748 </DD>
8750 <DT>Shuffle
8751 <!--chtml if pinemode="function_key"-->
8752 (F11)
8753 <!--chtml else-->
8755 <!--chtml endif-->
8756 </DT>
8758 <DD>Change the order of the displayed collections.  Alpine will offer
8759 to move the currently selected collection one position UP
8760 or DOWN.
8761 </DD>
8762 </DL>
8765 &lt;End of help on this topic&gt;
8766 </BODY>
8767 </HTML>
8768 ============ h_what_are_collections ==========
8769 <HTML>
8770 <HEAD>
8771 <TITLE>Folder Collections Explained</TITLE>
8772 </HEAD>
8773 <BODY>
8774 <H1>Folder Collections Explained</H1>
8777 Those of you with simple mail configurations will just see a list of all the
8778 folders you have when choosing FOLDER LIST from Alpine's MAIN MENU.  
8779 The special folders for INBOX, sent mail and saved messages
8780 will appear at the top of the list.  All others are in alphabetical order.
8782 If you
8783 or your system administrator have defined more than one collection or if
8784 you have a collection (for newsgroups or email folders) defined on your 
8785 system, then you will see the COLLECTION LIST screen first when choosing 
8786 FOLDER LIST from Alpine's MAIN MENU.
8788 <H2>Why have multiple folder collections?</H2>
8790 For Alpine users who only maintain email folders (and not too many) on one host, 
8791 a single folder collection is probably sufficient.<P>
8793 However, people who have more than one email account - for example, one 
8794 at their university, and one with their personal Internet Service Provider - 
8795 will have different sets of folders on different hosts, and they may want to
8796 access them all from the same installation of Alpine, rather than use different 
8797 software and/or log into other hosts to manipulate messages in different 
8798 accounts.  (If in doubt whether one of your email accounts can be accessed 
8799 with Alpine, contact the technical support people for that account.)  Even people
8800 who have only one email account on one host, but have dozens or
8801 hundreds of email folders, may want to arrange these folders together in a 
8802 meaningful way.<BR>
8803 That is where multiple collections come in.
8805 <H2>Types of Collections</H2>
8806 <DL>
8807 <DT>INCOMING FOLDERS</DT>
8808 <DD>&quot;Incoming Message Folders&quot; 
8809 is a special collection typically used to supplement your single INBOX.  
8810 All the folders here are meant to be ones that receive incoming messages, 
8811 which you intend to check more or less frequently.  
8812 You may have multiple folders like this because you or your systems 
8813 administrator have set up an external program or you may have set up
8814 Alpine to filter incoming 
8815 messages into different folders, based on certain criteria such as 
8816 sender, recipient, or subject; or because you have multiple accounts and 
8817 wish to check their INBOXes easily.  This collection is established by 
8818 setting the 
8819 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
8820 feature in the SETUP CONFIGURATION screen, which is accessed from the 
8821 MAIN MENU.
8822 </DD>
8824 <DT>NEWS</DT>
8825 <DD>You can also define a collection specifically for
8826 newsgroups.  Alpine does this for you implicitly when you 
8827 <A HREF="h_config_nntp_server">define an NNTP Server</A>
8828 in your Alpine configuration.  The news collection appears last in the 
8829 COLLECTION LIST (though you can shuffle it up in the order of presentation),
8830 and Alpine knows not to save messages there.
8831 </DD>
8833 <DT>DEFAULT COLLECTION</DT>
8834 <DD>This is the default collection for your saved and sent messages folders.
8835 </DD>
8836 </DL>
8840 <H2>Defining Collections</H2>
8842 In the absence of any folder-collection definitions, Alpine will assume a
8843 single default folder collection.
8844 <!--chtml if pinemode="os_windows"-->
8845 <!--chtml else-->
8846 If necessary, Alpine will create the directory
8847 &quot;mail&quot; in your Unix home directory 
8848 to hold your folders.
8849 <!--chtml endif-->
8851 You can use the 
8852 <A HREF="h_collection_maint">Setup/collectionList screen</A>, called up from 
8853 the MAIN MENU, to manage your collection list.  
8855 &lt;End of help on this topic&gt;
8856 </BODY>
8857 </HTML>
8858 ===== h_select_address_screen =====
8859 <HTML>
8860 <HEAD>
8861 <TITLE>SELECT AN ADDRESS SCREEN</TITLE>
8862 </HEAD>
8863 <BODY>
8864 <H1>SELECT AN ADDRESS SCREEN</H1>
8865 <H2>COMMANDS</H2>
8866 <!--chtml if pinemode="function_key"-->
8867 <PRE>
8868 Available  Commands                        
8869 -------------------------------            
8870 F1  Show Help Text
8871 F3  Exit without selecting anything
8872 F4  Select the highlighted address
8873 F5  Move highlight to previous address
8874 F6  Move highlight to next address
8875 F7  Previous page of addresses
8876 F8  Next page of addresses
8877 F11 Print
8878 F12 WhereIs
8879 </PRE>
8880 <!--chtml else-->
8881 <PRE>
8882 Navigation                     General Alpine Commands
8883 -------------------------      -----------------------
8884  P  Prev Address                ?  Display this help text
8885  N  Next Address                E  Exit without selecting anything
8886  -  Previous page               %  Print
8887 Spc (space bar) Next page
8888  W  WhereIs
8890 Select Command
8891 ------------------------------------------------
8892  S  Select the highlighted address
8893 </PRE>
8894 <!--chtml endif-->
8896 <H2>Description of the Select Address Screen</H2>
8898 This screen gives you an easy way to select an address from all of
8899 the address book entries that match the prefix typed so far.
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_rule_screen =====
8909 <HTML>
8910 <HEAD>
8911 <TITLE>SELECT A RULE SCREEN</TITLE>
8912 </HEAD>
8913 <BODY>
8914 <H1>SELECT A RULE 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 rule
8923 F5  Move highlight to previous rule
8924 F6  Move highlight to next rule
8925 F7  Previous page of rules
8926 F8  Next page of rules
8927 F11 Print
8928 F12 WhereIs
8929 </PRE>
8930 <!--chtml else-->
8931 <PRE>
8932 Navigation                     General Alpine Commands
8933 -------------------------      -----------------------
8934  P  Prev Rule                   ?  Display this help text
8935  N  Next Rule                   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 rule
8943 </PRE>
8944 <!--chtml endif-->
8946 <H2>Description of the Select Rule Screen</H2>
8948 This screen just gives you an easy way to select a rule from all of your
8949 defined rules.
8950 The list of rules presented is the list of nicknames of all of the rules
8951 defined using Setup/Rules.
8952 For selecting messages, it is likely that the Indexcolor rules and possibly
8953 the Roles rules will be most useful.
8954 The others are there also, in case you find a use for them.
8956 In order for this to be useful for selecting messages, the nicknames of
8957 the rules have to be different.
8958 Alpine actually just gets the nickname of the rule that you select and then
8959 looks up that rule using the nickname.
8960 So if there are duplicate nicknames, the first rule that has that
8961 nickname will be used.
8963 <P><UL>
8964 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
8965 </UL>
8967 &lt;End of help on this topic&gt;
8968 </BODY>
8969 </HTML>
8970 ===== h_select_priority_screen =====
8971 <HTML>
8972 <HEAD>
8973 <TITLE>SELECT A PRIORITY SCREEN</TITLE>
8974 </HEAD>
8975 <BODY>
8976 <H1>SELECT A PRIORITY SCREEN</H1>
8977 <H2>COMMANDS</H2>
8978 <!--chtml if pinemode="function_key"-->
8979 <PRE>
8980 Available  Commands                        
8981 -------------------------------            
8982 F1  Show Help Text
8983 F3  Exit without selecting anything
8984 F4  Select the highlighted priority
8985 F5  Move highlight to previous priority
8986 F6  Move highlight to next priority
8987 F7  Previous page of priorities
8988 F8  Next page of priorities
8989 F11 Print
8990 F12 WhereIs
8991 </PRE>
8992 <!--chtml else-->
8993 <PRE>
8994 Navigation                     General Alpine Commands
8995 -------------------------      -----------------------
8996  P  Prev Priority               ?  Display this help text
8997  N  Next Priority               E  Exit without selecting anything
8998  -  Previous page               %  Print
8999 Spc (space bar) Next page
9000  W  WhereIs
9002 Select Command
9003 ------------------------------------------------
9004  S  Select the highlighted priority
9005 </PRE>
9006 <!--chtml endif-->
9008 <H2>Description of the Select Priority Screen</H2>
9010 This screen gives you a way to select a priority for the message you are sending.
9011 This priority will be placed in the non-standard X-Priority header of your outgoing mail.
9012 Some mail programs will display an indication of the priority level to
9013 the recipient of the message, some will ignore it.
9014 Even in cases where the mail programs of both the sender and the recipient
9015 agree on the meaning of this header, keep in mind that it is
9016 something that the sender sets so it is only an indication
9017 of the priority that the sender attaches to the mail.
9018 Alpine can be made to display an indication of this priority in incoming
9019 messages by use of one of the tokens
9020 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
9021 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
9022 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
9024 <P><UL>
9025 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9026 </UL>
9028 &lt;End of help on this topic&gt;
9029 </BODY>
9030 </HTML>
9031 ===== h_select_keyword_screen =====
9032 <HTML>
9033 <HEAD>
9034 <TITLE>SELECT A KEYWORD SCREEN</TITLE>
9035 </HEAD>
9036 <BODY>
9037 <H1>SELECT A KEYWORD SCREEN</H1>
9038 <H2>COMMANDS</H2>
9039 <!--chtml if pinemode="function_key"-->
9040 <PRE>
9041 Available  Commands                        
9042 -------------------------------            
9043 F1  Show Help Text
9044 F3  Exit without selecting anything
9045 F4  Select the highlighted keyword
9046 F5  Move highlight to previous keyword
9047 F6  Move highlight to next keyword
9048 F7  Previous page of keywords
9049 F8  Next page of keywords
9050 F11 Print
9051 F12 WhereIs
9052 </PRE>
9053 <!--chtml else-->
9054 <PRE>
9055 Navigation                     General Alpine Commands
9056 -------------------------      -----------------------
9057  P  Prev Keyword                ?  Display this help text
9058  N  Next Keyword                E  Exit without selecting anything
9059  -  Previous page               %  Print
9060 Spc (space bar) Next page
9061  W  WhereIs
9063 Select Command
9064 ------------------------------------------------
9065  S  Select the highlighted keyword
9066 </PRE>
9067 <!--chtml endif-->
9069 <H2>Description of the Select Keyword Screen</H2>
9071 This screen just gives you an easy way to select a keyword.
9072 The list of keywords presented is the list of all keywords defined in your 
9073 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
9074 If you have given a keyword a nickname, that nickname is displayed
9075 instead of the actual keyword.
9077 <P><UL>
9078 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9079 </UL>
9081 &lt;End of help on this topic&gt;
9082 </BODY>
9083 </HTML>
9084 ===== h_select_charset_screen =====
9085 <HTML>
9086 <HEAD>
9087 <TITLE>SELECT A CHARACTER SET SCREEN</TITLE>
9088 </HEAD>
9089 <BODY>
9090 <H1>SELECT A CHARACTER SET SCREEN</H1>
9091 <H2>COMMANDS</H2>
9092 <!--chtml if pinemode="function_key"-->
9093 <PRE>
9094 Available  Commands                        
9095 -------------------------------            
9096 F1  Show Help Text
9097 F3  Exit without selecting anything
9098 F4  Select the highlighted character set
9099 F5  Move highlight to previous character set
9100 F6  Move highlight to next character set
9101 F7  Previous page of character sets
9102 F8  Next page of character sets
9103 F11 Print
9104 F12 WhereIs
9105 </PRE>
9106 <!--chtml else-->
9107 <PRE>
9108 Navigation                     General Alpine Commands
9109 -------------------------      -----------------------
9110  P  Prev Character Set          ?  Display this help text
9111  N  Next Character Set          E  Exit without selecting anything
9112  -  Previous page               %  Print
9113 Spc (space bar) Next page
9114  W  WhereIs
9116 Select Command
9117 ------------------------------------------------
9118  S  Select the highlighted character set
9119 </PRE>
9120 <!--chtml endif-->
9122 <H2>Description of the Select A Character Set Screen</H2>
9124 This screen just gives you an easy way to select a character set from the
9125 set of character sets Alpine knows about.
9126 The list presented will vary slightly depending on what option you are
9127 selecting the character set for.
9129 <P><UL>
9130 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9131 </UL>
9133 &lt;End of help on this topic&gt;
9134 </BODY>
9135 </HTML>
9136 ===== h_select_multcharsets_screen =====
9137 <HTML>
9138 <HEAD>
9139 <TITLE>SELECT CHARACTER SETS SCREEN</TITLE>
9140 </HEAD>
9141 <BODY>
9142 <H1>SELECT CHARACTER SETS SCREEN</H1>
9143 <H2>COMMANDS</H2>
9144 <!--chtml if pinemode="function_key"-->
9145 <PRE>
9146 Available  Commands
9147 -------------------------------            
9148 F1  Show Help Text
9149 F3  Exit without selecting anything
9150 F4  Select the highlighted charset (or chosen charsets in ListMode)
9151 F5  Move highlight to previous charset
9152 F6  Move highlight to next charset
9153 F7  Previous page of charsets
9154 F8  Next page of charsets
9155 F9  Toggle choices when using ListMode
9156 F10 Turn on/off ListMode (makes it easy to choose multiple charsets)
9157 F11 Print
9158 F12 WhereIs
9159 </PRE>
9160 <!--chtml else-->
9161 <PRE>
9162 Navigation                     General Alpine Commands
9163 -------------------------      -----------------------
9164  P  Prev Charset                ?  Display this help text
9165  N  Next Charset                E  Exit without selecting anything
9166  -  Previous page               %  Print
9167 Spc (space bar) Next page
9168  W  WhereIs
9170 Select Command
9171 ------------------------------------------------
9172  S  Select the highlighted charset (or chosen charsets in ListMode)
9173  L  Turn on ListMode (makes it easy to choose multiple charsets)
9174  1  Turn off ListMode
9175  X  Toggle choices when using ListMode
9176 </PRE>
9177 <!--chtml endif-->
9179 <H2>Description of the Select Character Set Screen</H2>
9181 This screen just gives you an easy way to select a character set or a list of
9182 character sets.
9183 The list of character sets presented is the list of all character sets known to
9184 Alpine.
9185 You may select other character sets by typing them in directly.
9187 <P><UL>
9188 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9189 </UL>
9191 &lt;End of help on this topic&gt;
9192 </BODY>
9193 </HTML>
9194 ===== h_select_multkeyword_screen =====
9195 <HTML>
9196 <HEAD>
9197 <TITLE>SELECT KEYWORDS SCREEN</TITLE>
9198 </HEAD>
9199 <BODY>
9200 <H1>SELECT KEYWORDS SCREEN</H1>
9201 <H2>COMMANDS</H2>
9202 <!--chtml if pinemode="function_key"-->
9203 <PRE>
9204 Available  Commands
9205 -------------------------------            
9206 F1  Show Help Text
9207 F3  Exit without selecting anything
9208 F4  Select the highlighted keyword (or chosen keywords in ListMode)
9209 F5  Move highlight to previous keyword
9210 F6  Move highlight to next keyword
9211 F7  Previous page of keywords
9212 F8  Next page of keywords
9213 F9  Toggle choices when using ListMode
9214 F10 Turn on/off ListMode (makes it easy to choose multiple keywords)
9215 F11 Print
9216 F12 WhereIs
9217 </PRE>
9218 <!--chtml else-->
9219 <PRE>
9220 Navigation                     General Alpine Commands
9221 -------------------------      -----------------------
9222  P  Prev Keyword                ?  Display this help text
9223  N  Next Keyword                E  Exit without selecting anything
9224  -  Previous page               %  Print
9225 Spc (space bar) Next page
9226  W  WhereIs
9228 Select Command
9229 ------------------------------------------------
9230  S  Select the highlighted keyword (or chosen keywords in ListMode)
9231  L  Turn on ListMode (makes it easy to choose multiple keywords)
9232  1  Turn off ListMode
9233  X  Toggle choices when using ListMode
9234 </PRE>
9235 <!--chtml endif-->
9237 <H2>Description of the Select Keyword Screen</H2>
9239 This screen just gives you an easy way to select a keyword or a list of
9240 keywords.
9241 The list of keywords presented is the list of all keywords defined in your 
9242 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option.
9243 If you have given a keyword a nickname, that nickname is displayed
9244 instead of the actual keyword.
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_select_incoming_to_monitor =====
9254 <HTML>
9255 <HEAD>
9256 <TITLE>SELECT FOLDERS TO CHECK SCREEN</TITLE>
9257 </HEAD>
9258 <BODY>
9259 <H1>SELECT FOLDERS TO CHECK SCREEN</H1>
9260 <H2>COMMANDS</H2>
9261 <!--chtml if pinemode="function_key"-->
9262 <PRE>
9263 Available  Commands
9264 -------------------------------            
9265 F1  Show Help Text
9266 F3  Exit without selecting anything
9267 F4  Select the marked folders
9268 F5  Move highlight to previous folder
9269 F6  Move highlight to next folder
9270 F7  Previous page of folders
9271 F8  Next page of folders
9272 F9  Toggle choices on or off
9273 F11 Print
9274 F12 WhereIs
9275 </PRE>
9276 <!--chtml else-->
9277 <PRE>
9278 Navigation                     General Alpine Commands
9279 -------------------------      -----------------------
9280  P  Prev Folder                 ?  Display this help text
9281  N  Next Folder                ^C  exit without changing anything
9282  -  Previous page               %  Print
9283 Spc (space bar) Next page
9284  W  WhereIs
9286 Select Command
9287 ------------------------------------------------
9288  S  Select the marked folders
9289  X  Toggle choices on or off
9290 </PRE>
9291 <!--chtml endif-->
9293 <H2>Description of the Select Folders to Check Screen</H2>
9295 This screen is only useful if the feature
9296 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
9297 is set.
9298 By default, when you set that feature all of your incoming folders
9299 will be checked periodically for Unseen messages.
9300 By using this screen, you may restrict the set of monitored folders to
9301 a subset of all of the incoming folders.
9303 Mark the folders you want to monitor for Unseen messages with
9304 an &quot;X&quot;.
9305 When you've finished marking all your selections use the Select
9306 command to register your choices.
9307 To return to the default of checking all incoming folders
9308 delete all folders or unmark all folders.
9310 <P><UL>
9311 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9312 </UL>
9314 &lt;End of help on this topic&gt;
9315 </BODY>
9316 </HTML>
9317 ===== h_role_select =====
9318 <HTML>
9319 <HEAD>
9320 <TITLE>ROLES SCREEN</TITLE>
9321 </HEAD>
9322 <BODY>
9323 <H1>ROLES SCREEN</H1>
9324 <H2>ROLES COMMANDS</H2>
9325 <!--chtml if pinemode="function_key"-->
9326 <PRE>
9327 Available  Commands                        
9328 -------------------------------            
9329 F1  Show Help Text
9330 F3  Exit without a selection
9331 F4  Select a role to use in composition
9332 F5  Move to previous role
9333 F6  Move to next role
9334 F7  Previous page of roles
9335 F8  Next page of roles
9336 F11 Change Default Role
9337 F12 Whereis (search role nicknames)
9338 </PRE>
9339 <!--chtml else-->
9340 <PRE>
9341 Navigation                     General Alpine Commands
9342 -------------------------      -----------------------
9343  P  Prev Role                     ?  Display this help text
9344  N  Next Role                     E  Exit without a selection
9345  -  Previous page
9346 Spc (space bar) Next page
9347  W  WhereIs (search for word in role nicknames)
9349 Select Role Commands
9350 ------------------------------------------------
9351  [Return]  Select highlighted role
9352  D         Change Default Role
9353 </PRE>
9354 <!--chtml endif-->
9356 <H2>Description of the Roles Screen</H2>
9358 With this screen you select a role to be used in the composition of a
9359 message.
9360 Use the Previous and Next commands to highlight the role you wish to
9361 use.
9362 When you type carriage return you will be placed in the composer using the highlighted role.
9364 You don't have any non-default <A HREF="h_rules_roles">roles</A>
9365 available unless you set them up.
9366 You may do so by using the Setup/Rules command on the MAIN MENU.
9368 By using the D command, you may set a default role that will persist until
9369 you change it or until you exit Alpine.
9370 The D command toggles through three states: set the default role, unset the
9371 default role, and leave the default role as it is.
9372 <P><UL>
9373 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9374 </UL>
9376 &lt;End of help on this topic&gt;
9377 </BODY>
9378 </HTML>
9379 ===== h_role_abook_select =====
9380 <HTML>
9381 <HEAD>
9382 <TITLE>SELECT ADDRESS BOOK SCREEN</TITLE>
9383 </HEAD>
9384 <BODY>
9385 <H1>SELECT ADDRESS BOOK SCREEN</H1>
9386 <H2>COMMANDS</H2>
9387 <!--chtml if pinemode="function_key"-->
9388 <PRE>
9389 Available  Commands                        
9390 -------------------------------            
9391 F1  Show Help Text
9392 F3  Exit screen without selecting anything
9393 F4  Select highlighted address book
9394 F5  Move to previous address book
9395 F6  Move to next address book
9396 F7  Previous page of address books
9397 F8  Next page of address books
9398 F12 Whereis
9399 </PRE>
9400 <!--chtml else-->
9401 <PRE>
9402 Navigation                     General Alpine Commands
9403 -------------------------      -----------------------
9404  P  Previous addrbook          ?  Display this help text
9405  N  Next addrbook
9406  -  Previous page
9407 Spc (space bar) Next page
9408  W  WhereIs
9410 Select Role Commands
9411 ------------------------------------------------
9412  S  Select highlighted address book
9413  E  Exit screen without selecting anything
9414 </PRE>
9415 <!--chtml endif-->
9417 <H2>Description of the Select Address Book Screen</H2>
9419 This screen helps you select one of your address books.
9420 Use the Previous and Next commands to highlight the address book you wish to
9421 select.
9422 <P><UL>
9423 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
9424 </UL>
9426 &lt;End of help on this topic&gt;
9427 </BODY>
9428 </HTML>
9429 ======== h_rule_patterns =============
9430 <HTML>
9431 <HEAD>
9432 <TITLE>PATTERNS</TITLE>
9433 </HEAD>
9434 <BODY>
9435 <H1>PATTERNS</H1>
9436 Patterns are used with Roles, Filtering, Index Coloring,
9437 Scoring, Other Rules, and Search Rules.
9438 Patterns are compared with a message to see if there is a match.
9439 For Filtering, the messages being checked are all the messages in the
9440 folder, one at a time.
9441 For Index Line Coloring, each message that is visible on the screen is
9442 checked for matches with the Index Coloring Patterns.
9443 Roles are used with the Reply, Forward, and Compose commands.
9444 For Reply, the message used to compare the Pattern with is the message
9445 being replied to;
9446 for Forward, the message used to compare the Pattern with is the message
9447 being forwarded;
9448 and for Compose, there is no message, so the parts of the Pattern that depend
9449 on a message (everything other than Current Folder Type and the
9450 Beginning of Month and Year)
9451 are not used.
9452 Only the Current Folder Type matters for Compose (plus the Beginning of
9453 Month or Year, which you wouldn't usually use for a Role).
9454 For Scoring, the message being scored is compared with all of the Score
9455 Patterns, and the Score Values from the ones that match are added together to 
9456 get the message's score.
9457 For Other Rules, there is no message. Only the Current Folder Type is checked
9458 for Other Rules.
9460 Each Pattern has several possible parts, all of which are optional.
9461 In order for there to be a match, <EM>ALL</EM> of the
9462 <EM>defined</EM> parts of the Pattern must match the message.
9463 If a part is not defined it is considered a match, but note that a filtering
9464 Pattern must have at least one defined part or it will be ignored.
9465 For example, if the To pattern is not defined it will be
9466 displayed as
9468 <CENTER>To pattern = &lt;No Value Set&gt;</CENTER>
9470 That is considered a match because it is not defined.
9471 This means that the Pattern with nothing defined is a match if the
9472 Current Folder Type matches, but there is an exception that was mentioned
9473 in the previous paragraph.
9474 Because filtering is a potentially destructive action, filtering Patterns
9475 with nothing other than Current Folder Type defined are ignored.
9476 If you really want a filtering Pattern to match all messages (subject to
9477 Current Folder Type) the best way to do it is to define a Score interval
9478 that includes all possible scores.
9479 This would be the score interval <SAMP>(-INF,INF)</SAMP>.
9480 This can be used even if you haven't defined any rules to Set Scores.
9482 There are six predefined header patterns called the To, From, Sender, Cc, News,
9483 and Subject patterns.
9484 Besides those six predefined header patterns, you may add
9485 additional header patterns with header fieldnames of your choosing.
9486 You add an extra header pattern by placing the cursor on one of the
9487 patterns while in the role editor and using the &quot;eXtraHdr&quot; command.
9488 The Recip pattern is a header pattern that stands for Recipient (To OR Cc)
9489 and the Partic pattern is a header pattern that stands for
9490 Participant (From OR To OR Cc).
9491 (Defining the Recip pattern does not have the same effect as defining both
9492 the To and Cc patterns. Recip is To <EM>OR</EM> Cc, not To <EM>AND</EM> Cc.)
9493 Similar to the header patterns are the AllText pattern and the BodyText pattern.
9494 Instead of comparing this pattern's text against only the contents of
9495 a particular header field, the text for the AllText pattern is compared
9496 with text anywhere in the message's header or body, and the text for the
9497 BodyText pattern is compared with text anywhere in the message's body.
9499 Any of the header patterns, the AllText pattern, or the BodyText pattern may be negated with the
9500 &quot;!&quot; &quot;toggle NOT&quot; command.
9501 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9502 &quot;!&quot; at the beginning of the pattern line.
9503 When the &quot;!&quot; is present, it reverses the meaning of the match.
9504 That is, if the pattern matches then it is considered to NOT be a match, and
9505 if it does not match it is considered to be a match.
9507 Don't make the mistake of putting the &quot;!&quot; in the data field for
9508 a pattern.
9509 For example, if you type the characters &quot;!urgent&quot; into the Subject
9510 pattern, the pattern will look like:
9512 <PRE>
9513  Subject pattern = !urgent
9514 </PRE>
9516 This means you want to match the 7 character sequence &quot;!urgent&quot;.
9517 In order to match messages that do not have &quot;urgent&quot; in
9518 their Subject field, first type the characters &quot;urgent&quot; followed
9519 by carriage return for the value of the Subject pattern, then negate it
9520 by typing the &quot;!&quot; command.
9521 It should look like
9523 <PRE>
9524  ! Subject pattern = urgent
9525 </PRE>
9527 The contents of each of these header patterns (or the AllText or BodyText patterns) may
9528 be a complete email address, part of an address, or a random set of
9529 characters to match against.
9530 It may also be a list of such patterns, which means you
9531 are looking for a match against the first pattern in the list <EM>OR</EM>
9532 the second pattern <EM>OR</EM> the third and so on.
9533 For example, a Subject pattern equal to
9535 <PRE>
9536  Subject pattern = urgent
9537                    emergency
9538                    alert
9539 </PRE>
9541 would match all messages with a subject that contained at least one
9542 of those words.
9543 It would also match subjects containing the words &quot;alerts&quot; or
9544 &quot;Urgently&quot;.
9546 The same example with &quot;NOT&quot; turned on would be
9548 <PRE>
9549  ! Subject pattern = urgent
9550                      emergency
9551                      alert
9552 </PRE>
9554 which would match all messages with a subject that did <EM>NOT</EM> contain any of
9555 those words.
9556 You can use the &quot;Add Value&quot; command to add new words to the list,
9557 or you can enter them as a comma-separated list.
9559 (It is not possible to specify two patterns that must <EM>BOTH</EM> be
9560 present for a match.
9561 It is only possible to specify that <EM>EITHER</EM> pattern1 <EM>OR</EM>
9562 pattern2 must be present,
9563 and that is exactly what using a list does.)
9565 The &quot;Current Folder Type&quot; and the &quot;Score Interval&quot; are
9566 also part of the Pattern, although the &quot;Score Interval&quot; is not used
9567 when checking for matches for Scoring.
9568 There are five similar settings that relate to the status of the message.
9569 These settings rely on the message being New or not, Deleted or not,
9570 Answered or not, Important or not, and Recent or not.
9571 There are also some other miscellaneous settings.
9572 The first is the Age of the message in days.
9573 Another is the Size of the message, in bytes.
9574 The third is a setting that detects whether or not the Subject of a
9575 message contains raw 8-bit characters (unencoded characters with the most
9576 significant bit set).
9577 There is a setting that detects whether or not this is the first time
9578 Alpine has been run this month (doesn't depend on individual messages),
9579 and another that detects whether or not this is the first time Alpine has
9580 been run this year.
9581 Other parts of the Pattern detect whether or not the From address of a
9582 message appears in your address book, whether or not certain keywords
9583 are set for a message, and whether or not certain character sets are
9584 used in a message.
9586 <H2>Parts of a Pattern</H2>
9588 <H3>Header patterns</H3>
9590 A header pattern is simply text that is searched for in the corresponding
9591 header field.
9592 For example, if a Pattern has a From header pattern with the value
9593 &quot;@company.com&quot;, then only messages that have a From header
9594 that contains the text &quot;@company.com&quot; will be possible
9595 matches.
9596 Matches don't have to be exact.
9597 For example, if the relevant field of a message contains the text
9598 &quot;mailbox@domain&quot; somewhere
9599 in it, then header patterns of &quot;box&quot;, or &quot;x@d&quot;, or
9600 &quot;mailbox@domain&quot; are all matches.
9602 All parts of the Pattern must match so, for example,
9603 if a message matches a defined
9604 From pattern, it still must be checked against the other parts of the
9605 Pattern that have been defined.
9606 The To header pattern is a slightly special case.
9607 If the message being checked has a Resent-To header
9608 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on, the addresses
9609 there are used in place of the addresses in the To header.
9610 This is only true for the To header.
9611 Resent-cc and Resent-From headers are never used unless you add them
9612 with the eXtraHdrs command.
9614 The meaning of a header pattern may be negated with the
9615 &quot;!&quot; &quot;toggle NOT&quot; command.
9616 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9617 &quot;!&quot; at the beginning of the pattern line.
9618 It would look something like
9620 <PRE>
9621  ! From pattern = susan@example.com
9622 </PRE>
9624 When the &quot;!&quot; is present, it reverses the meaning of the match.
9626 If you want to check for the presence of a header field but don't care
9627 about its value, then
9628 the empty pattern that you get by entering a pair of
9629 double quotes (&quot;&quot;) should match any message that
9630 has the corresponding header field.
9632 <H3><A NAME="pattern_alltext">AllText patterns</A></H3>
9634 AllText patterns are just like header patterns except that the text is
9635 searched for anywhere in the message's headers or body, not just in the
9636 contents of a particular header field.
9639 <H3><A NAME="pattern_bodytext">BodyText patterns</A></H3>
9641 BodyText patterns are just like header patterns except that the text is
9642 searched for anywhere in the message's body, not just in the
9643 contents of a particular header field.
9646 If there is more than one header pattern or AllText pattern or BodyText pattern
9647 for which you want to take the
9648 same action there is a shorthand notation that may be used.
9649 Any of these patterns may be a list of patterns instead of
9650 just a single pattern.
9651 If any one of the patterns in the list matches the message
9652 then it is considered a match.
9653 For example, if &quot;company1&quot; and &quot;company2&quot; both required
9654 you to use the same role when replying to messages, you might have
9655 a To pattern that looks like
9657 <PRE>
9658  To pattern = company1.com
9659               company2.com
9660 </PRE>
9662 This means that if the mail you are replying to was addressed to
9663 either &quot;anything@company1.com&quot; or &quot;anything@company2.com&quot;,
9664 then this Pattern is a match and the same actions will be taken.
9666 The meaning of an AllText or BodyText pattern may be negated with the
9667 &quot;!&quot; &quot;toggle NOT&quot; command.
9668 You can tell that <EM>NOT</EM> has been turned on by looking for the character
9669 &quot;!&quot; at the beginning of the pattern line.
9670 When the &quot;!&quot; is present, it reverses the meaning of the match.
9672 A technicality: Since comma is the character used to separate multiple values
9673 in any of the fields that may have multiple values (such as header patterns,
9674 AllText patterns, BodyText patterns, keywords, folder lists, and so on),
9675 you must escape comma with a
9676 backslash (&#92;) if you want to include a literal comma in one of those fields.
9677 In other words, if you type a backslash followed by a comma it will
9678 be interpreted as a comma by Alpine, instead of as a separator between
9679 pattern values.
9680 All other backslashes (those not followed by a comma) are literal
9681 backslashes and should not be escaped.
9682 It's unlikely you'll ever need to enter a literal comma or backslash in
9683 any of the patterns.
9685 <H3><A NAME="pattern_current_folder">Current Folder Type</A></H3>
9687 The &quot;Current Folder Type&quot; may be set to one of four different
9688 values: &quot;Any&quot;, &quot;News&quot;, &quot;Email&quot;, or
9689 &quot;Specific&quot;.
9690 If the value is set to &quot;News&quot;, then the
9691 Pattern will only match if the currently open folder is a newsgroup.
9692 The value &quot;Email&quot; only matches if the current folder is not news and
9693 the value &quot;Any&quot; causes any folder to match.
9694 If the value of &quot;Current Folder Type&quot; is set to &quot;Specific&quot;,
9695 then you must fill in a value for &quot;Folder&quot;, which is on the line
9696 below the &quot;Specific&quot; line.
9697 In this case you will only get a match if the currently open folder is
9698 the specific folder you list.
9699 You may give a list of folders instead of just a single
9700 folder name, in which case the Pattern will match if the open folder is
9701 any one of the folders in the list.
9702 The name of each folder in the list may be either &quot;INBOX&quot;,
9703 the technical specification
9704 of the folder (like what appears in your configuration file) or, if the
9705 folder is one of your incoming folders, it may be the nickname you've given
9706 the folder.
9707 Here are some samples of specific folder names:
9709 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
9711 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
9713 <CENTER><SAMP>mail/local-folder</SAMP></CENTER>
9715 The easiest way to fill in the &quot;Folder&quot; field is to use
9716 the &quot;T&quot; command that is available when the &quot;Folder&quot; line is
9717 highlighted, or to use the &quot;Take&quot; command with the configuration
9718 feature
9719 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
9720 turned on.
9722 When reading a newsgroup, there may be a performance penalty
9723 incurred when collecting the information necessary to check whether
9724 or not a Pattern matches a message.
9725 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
9726 If you have Patterns with a Current Folder Type of either
9727 &quot;Any&quot; or &quot;News&quot; and those Patterns are used for
9728 Index Line Coloring or Scoring, you may experience
9729 slower screen redrawing in the MESSAGE INDEX screen when in a newsgroup.
9731 <H3><A NAME="pattern_age_interval">Age Interval</A></H3>
9733 The &quot;Age Interval&quot; may be set to an interval of message
9734 ages that should be considered a match.
9735 Like the other parts of the Pattern, if it is unset it will be ignored.
9736 The Age Interval looks like
9738 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
9740 where &quot;min_age&quot; and &quot;max_age&quot; are integers greater
9741 than or equal to zero.
9742 The special value &quot;INF&quot; may be used for
9743 the max value. It represents infinity.
9745 Actually, this option may be defined as a list of intervals instead
9746 of just a single interval.
9747 The list is separated by commas.
9748 It can look like
9750 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
9752 When there is an Age Interval defined, it is a match if the age, in days, of
9753 the message is contained in any of the intervals.
9754 The intervals include both endpoints.
9756 Even though this option is called Age, it isn't actually
9757 the <EM>age</EM> of the message.
9758 Instead, it is how many days ago the message arrived in one of your folders.
9759 If the current time is a little past midnight, then a message that arrived
9760 just before midnight arrived yesterday, even though the message is only
9761 a few minutes old.
9762 By default, the date being used is not the date in the Date
9763 header of the message.
9764 It is the date that the message arrived in one of your folders.
9765 When you Save a message from one folder to another that arrival date
9766 is preserved.
9767 If you would like to use the date in the Date header that is possible.
9768 Turn on the option
9769 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
9770 near the bottom of the rule definition.
9771 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
9773 <H3><A NAME="pattern_size_interval">Size Interval</A></H3>
9775 The &quot;Size Interval&quot; may be set to an interval of message
9776 sizes that should be considered a match.
9777 Like the other parts of the Pattern, if it is unset it will be ignored.
9778 The Size Interval looks like
9780 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
9782 where &quot;min_size&quot; and &quot;max_size&quot; are integers greater
9783 than or equal to zero.
9784 The special value &quot;INF&quot; may be used for
9785 the max value. It represents infinity.
9787 Actually, this option may be defined as a list of intervals instead
9788 of just a single interval.
9789 The list is separated by commas.
9790 It can look like
9792 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
9794 When there is a Size Interval defined, it is a match if the size, in bytes, of
9795 the message is contained in any of the intervals.
9796 The intervals include both endpoints.
9798 <H3><A NAME="pattern_score_interval">Score Interval</A></H3>
9800 The &quot;Score Interval&quot; may be set to an interval of message
9801 scores that should be considered a match.
9802 Like the other parts of the Pattern, if it is unset it will be ignored.
9803 The Score Interval looks like
9805 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
9807 where &quot;min_score&quot; and &quot;max_score&quot; are positive or
9808 negative integers, with min_score less than or equal to max_score.
9809 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
9810 the min and max values to represent negative and positive infinity.
9812 Actually, a list of intervals may be used if you wish.
9813 A list would look like
9815 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
9817 When there is a Score Interval defined, it is a match if the score for
9818 the message is contained in any of the intervals in the list.
9819 The intervals include the endpoints.
9820 The score for a message is calculated by looking at every Score rule defined and
9821 adding up the Score Values for the ones that match the message.
9822 When deciding whether or not a Pattern matches a message for purposes of
9823 calculating the score, the Score Interval is ignored.
9825 <H3><A NAME="pattern_message_status">Message Status</A></H3>
9827 There are five separate message status settings.
9828 By default, all five are set to the value &quot;Don't care&quot;, which
9829 will match any message.
9830 The value &quot;Yes&quot; means that the particular status must be true
9831 for a match, and the value &quot;No&quot; means that the particular
9832 status must not be true for a match.
9833 For example, one of the five Message Status settings is whether a message
9834 is marked Important or not.
9835 A &quot;Yes&quot; means that the message must be Important to be
9836 considered a match and &quot;No&quot; means that the message must not be
9837 Important to be considered a match.
9838 The same is true of the other four message status settings that depend
9839 on whether or not the message is New; whether the message has 
9840 been Answered or not; whether the message has been Deleted or not, and
9841 whether the message is Recent or not. 
9843 The nomenclature for New and Recent is a bit confusing:
9845 New means that the message is Unseen.
9846 It could have been in your mailbox for a long time but if you haven't looked
9847 at it, it is still considered New.
9848 That matches the default Alpine index display that shows an N for such a
9849 message.
9851 Recent means that the message was added to this folder since the last time
9852 you opened the folder.
9853 Alpine also shows an N by default for these types of messages.
9854 If you were to run two copies of Alpine that opened a folder one right after
9855 the other, a message would only show up as Recent in (at most) the first
9856 Alpine session.
9858 <H3><A NAME="pattern_message_keywords">Message Keywords</A></H3>
9860 Keywords are similar to Message Status, but they are chosen by the user.
9861 Provided the mail server allows for it, you may add a set of possible keywords
9862 to a folder and then you may set those keywords or not for each message
9863 in the folder (see <A HREF="h_common_flag">Flag Command</A>).
9864 The syntax of this part of the Pattern is similar to the header patterns.
9865 It is a list of keywords.
9866 The Keyword part of the Pattern is a match if the message has any of
9867 the keywords in the list set.
9868 Like other parts of the Pattern, if this is unset it will be ignored.
9870 <H3><A NAME="pattern_message_charsets">Message Character Sets</A></H3>
9872 A message may use one or more character sets.
9873 This part of the Pattern matches messages that make use of one or more of
9874 the character sets specified in the pattern.
9875 It will be considered a match if a message uses any of the character
9876 sets in the list you give here.
9879 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
9880 GB2312) you may also use some shorthand names that Alpine provides.
9881 These names are more understandable shorthand names for sets of 
9882 character set names.
9883 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
9884 Selecting one of these shorthand names is equivalent to selecting all of
9885 the character sets that make up the set.
9886 You can see all of these shorthand names and the lists of character sets
9887 they stand for by typing the &quot;T&quot; command with the Character
9888 Set pattern highlighted.
9889 The syntax of this part of the Pattern is similar to the header patterns
9890 and the Message Keywords pattern.
9891 It is a list of character sets (or shorthand names).
9892 The Character Set part of the Pattern is a match if the message uses any
9893 of the character sets in the list.
9894 Like other parts of the Pattern, if this is unset it will be ignored.
9896 <H3><A NAME="pattern_8bit_subject">Raw 8-bit in Subject</A></H3>
9898 It seems that lots of unwanted email contains unencoded 8-bit characters
9899 in the Subject.
9900 Normally, characters with the 8th bit set are not allowed in the Subject
9901 header unless they are MIME-encoded.
9902 This option gives you a way to match messages that have Subjects that
9903 contain unencoded 8-bit characters.
9904 By default, the value of this option is &quot;Don't care&quot;, which
9905 will match any message.
9906 The value &quot;Yes&quot; means that there must be raw 8-bit characters in
9907 the Subject of the message in order for there to be a match,
9908 and the value &quot;No&quot; is the opposite.
9909 Setting this option will affect performance in large folders because the
9910 subject of each message in the folder has to be checked.
9912 <H3><A NAME="pattern_bom">Beginning of Month</A></H3>
9914 This option gives you a way to take some action once per month.
9915 By default, the value of this option is &quot;Don't care&quot;, which
9916 will always match.
9917 The value &quot;Yes&quot; means that this must be the first time Alpine has
9918 been run this month in order to count as a match,
9919 and the value &quot;No&quot; is the opposite.
9921 <H3><A NAME="pattern_boy">Beginning of Year</A></H3>
9923 This option gives you a way to take some action once per year.
9924 By default, the value of this option is &quot;Don't care&quot;, which
9925 will always match.
9926 The value &quot;Yes&quot; means that this must be the first time Alpine has
9927 been run this year in order to count as a match,
9928 and the value &quot;No&quot; is the opposite.
9930 <H3><A NAME="pattern_abookfrom">Address in Address Books</A></H3>
9932 This option gives you a way to match messages that have an address
9933 that is in one of your address books.
9934 Only the simple entries in your address books are searched.
9935 Address book distribution lists are ignored!
9936 By default, the value of this option is &quot;Don't care&quot;, which
9937 will match any message.
9938 The value &quot;Yes, in any address book&quot; means the address
9939 from the message must be in at least one of your
9940 address books in order to be a match.
9941 The value &quot;No, not in any address book&quot;
9942 means none of the addresses may
9943 be in any of your address books in order to be a match.
9944 The values &quot;Yes, in specific address books&quot; and
9945 &quot;No, not in any of specific address books&quot; are similar but instead
9946 of depending on all address books you are allowed to give a list of address
9947 books to look in.
9948 The addresses from the message that are checked for are determined by the
9949 setting you have for &quot;Types of addresses to check for in address book&quot;.
9950 If you set this to &quot;From&quot; the From address from the message will
9951 be looked up in the address book.
9952 If you set it to only &quot;To&quot; then the To addresses will be used.
9953 If any of the To addresses are in the address book then it is considered
9954 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
9955 You could set it to both From and To, in which case all of the From and To
9956 addresses are used.
9957 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
9958 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
9959 exists or the From address if there is no Reply-To address.
9960 Same for the Sender address.
9961 Setting this option may affect performance in large folders because the
9962 From and Reply-To of each message in the folder have to be checked.
9964 <H3><A NAME="pattern_categorizer">Categorizer Command</A></H3>
9966 This is a command that is run with its standard input set to the message
9967 being checked and its standard output discarded.
9968 The full directory path should be specified.
9969 The command will be run and then its exit status will be checked against
9970 the Exit Status Interval, which defaults to just the value zero.
9971 If the exit status of the command falls in the interval, it is considered
9972 a match, otherwise it is not a match.
9975 This option may actually be a list of commands.
9976 The first one that exists and is executable is used.
9977 That makes it possible to use the same configuration with Unix Alpine and
9978 PC-Alpine.
9981 If none of the commands in the list exists and is executable then the rule
9982 is <EM>not</EM> a match.
9983 If it is possible that the command may not exist, you should be careful
9984 to structure your rules so that nothing destructive
9985 happens when the command does not exist.
9986 For example, you might have a filter that filters away spam when there is
9987 a match but does nothing when there is not a match.
9988 That would continue to work correctly if the command didn't exist.
9989 However, if you have a filter that filters away spam when there is not
9990 a match and keeps it when there is a match, that would filter everything
9991 if the categorizer command didn't exist.
9993 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
9994 setup for the bogofilter filter.
9997 &lt;End of help on this topic&gt;
9998 </BODY>
9999 </HTML>
10000 ===== h_rules_roles =====
10001 <HTML>
10002 <HEAD>
10003 <TITLE>SETUP ROLES SCREEN</TITLE>
10004 </HEAD>
10005 <BODY>
10006 <H1>SETUP ROLES SCREEN</H1>
10007 <H2>SETUP ROLES COMMANDS</H2>
10008 <!--chtml if pinemode="function_key"-->
10009 <PRE>
10010 Available  Commands -- Group 1         Available Commands -- Group 2   
10011 -------------------------------        ------------------------------  
10012 F1  Show Help Text                      F1  Show Help Text             
10013 F2  See commands in next group          F2  See commands in next group
10014 F3  Back to MAIN Alpine menu
10015 F4  Change configuration for role
10016 F5  Move to previous role               F5  Include file in role config
10017 F6  Move to next role                   F6  Exclude file from config
10018 F7  Previous page of roles
10019 F8  Next page of roles
10020 F9  Add new role                        F9  Replicate existing role
10021 F10 Delete existing role
10022 F11 Shuffle the order of roles
10023 F12 Whereis (search role nicknames)
10024 </PRE>
10025 <!--chtml else-->
10026 <PRE>
10027 Navigation                     General Alpine Commands
10028 -------------------------      -----------------------
10029  P  Prev Role                     ?  Display this help text
10030  N  Next Role                     E  Back to MAIN Alpine menu
10031  -  Previous page
10032 Spc (space bar) Next page
10033  W  WhereIs (search for word in role nicknames)
10035 Setup Roles Commands
10036 ------------------------------------------------
10037  A  Add new role                  $  Shuffle the order of roles
10038  D  Delete existing role          C  Change configuration for highlighted role
10039  R  Replicate existing role
10040  I  Include file in role config   X  Exclude file from role config
10041 </PRE>
10042 <!--chtml endif-->
10044 <H2>Description of the Setup Roles Screen</H2>
10046 This screen lets you add, delete, modify, or change the order of the rules
10047 that determine the role you are playing when composing a message.
10049 You may play different roles depending on who you are replying to.
10050 For example, if you are replying to a message addressed to help-desk you
10051 may be acting as a Help Desk Worker.
10052 That role may require that you use a different return address and/or
10053 a different signature.
10055 Roles are optional.
10056 If you set up roles they work like this:  Each role has a set of
10057 &quot;Uses&quot;, which indicate whether or not a role is eligible to be
10058 considered for a particular use; a &quot;Pattern&quot;,
10059 which is used to decide which of the eligible roles is used; and a set
10060 of &quot;Actions&quot;, which are taken when that role is used.
10061 When you reply to a message, the message you are replying to is compared
10062 with the Patterns of the roles marked as eligible for use when replying.
10063 The comparisons start with the first eligible role and keep going until there
10064 is a match.
10065 If a match is found, the matching role's Actions are taken.
10067 It is also possible to set a default role and to change that role during
10068 your Alpine session.
10069 When you start Alpine no default role will be set.
10070 You may set or change the current default role by using the &quot;D&quot;
10071 command in the role selection screen.
10072 You'll see that screen while composing a message and being asked to select
10073 a role.
10074 An easy way to get to that screen is to use the <A HREF="h_common_role">Role Command</A> to
10075 compose a message.
10076 You may find a default role useful if you normally perform the duties of one
10077 of your roles for a while, then you switch to another role and stay in the
10078 new role for another period of time.
10079 It may be easier than using the Role Command to select the role each time you
10080 compose a message.
10082 <H2>Role Uses</H2>
10084 There are three types of use to be configured;
10085 one for Replying, one for Forwarding, and one for Composing.
10086 These indicate whether or not you want a role to be considered when you
10087 type the Reply, Forward, or Compose commands.
10088 (The Role command is an alternate form of the Compose command, and it is
10089 not affected by these settings.)
10090 Each of these Use types has three possible values.
10091 The value &quot;Never&quot;
10092 means that the role will never be considered as a candidate for use with
10093 the corresponding command.
10094 For example, if you set a role's Reply Use to Never, then when you Reply to
10095 a message, that role won't even be considered.
10096 (That isn't quite true. If the message you are replying to matches some other
10097 role that requires confirmation,
10098 then there will be a ^T command available which allows you to select a role
10099 from all of your roles, not just the reply-eligible roles.)
10102 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
10103 both mean that you do want to consider this role when using the corresponding
10104 command.
10105 For either of these settings the role's Pattern will
10106 be checked to see if it matches the message.
10107 For Reply Use, the message used to compare the Pattern with is the message
10108 being replied to.
10109 For Forward Use, the message used to compare the Pattern with is the message
10110 being forwarded.
10111 For Compose Use, there is no message, so the parts of the Pattern that depend
10112 on a message (everything other than Current Folder Type) are ignored.
10113 In all cases, the Current Folder Type is checked if defined.
10114 If there is a match then this role will either be used without confirmation
10115 or will be the default when confirmation is asked for, depending on
10116 which of the two options is selected.
10117 If confirmation is requested, you will have a chance to
10118 choose No Role instead of the offered role, or to
10119 change the role to any one of your other roles (with the ^T command).
10121 <H2>Role Patterns</H2>
10123 In order to determine whether or not a message matches a role the message is
10124 compared with the Role's Pattern.
10125 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10126 Scoring, Other Rules, and Search Rules, so are described in only one place,
10127 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10129 Since header patterns, AllText patterns, and BodyText patterns that are unset are ignored,
10130 a role that has all header patterns unset, the AllText pattern unset,
10131 the BodyText pattern unset,
10132 the Score Interval unset, and the Current Folder Type set to
10133 &quot;Any&quot; may be used as a default role.
10134 It should be put last in the list of roles since the matching
10135 starts at the beginning and proceeds until one of the roles is a match.
10136 If no roles at all match, then Alpine will
10137 use its regular methods of defining the role.
10138 If you wanted to, you could define a different &quot;default&quot; role
10139 for Replying, Forwarding, and Composing by setting the
10140 &quot;Use&quot; fields appropriately.
10142 <H2>Role Actions</H2>
10144 Once a role match is found, the role's Actions are taken.
10145 For each role there are several possible actions that may be defined.
10146 They are actions to set the From address, the Reply-To address,
10147 the Fcc, the Signature, the Template file, and Other Headers.
10149 <H3>Set From</H3>
10151 The From address is the address used on the From line of the message
10152 you are sending.
10154 <H3>Set Reply-To</H3>
10156 The Reply-To address is the address used on the Reply-To line of the message
10157 you are sending.
10158 You don't need a Reply-To address unless it is different from the From address.
10160 <H3>Set Other Headers</H3>
10162 If you want to set the value of the From or Reply-To headers, use
10163 the specific fields &quot;Set From&quot; or &quot;Set Reply-To&quot;.
10164 If you want to set the values of other headers, use this field.
10165 This field is similar to the
10166 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> configuration option.
10167 Each header you specify here must include the header tag
10168 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
10169 and may optionally include a value for that header.
10170 It is different from the <!--#echo var="VAR_customized-hdrs"--> in that the value you give
10171 for a header here will replace any value that already exists.
10172 For example, if you are Replying to a message there will be at least one
10173 address in the To header (the address you are Replying to).
10174 However, if you Reply using a role that sets the To header, that role's
10175 To header value will be used instead.
10177 <H3>Set Fcc</H3>
10179 The Fcc is used as the Fcc for the message you are sending.
10181 <H3>Set Signature or Set LiteralSig</H3>
10183 The Signature is the name of a file to be used as the signature file when
10184 this role is being used.
10185 If the name of the file has a vertical bar following it (|)
10186 then it is assumed that the file is a program that should be run to
10187 produce the signature.
10188 If the LiteralSig is set, then it is used instead of the signature file.
10189 LiteralSig is just a different way to store the signature.
10190 It is stored in the pine configuration file instead of in a separate
10191 signature file.
10192 If the <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined
10193 either in the role or as the default signature in the Setup/Config screen,
10194 then the signature file is ignored.
10196 <H3>Set Template</H3>
10198 A Template is the name of a file to be included in the message when this
10199 role is being used.
10200 If the name of the file has a vertical bar following it (|)
10201 then it is assumed that the file is a program that should be run to
10202 produce the template.
10205 Both signature files and template files may be stored remotely on an IMAP
10206 server.
10207 In order to do that you just give the file a remote name.
10208 This works just like the regular
10209 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>
10210 option that is configured from the Setup/Configuration screen.
10211 A remote signature file name might look like:
10213 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
10215 Once you have named the remote signature or template file you create its
10216 contents by using the &quot;F&quot; &quot;editFile&quot; command when the
10217 cursor is on the &quot;Set Signature&quot; or &quot;Set Template&quot;
10218 line of the role editor.
10221 Both signature files and template files (or the output of signature programs
10222 and template file programs) may contain special tokens
10223 that are replaced with contents
10224 that depend on the message being replied to or forwarded.
10225 See the help for the individual fields inside the role editor for more
10226 information on tokens.
10228 <H3>Use SMTP Server</H3>
10230 If this field has a value, then it will be used as the SMTP server
10231 to send mail when this role is being used (unless the SMTP server variable
10232 is set in the system-wide fixed configuration file).
10233 It has the same semantics as the
10234 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
10235 variable in the Setup/Config screen.
10236 When you postpone the composition this SMTP server list will be saved
10237 with the postponed composition and it cannot be changed later.
10238 Because of that, you may want to make this a list of SMTP servers
10239 with the preferred server at the front of the list and alternate servers
10240 later in the list.
10243 If any of the actions are left unset, then the action depends on what
10244 is present in the &quot;Initialize settings using role&quot; field.
10245 If you've listed the nickname of another one of your roles there, then the
10246 corresponding action from that role will be used here.
10247 If that action is also blank, or if there is no nickname specified,
10248 then Alpine will do whatever it normally does to set these actions.
10249 This depends on other configuration options and features you've set.
10251 <H2>Command Descriptions</H2>
10253 <H3>Add</H3>
10255 The Add command is used to add a new role definition to your set of
10256 roles.
10257 The new role will be added after the highlighted role.
10259 <H3>Delete</H3>
10261 The Delete command deletes the currently highlighted role.
10263 <H3>Change</H3>
10265 The Change command lets you edit the nickname, Uses, Pattern,
10266 and Actions of the currently highlighted role.
10268 <H3>Shuffle</H3>
10270 The Shuffle command allows you to change the order of the roles.
10271 You may move the currently highlighted role up or down in the list.
10272 The order of the roles is important since the roles are tested for a
10273 match starting with the first role and continuing until a match is found.
10274 You should place the roles with more specific Patterns near the beginning
10275 of the list, and those with more general Patterns near the end so that
10276 the more specific matches will happen when appropriate.
10278 <H3>Replicate</H3>
10280 The Replicate command is used to copy an existing role and modify it.
10281 The new role will be added after the highlighted role.
10283 <H3>IncludeFile</H3>
10285 The IncludeFile command allows you to add a roles file to your configuration.
10286 Usually, your roles will be contained in your Alpine configuration file.
10287 If you wish, some or all of your roles may be stored in a separate file.
10288 If a roles file already exists (maybe it was made by somebody else using
10289 Alpine), you may insert it before the currently highlighted role.
10290 You may also insert an empty file or a file that does not yet exist.
10291 Once you have an empty roles file in your configuration, you may use
10292 the Shuffle command to move roles into it.
10293 In fact, that's the only way to get the initial role into the file.
10295 <H3>eXcludeFile</H3>
10297 The eXcludeFile command removes a roles file from your roles configuration.
10298 A limitation of the program is that in order to exclude a roles file
10299 that file must have at least one role
10300 in it, otherwise you won't be able to highlight a line in the file.
10301 So you may have to add a dummy role to the file in order to exclude the file.
10302 <P><UL>
10303 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10304 </UL>
10306 &lt;End of help on this topic&gt;
10307 </BODY>
10308 </HTML>
10309 ===== h_rules_other =====
10310 <HTML>
10311 <HEAD>
10312 <TITLE>SETUP OTHER RULES SCREEN</TITLE>
10313 </HEAD>
10314 <BODY>
10315 <H1>SETUP OTHER RULES SCREEN</H1>
10316 <H2>SETUP OTHER RULES COMMANDS</H2>
10317 <!--chtml if pinemode="function_key"-->
10318 <PRE>
10319 Available  Commands -- Group 1         Available Commands -- Group 2   
10320 -------------------------------        ------------------------------  
10321 F1  Show Help Text                      F1  Show Help Text             
10322 F2  See commands in next group          F2  See commands in next group
10323 F3  Back to MAIN Alpine menu
10324 F4  Change configuration for rule
10325 F5  Move to previous rule               F5  Include file in rule config
10326 F6  Move to next rule                   F6  Exclude file from config
10327 F7  Previous page of rules
10328 F8  Next page of rules
10329 F9  Add new rule                        F9  Replicate existing rule
10330 F10 Delete existing rule
10331 F11 Shuffle the order of rules
10332 F12 Whereis (search rule nicknames)
10333 </PRE>
10334 <!--chtml else-->
10335 <PRE>
10336 Navigation                     General Alpine Commands
10337 -------------------------      -----------------------
10338  P  Prev rule                     ?  Display this help text
10339  N  Next rule                     E  Back to MAIN Alpine menu
10340  -  Previous page
10341 Spc (space bar) Next page
10342  W  WhereIs (search for word in rule nicknames)
10344 Setup Other Rules Commands
10345 ------------------------------------------------
10346  A  Add new rule                  $  Shuffle the order of rules
10347  D  Delete existing rule          C  Change configuration for highlighted rule
10348  R  Replicate existing rule
10349  I  Include file in rule config   X  Exclude file from rule config
10350 </PRE>
10351 <!--chtml endif-->
10353 <H2>Description of the Setup Other Rules Screen</H2>
10355 This is where you may set various actions that do not fit well into the
10356 other Rules categories.
10358 <H2>Patterns</H2>
10360 Other Rules are a little different from the rest of the Rules because
10361 they depend only on the current folder, and not on a particular message.
10362 In order to determine whether or not a rule's actions should be applied
10363 the current folder is compared with the rule's Pattern, which consists
10364 of only the Current Folder Type.
10365 Current Folder Type works the same for Other Rules as it does for Roles,
10366 Filtering, Index Coloring, and Scoring.
10367 Keep in mind that the only part of the Pattern that applies to Other
10368 Rules is the Current Folder Type when looking at the description of
10369 Patterns given
10370 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10372 <H2>The Actions</H2>
10374 <H3>Set Sort Order</H3>
10376 When you enter a new folder, these rules will be checked to see if you
10377 have set a sort order that is different from your default sort order.
10378 The default is set in the Setup/Config screen with
10379 the &quot;<A HREF="h_config_sort_key"><!--#echo var="VAR_sort-key"--></A>&quot; option.
10380 If the Sort Order action is set, then the folder will be displayed sorted in
10381 that sort order instead of in the default order.
10383 A possible point of confusion arises when you change the configuration
10384 of the Sort Order for the currently open folder.
10385 The folder will normally be re-sorted when you go back to viewing the
10386 index.
10387 However, if you have manually sorted the folder with the
10388 Sort
10389 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
10390 command, then it will not be re-sorted until the next time it is opened.
10392 <H3>Set Index Format</H3>
10394 When you enter a new folder, these rules will be checked to see if you
10395 have set an Index Format that is different from your default Index Format,
10396 which is set with the
10397 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
10398 If so, the index will be displayed with this format instead of the default.
10400 <H3>Set Startup Rule</H3>
10402 When you enter a new folder, these rules will be checked to see if you
10403 have set a startup rule that is different from the default startup rule.
10404 The default for incoming folders is set in the Setup/Config screen with
10405 the &quot;<!--#echo var="VAR_incoming-startup-rule"-->&quot; option.
10406 The default for folders other than INBOX that are not part of your
10407 incoming collection
10408 (see <A HREF="h_config_enable_incoming"><!--#echo var="FEAT_enable-incoming-folders"--></A> feature) 
10409 is to start with the last message in the folder.
10410 If the Startup Rule is set to something other than &quot;default&quot;,
10411 then the rule will determine which message will be the current message when
10412 the folder is first opened.
10414 The various startup rule possibilities work the same here as they do in
10415 the incoming collection, so check
10416 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
10417 for more help.
10419 <H2>Command Descriptions</H2>
10421 <H3>Add</H3>
10423 The Add command is used to add a new rule definition to your set of
10424 rules.
10425 The new rule will be added after the highlighted rule.
10427 <H3>Delete</H3>
10429 The Delete command deletes the currently highlighted rule.
10431 <H3>Change</H3>
10433 The Change command lets you edit the nickname, Pattern,
10434 and Action of the currently highlighted rule.
10436 <H3>Shuffle</H3>
10438 The Shuffle command allows you to change the order of the rules.
10439 You may move the currently highlighted rule up or down in the list.
10440 The order of the rules is important since the rules are tested for a
10441 match starting with the first rule and continuing until a match is found.
10442 You should place the rules with more specific Patterns near the beginning
10443 of the list, and those with more general Patterns near the end so that
10444 the more specific matches will happen when appropriate.
10446 <H3>Replicate</H3>
10448 The Replicate command is used to copy an existing rule definition and modify it.
10449 The new rule will be added after the highlighted rule.
10451 <H3>IncludeFile</H3>
10453 The IncludeFile command allows you to add a rules file to your configuration.
10454 Usually, your rules will be contained in your Alpine configuration file.
10455 If you wish, some or all of your rules may be stored in a separate file.
10456 If a rules file already exists (maybe it was made by somebody else using
10457 Alpine), you may insert it before the currently highlighted rule.
10458 You may also insert an empty file or a file that does not yet exist.
10459 Once you have an empty rules file in your configuration, you may use
10460 the Shuffle command to move rules into it.
10461 In fact, that's the only way to get the initial rule into the file.
10463 <H3>eXcludeFile</H3>
10465 The eXcludeFile command removes a rules file from your rules configuration.
10466 A limitation of the program is that in order to exclude a rules file
10467 that file must have at least one rule
10468 in it, otherwise you won't be able to highlight a line in the file.
10469 So you may have to add a dummy rule to the file in order to exclude the file.
10470 <P><UL>
10471 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10472 </UL>
10474 &lt;End of help on this topic&gt;
10475 </BODY>
10476 </HTML>
10477 ===== h_rules_srch =====
10478 <HTML>
10479 <HEAD>
10480 <TITLE>SETUP SEARCH RULES SCREEN</TITLE>
10481 </HEAD>
10482 <BODY>
10483 <H1>SETUP SEARCH RULES SCREEN</H1>
10484 <H2>SETUP SEARCH RULES COMMANDS</H2>
10485 <!--chtml if pinemode="function_key"-->
10486 <PRE>
10487 Available  Commands -- Group 1         Available Commands -- Group 2   
10488 -------------------------------        ------------------------------  
10489 F1  Show Help Text                      F1  Show Help Text             
10490 F2  See commands in next group          F2  See commands in next group
10491 F3  Back to MAIN Alpine menu
10492 F4  Change configuration for rule
10493 F5  Move to previous rule               F5  Include file in rule config
10494 F6  Move to next rule                   F6  Exclude file from config
10495 F7  Previous page of rules
10496 F8  Next page of rules
10497 F9  Add new rule                        F9  Replicate existing rule
10498 F10 Delete existing rule
10499 F11 Shuffle the order of rules
10500 F12 Whereis (search rule nicknames)
10501 </PRE>
10502 <!--chtml else-->
10503 <PRE>
10504 Navigation                     General Alpine Commands
10505 -------------------------      -----------------------
10506  P  Prev rule                     ?  Display this help text
10507  N  Next rule                     E  Back to MAIN Alpine menu
10508  -  Previous page
10509 Spc (space bar) Next page
10510  W  WhereIs (search for word in rule nicknames)
10512 Setup Search Rules Commands
10513 ------------------------------------------------
10514  A  Add new rule                  $  Shuffle the order of rules
10515  D  Delete existing rule          C  Change configuration for highlighted rule
10516  R  Replicate existing rule
10517  I  Include file in rule config   X  Exclude file from rule config
10518 </PRE>
10519 <!--chtml endif-->
10521 <H2>Description of the Setup Search Rules Screen</H2>
10523 One of the commands that becomes available when that feature is turned on
10524 is the &quot;; Select&quot; command, which is used in the MESSAGE INDEX
10525 screen to select a set of messages.
10526 One way of selecting messages is to use a Rule.
10527 All of the messages that match (or don't match if you wish)
10528 a Rule's Pattern will be selected.
10530 Any of your Rules may be used for this purpose.
10531 You might already have Rules set up for filtering, index line color, scores, or roles;
10532 and you may use any of those Rules with the Select command.
10533 However, you might find it more convenient to set up a separate set of Rules
10534 just for this purpose without having to worry about what other effects
10535 they may cause.
10536 That is the purpose of these Select Rules.
10539 Each rule has a &quot;Pattern&quot;
10540 that is used to decide which messages are selected when you use it with
10541 the Select command.
10543 <H2>Patterns</H2>
10545 In order to determine whether or not a message should be selected
10546 the message is compared with the rule's Pattern.
10547 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10548 Scoring, Other Rules, and Search Rules, so are described in only one place,
10549 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10551 <H2>Command Descriptions</H2>
10553 <H3>Add</H3>
10555 The Add command is used to add a new rule definition to your set of
10556 rules.
10557 The new rule will be added after the highlighted rule.
10559 <H3>Delete</H3>
10561 The Delete command deletes the currently highlighted rule.
10563 <H3>Change</H3>
10565 The Change command lets you edit the nickname and Pattern
10566 of the currently highlighted rule.
10568 <H3>Shuffle</H3>
10570 The Shuffle command allows you to change the order of the rules.
10571 This affects only the order they are presented in when you use the
10572 ^T subcommand of the Select by Rule command.
10573 You may move the currently highlighted rule up or down in the list.
10575 <H3>Replicate</H3>
10577 The Replicate command is used to copy an existing rule definition and modify it.
10578 The new rule will be added after the highlighted rule.
10580 <H3>IncludeFile</H3>
10582 The IncludeFile command allows you to add a rules file to your configuration.
10583 Usually, your rules will be contained in your Alpine configuration file.
10584 If you wish, some or all of your rules may be stored in a separate file.
10585 If a rules file already exists (maybe it was made by somebody else using
10586 Alpine), you may insert it before the currently highlighted rule.
10587 You may also insert an empty file or a file that does not yet exist.
10588 Once you have an empty rules file in your configuration, you may use
10589 the Shuffle command to move rules into it.
10590 In fact, that's the only way to get the initial rule into the file.
10592 <H3>eXcludeFile</H3>
10594 The eXcludeFile command removes a rules file from your rules configuration.
10595 A limitation of the program is that in order to exclude a rules file
10596 that file must have at least one rule
10597 in it, otherwise you won't be able to highlight a line in the file.
10598 So you may have to add a dummy rule to the file in order to exclude the file.
10599 <P><UL>
10600 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10601 </UL>
10603 &lt;End of help on this topic&gt;
10604 </BODY>
10605 </HTML>
10606 ===== h_rules_incols =====
10607 <HTML>
10608 <HEAD>
10609 <TITLE>SETUP INDEX LINE COLORS SCREEN</TITLE>
10610 </HEAD>
10611 <BODY>
10612 <H1>SETUP INDEX LINE COLORS SCREEN</H1>
10613 <H2>SETUP INDEX LINE COLORS COMMANDS</H2>
10614 <!--chtml if pinemode="function_key"-->
10615 <PRE>
10616 Available  Commands -- Group 1         Available Commands -- Group 2   
10617 -------------------------------        ------------------------------  
10618 F1  Show Help Text                      F1  Show Help Text             
10619 F2  See commands in next group          F2  See commands in next group
10620 F3  Back to MAIN Alpine menu
10621 F4  Change configuration for rule
10622 F5  Move to previous rule               F5  Include file in rule config
10623 F6  Move to next rule                   F6  Exclude file from config
10624 F7  Previous page of rules
10625 F8  Next page of rules
10626 F9  Add new rule                        F9  Replicate existing rule
10627 F10 Delete existing rule
10628 F11 Shuffle the order of rules
10629 F12 Whereis (search rule nicknames)
10630 </PRE>
10631 <!--chtml else-->
10632 <PRE>
10633 Navigation                     General Alpine Commands
10634 -------------------------      -----------------------
10635  P  Prev rule                     ?  Display this help text
10636  N  Next rule                     E  Back to MAIN Alpine menu
10637  -  Previous page
10638 Spc (space bar) Next page
10639  W  WhereIs (search for word in rule nicknames)
10641 Setup Index Color Commands
10642 ------------------------------------------------
10643  A  Add new rule                  $  Shuffle the order of rules
10644  D  Delete existing rule          C  Change configuration for highlighted rule
10645  R  Replicate existing rule
10646  I  Include file in rule config   X  Exclude file from rule config
10647 </PRE>
10648 <!--chtml endif-->
10650 <H2>Description of the Setup Index Line Colors Screen</H2>
10652 Index Line Color causes lines in the MESSAGE INDEX screen to be colored.
10653 This action is only available if your terminal is capable of displaying
10654 color and color display has been enabled with the
10655 <A HREF="h_config_color_style">Color Style</A> option within the
10656 Setup Color screen.
10657 (In PC-Alpine, color is always enabled so there is no option to turn on.)
10658 This screen lets you add, delete, modify, or change the order of the rules
10659 that cause the lines in the MESSAGE INDEX to be displayed in different
10660 colors.
10662 Each rule has a &quot;Pattern&quot;,
10663 which is used to decide which of the rules is used; and the color that
10664 is used if the Pattern matches a particular message.
10666 <H2>Index Color Patterns</H2>
10668 In order to determine whether or not a message matches an Index Color Rule
10669 the message is compared with the rule's Pattern.
10670 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10671 Scoring, Other Rules, and Search Rules, so are described in only one place,
10672 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10675 If none of the Index Color rules is a match for a particular index line,
10676 then the color used is set using
10677 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10679 <H2>Index Line Color</H2>
10681 This is the color that index lines are colored when there is a matching
10682 Pattern.
10683 This colors the whole index line, except possibly the status letters,
10684 which may be colored separately using
10685 the <A HREF="h_color_setup">Setup Kolor</A> screen.
10687 <H2>Command Descriptions</H2>
10689 <H3>Add</H3>
10691 The Add command is used to add a new rule definition to your set of
10692 rules.
10693 The new rule will be added after the highlighted rule.
10695 <H3>Delete</H3>
10697 The Delete command deletes the currently highlighted rule.
10699 <H3>Change</H3>
10701 The Change command lets you edit the nickname, Pattern,
10702 and Index Line Color of the currently highlighted rule.
10704 <H3>Shuffle</H3>
10706 The Shuffle command allows you to change the order of the rules.
10707 You may move the currently highlighted rule up or down in the list.
10708 The order of the rules is important since the rules are tested for a
10709 match starting with the first rule and continuing until a match is found.
10710 You should place the rules with more specific Patterns near the beginning
10711 of the list, and those with more general Patterns near the end so that
10712 the more specific matches will happen when appropriate.
10714 <H3>Replicate</H3>
10716 The Replicate command is used to copy an existing rule definition and modify it.
10717 The new rule will be added after the highlighted rule.
10719 <H3>IncludeFile</H3>
10721 The IncludeFile command allows you to add a rules file to your configuration.
10722 Usually, your rules will be contained in your Alpine configuration file.
10723 If you wish, some or all of your rules may be stored in a separate file.
10724 If a rules file already exists (maybe it was made by somebody else using
10725 Alpine), you may insert it before the currently highlighted rule.
10726 You may also insert an empty file or a file that does not yet exist.
10727 Once you have an empty rules file in your configuration, you may use
10728 the Shuffle command to move rules into it.
10729 In fact, that's the only way to get the initial rule into the file.
10731 <H3>eXcludeFile</H3>
10733 The eXcludeFile command removes a rules file from your rules configuration.
10734 A limitation of the program is that in order to exclude a rules file
10735 that file must have at least one rule
10736 in it, otherwise you won't be able to highlight a line in the file.
10737 So you may have to add a dummy rule to the file in order to exclude the file.
10738 <P><UL>
10739 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10740 </UL>
10742 &lt;End of help on this topic&gt;
10743 </BODY>
10744 </HTML>
10745 ===== h_rules_filter =====
10746 <HTML>
10747 <HEAD>
10748 <TITLE>SETUP FILTERING SCREEN</TITLE>
10749 </HEAD>
10750 <BODY>
10751 <H1>SETUP FILTERING SCREEN</H1>
10752 <H2>SETUP FILTERING COMMANDS</H2>
10753 <!--chtml if pinemode="function_key"-->
10754 <PRE>
10755 Available  Commands -- Group 1         Available Commands -- Group 2   
10756 -------------------------------        ------------------------------  
10757 F1  Show Help Text                      F1  Show Help Text             
10758 F2  See commands in next group          F2  See commands in next group
10759 F3  Back to MAIN Alpine menu
10760 F4  Change configuration for filter
10761 F5  Move to previous filter             F5  Include file in filter config
10762 F6  Move to next filter                 F6  Exclude file from config
10763 F7  Previous page of filters
10764 F8  Next page of filters
10765 F9  Add new filter                      F9  Replicate existing filter
10766 F10 Delete existing filter
10767 F11 Shuffle the order of filters
10768 F12 Whereis (search filter nicknames)
10769 </PRE>
10770 <!--chtml else-->
10771 <PRE>
10772 Navigation                     General Alpine Commands
10773 -------------------------      -----------------------
10774  P  Prev Filter                   ?  Display this help text
10775  N  Next Filter                   E  Back to MAIN Alpine menu
10776  -  Previous page
10777 Spc (space bar) Next page
10778  W  WhereIs (search for word in filter nicknames)
10780 Setup Filters Commands
10781 ------------------------------------------------
10782  A  Add new filter                $  Shuffle the order of filters
10783  D  Delete existing filter        C  Change configuration for highlighted filter
10784  R  Replicate existing filter
10785  I  Include file in filter config X  Exclude file from filter config
10786 </PRE>
10787 <!--chtml endif-->
10789 <H2>Description of the Setup Filtering Screen</H2>
10791 This screen lets you add, delete, modify, or change the order of the rules
10792 that determine the filtering Alpine does on folders you view.
10794 The software that actually delivers mail (the stuff that happens
10795 before Alpine is involved) for you is in a better position to do mail filtering
10796 than Alpine itself.
10797 If possible, you may want to look into using that sort of mail filtering to
10798 deliver mail to different folders, delete it, or forward it.
10799 However, if you'd like Alpine to help with this, Alpine's filtering is for you.
10801 Filtering is a way to automatically move certain messages from one folder
10802 to another or to delete messages.
10803 It can also be used to set message status (Important, Deleted, New,
10804 Answered) and to set <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> for messages.
10805 Alpine doesn't have the ability to forward mail to another address or
10806 to deliver vacation messages.
10808 Each filtering rule has a &quot;Pattern&quot; and a &quot;Filter Action&quot;.
10809 When a folder is opened, when new mail arrives in an open folder, or
10810 when mail is Expunged from a folder; each
10811 message is compared with the Patterns of your filtering rules.
10812 The comparisons start with the first rule and keep going until there
10813 is a match.
10814 If a match is found, the message may be deleted or moved, depending on
10815 the setting of the Filter Action.
10816 If the message is not deleted, it may have its status altered.
10819 <EM>NOTE:</EM>
10820 When setting up a Pattern used to delete messages,
10821 it is recommended that you test the Pattern first with a &quot;Move&quot;
10822 folder specified in
10823 case unintended matches occur.  Messages that are deleted will be removed 
10824 from the folder and <EM>unrecoverable</EM> from within Alpine after the
10825 next Expunge command or once the folder being filtered has been closed.
10827 <H2>Filter Patterns</H2>
10829 In order to determine whether or not a message matches a filter the message is
10830 compared with the Filter's Pattern.
10831 These Patterns are the same for use with Roles, Filtering, Index Coloring,
10832 Scoring, Other Rules, and Search Rules, so are described in only one place,
10833 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
10835 Since filtering is a potentially destructive action, if you have a filtering
10836 Pattern with nothing other than Current Folder Type set, that filtering
10837 rule is ignored.
10839 <H2>Filter Actions</H2>
10841 Once a filter match is found for a particular message, there are some actions
10842 that may be taken.
10843 First, the message may have its status changed.
10844 This is the same message status that you can manipulate manually using the
10845 <a href="h_common_flag">Flag Command</a>.
10846 There are always four elements of message status that you can control.
10847 You can set or clear the Important status, the New status, the Deleted
10848 status, and the Answered status.
10849 Of course, if the filter is going to delete the message,
10850 then there is no point in setting message status.
10851 You may also be able to set user-defined keywords for a message.
10852 Read a little about keywords in the help text for the
10853 <A HREF="h_common_flag">Flag</A> command.
10855 Second, the filter may delete or move the message.
10856 Deleting the message marks it Deleted and removes it from view.
10857 It is effectively gone forever (though it technically is still there until
10858 the next expunge command, which may happen implicitly).
10859 Moving the message moves it from the open folder into the folder
10860 listed on the &quot;Folder List&quot; line of the filter configuration.
10861 If you list more than one folder name (separated by commas) then the message
10862 will be copied to each of those folders.
10863 In any case, if &quot;Delete&quot; or &quot;Move&quot; is set then the
10864 message is removed from the current folder.
10865 If you just want to set the messages status without deleting it from
10866 the folder, then set the filter action to
10867 &quot;Just Set Message Status&quot;.
10869 (There is no way to do a Copy instead of a Move, due to the difficulties
10870 involved in keeping track of whether or not a message has
10871 already been copied.)
10873 <H2>Command Descriptions</H2>
10875 <H3>Add</H3>
10877 The Add command is used to add a new filter definition to your set of
10878 filters.
10879 The new filter will be added after the highlighted filter.
10881 <H3>Delete</H3>
10883 The Delete command deletes the currently highlighted filter.
10885 <H3>Change</H3>
10887 The Change command lets you edit the nickname, Pattern,
10888 and Folder of the currently highlighted filter.
10890 <H3>Shuffle</H3>
10892 The Shuffle command allows you to change the order of the filters.
10893 You may move the currently highlighted filter up or down in the list.
10894 The order of the filters is important since the filters are tested for a
10895 match starting with the first filter and continuing until a match is found.
10896 You should place the filters with more specific Patterns near the beginning
10897 of the list, and those with more general Patterns near the end so that
10898 the more specific matches will happen when appropriate.
10900 <H3>Replicate</H3>
10902 The Replicate command is used to copy an existing filter and modify it.
10903 The new filter will be added after the highlighted filter.
10905 <H3>IncludeFile</H3>
10907 The IncludeFile command allows you to add a filters file to your configuration.
10908 Usually, your filters will be contained in your Alpine configuration file.
10909 If you wish, some or all of your filters may be stored in a separate file.
10910 If a filters file already exists (maybe it was made by somebody else using
10911 Alpine), you may insert it before the currently highlighted filter.
10912 You may also insert an empty file or a file that does not yet exist.
10913 Once you have an empty filters file in your configuration, you may use
10914 the Shuffle command to move filters into it.
10915 In fact, that's the only way to get the initial filter into the file.
10917 <H3>eXcludeFile</H3>
10919 The eXcludeFile command removes a filters file from your filters configuration.
10920 A limitation of the program is that in order to exclude a filters file
10921 that file must have at least one filter
10922 in it, otherwise you won't be able to highlight a line in the file.
10923 So you may have to add a dummy filter to the file in order to exclude the file.
10924 <P><UL>
10925 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
10926 </UL>
10928 <H3>Performance Considerations</H3>
10929 The number and type of patterns being tested can 
10930 adversely effect performance.  Issues to be aware
10931 of include:
10933 <UL>
10934   <LI> The more filters you have defined the longer it will take to run down
10935 the list.  Deleting unused filters is a good idea.
10936   <LI> Filtering in newsgroups served by an NNTP server will be slow
10937 if your patterns include tests other than &quot;From:&quot;
10938 or &quot;Subject:&quot;.
10939 </UL>
10941 &lt;End of help on this topic&gt;
10942 </BODY>
10943 </HTML>
10944 ===== h_rules_score =====
10945 <HTML>
10946 <HEAD>
10947 <TITLE>SETUP SCORING SCREEN</TITLE>
10948 </HEAD>
10949 <BODY>
10950 <H1>SETUP SCORING SCREEN</H1>
10951 <H2>SETUP SCORING COMMANDS</H2>
10952 <!--chtml if pinemode="function_key"-->
10953 <PRE>
10954 Available  Commands -- Group 1         Available Commands -- Group 2   
10955 -------------------------------        ------------------------------  
10956 F1  Show Help Text                      F1  Show Help Text             
10957 F2  See commands in next group          F2  See commands in next group
10958 F3  Back to MAIN Alpine menu
10959 F4  Change configuration for rule
10960 F5  Move to previous rule               F5  Include file in rule config
10961 F6  Move to next rule                   F6  Exclude file from config
10962 F7  Previous page of rules
10963 F8  Next page of rules
10964 F9  Add new rule                        F9  Replicate existing rule
10965 F10 Delete existing rule
10966 F11 Shuffle the order of rules
10967 F12 Whereis (search rule nicknames)
10968 </PRE>
10969 <!--chtml else-->
10970 <PRE>
10971 Navigation                     General Alpine Commands
10972 -------------------------      -----------------------
10973  P  Prev rule                     ?  Display this help text
10974  N  Next rule                     E  Back to MAIN Alpine menu
10975  -  Previous page
10976 Spc (space bar) Next page
10977  W  WhereIs (search for word in rule nicknames)
10979 Setup Scoring Commands
10980 ------------------------------------------------
10981  A  Add new rule                  $  Shuffle the order of rules
10982  D  Delete existing rule          C  Change configuration for highlighted rule
10983  R  Replicate existing rule
10984  I  Include file in rule config   X  Exclude file from rule config
10985 </PRE>
10986 <!--chtml endif-->
10988 <H2>Description of the Setup Scoring Screen</H2>
10990 Most people will not use scores at all, but if you do use them, here's how
10991 they work in Alpine.
10992 Using this screen, you may define Scoring rules.
10993 The score for a message is calculated by looking at every Score rule defined
10994 and adding up the Score Values for the ones that match the message.
10995 If there are no matches for a message, it has a score of zero.
10996 Message scores may be used a couple of ways in Alpine.
10998 <H3>Sorting by Score</H3>
11000 One of the methods you may use to sort message indexes is to sort by
11001 score.
11002 The scores of all the messages in a folder will be calculated and then
11003 the index will be ordered by placing the messages in order of ascending or
11004 descending score.
11006 <H3>Scores for use in Patterns</H3>
11008 The Patterns used for Roles, Index Line Coloring, and Filtering have a
11009 category labeled &quot;Score Interval&quot;.
11010 When a message is being compared with a Pattern to check for a match, if
11011 the Score Interval is set only messages that have a score somewhere in
11012 the interval are a match.
11014 <H2>Scoring Rule Patterns</H2>
11016 In order to determine whether or not a message matches a scoring rule
11017 the message is compared with the rule's Pattern.
11018 These Patterns are the same for use with Roles, Filtering, Index Coloring,
11019 Scoring, Other Rules, and Search Rules, so are described in only one place,
11020 &quot;<A HREF="h_rule_patterns">here</A>&quot;.
11023 Actually, Scoring rule Patterns are slightly different from the other types of
11024 Patterns because Scoring rule Patterns don't contain a Score Interval.
11025 In other words, when calculating the score for a message, which is done
11026 by looking at the Scoring rule Patterns, scores aren't used.
11028 <H2>Score Value</H2>
11030 This is the value that will be added to the score for a message if the
11031 rule's Pattern is a match.
11032 Each individual Score Value is an integer between -100 and 100, and the
11033 values from matching rules are added together to get a message's score.
11034 There is also a way to extract the value from a particular header of each
11035 message. See the help text for Score Value for further information.
11037 <H2>Command Descriptions</H2>
11039 <H3>Add</H3>
11041 The Add command is used to add a new scoring rule definition.
11042 The new rule will be added after the highlighted rule.
11044 <H3>Delete</H3>
11046 The Delete command deletes the currently highlighted scoring rule.
11048 <H3>Change</H3>
11050 The Change command lets you edit the nickname, Pattern,
11051 and Score Value of the currently highlighted scoring rule.
11053 <H3>Shuffle</H3>
11055 The Shuffle command allows you to change the order of the scoring rules.
11056 You may move the currently highlighted rule up or down in the list.
11057 The order of the rules is important since the rules are tested for a
11058 match starting with the first rule and continuing until a match is found.
11059 You should place the rules with more specific Patterns near the beginning
11060 of the list, and those with more general Patterns near the end so that
11061 the more specific matches will happen when appropriate.
11063 <H3>Replicate</H3>
11065 The Replicate command is used to copy an existing rule and modify it.
11066 The new rule will be added after the highlighted rule.
11068 <H3>IncludeFile</H3>
11070 The IncludeFile command allows you to add a rules file to your configuration.
11071 Usually, your rules will be contained in your Alpine configuration file.
11072 If you wish, some or all of your rules may be stored in a separate file.
11073 If a rules file already exists (maybe it was made by somebody else using
11074 Alpine), you may insert it before the currently highlighted rule.
11075 You may also insert an empty file or a file that does not yet exist.
11076 Once you have an empty rules file in your configuration, you may use
11077 the Shuffle command to move rules into it.
11078 In fact, that's the only way to get the initial rule into the file.
11080 <H3>eXcludeFile</H3>
11082 The eXcludeFile command removes a rules file from your rules configuration.
11083 A limitation of the program is that in order to exclude a rules file
11084 that file must have at least one rule
11085 in it, otherwise you won't be able to highlight a line in the file.
11086 So you may have to add a dummy rule to the file in order to exclude the file.
11087 <P><UL>
11088 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11089 </UL>
11091 &lt;End of help on this topic&gt;
11092 </BODY>
11093 </HTML>
11094 ===== h_direct_config =====
11095 <HTML>
11096 <HEAD>
11097 <TITLE>SETUP LDAP DIRECTORY SERVERS SCREEN</TITLE>
11098 </HEAD>
11099 <BODY>
11100 <H1>SETUP LDAP DIRECTORY SERVERS SCREEN</H1>
11101 <H2>SETUP LDAP DIRECTORY SERVERS COMMANDS</H2>
11102 <!--chtml if pinemode="function_key"-->
11103 <PRE>
11104 Available  Commands                        
11105 -------------------------------            
11106 F1  Show Help Text                         
11107 F3  Back to MAIN Alpine menu                 
11108 F4  Change configuration for directory server  
11109 F5  Move to previous directory server          
11110 F6  Move to next directory server              
11111 F7  Previous page of directory servers         
11112 F8  Next page of directory servers
11113 F9  Add new directory server
11114 F10 Delete existing directory server
11115 F11 Shuffle the order of directory servers
11116 F12 Whereis (search directory server titles)   
11117 </PRE>
11118 <!--chtml else-->
11119 <PRE>
11120 Navigation                     General Alpine Commands
11121 -------------------------      -----------------------
11122  P  Prev Directory Server         ?  Display this help text
11123  N  Next Directory Server         E  Back to MAIN Alpine menu
11124  -  Previous page
11125 Spc (space bar) Next page
11126  W  WhereIs (search for word in directory server titles)
11128 Setup LDAP Directory Server Commands
11129 ------------------------------------------------
11130  A  Add new directory server      $  Shuffle the order of directory servers
11131  D  Delete existing dir server    C  Change configuration for highlighted server
11132 </PRE>
11133 <!--chtml endif-->
11135 <H2>Description of the Setup LDAP Directory Servers Screen</H2>
11137 This screen lets you add, delete, modify, or change the order of your
11138 directory servers. You may also set some optional behavior for each server.
11139 The &quot;Add Dir&quot; command brings up a blank form to 
11140 fill in. You will have to supply at least the name of the LDAP server.
11141 You will often have to supply a search base to be used with that server,
11142 as well. Once the form has been brought up on your screen, there is help
11143 available for each of the options you may set.
11145 The &quot;Del Dir&quot; command allows you to remove a directory server
11146 from your configuration.
11148 The &quot;Change&quot; command is similar to the &quot;Add Dir&quot; command.
11149 The difference is that instead of bringing up a form for a new server
11150 configuration, you are changing the configuration of an existing entry.
11151 For example, you might want to correct a typing error, change a
11152 nickname, or change one of the options set for that server.
11154 The &quot;Shuffle&quot; command is used to change the order of directory
11155 servers.
11156 <P><UL>
11157 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11158 </UL>
11160 &lt;End of help on this topic&gt;
11161 </BODY>
11162 </HTML>
11163 ============= h_address_display ========================
11164 <HTML>
11165 <HEAD>
11166 <TITLE>SEARCH RESULTS INDEX</TITLE>
11167 </HEAD>
11168 <BODY>
11169 <H1>SEARCH RESULTS INDEX</H1>
11170 This screen shows the results, if any, of your Directory Server search.  
11171 Commands (besides those for screen navigation) are:
11172 <DL>
11173 <DT>View
11174 <!--chtml if pinemode="function_key"-->
11175 (F4)
11176 <!--chtml else-->
11178 <!--chtml endif-->
11179 </DT>
11180 <DD>See the full information for the selected entry.
11182 <DT>Compose
11183 <!--chtml if pinemode="function_key"-->
11184 (F9)
11185 <!--chtml else-->
11187 <!--chtml endif--></DT>
11188 <DD>Compose a message with the selected entry as the recipient.
11190 <DT>Role
11191 <!--chtml if pinemode="function_key"-->
11192 (F2)
11193 <!--chtml else-->
11195 <!--chtml endif--></DT>
11196 <DD>Compose a message with the selected entry as the recipient. This differs
11197 from Compose in that you may select a role before beginning your composition.
11199 <DT>Forward
11200 <!--chtml if pinemode="function_key"-->
11201 (F10)
11202 <!--chtml else-->
11204 <!--chtml endif--></DT>
11205 <DD>Send the full information for the selected entry as an 
11206 email message to someone else.
11208 <DT>Save
11209 <!--chtml if pinemode="function_key"-->
11210 (F11)
11211 <!--chtml else-->
11213 <!--chtml endif-->
11214 </DT>
11215 <DD>Save to your address book:
11216 <UL>
11217 <LI>the result of the search (as just found through your query) for the 
11218 selected entry; or 
11219 <LI>the selected entry for repeated Directory Server searching when used 
11220 in the future.
11221 </UL>
11222 or<BR>
11223 Export to a file (external to Alpine):
11224 <UL>
11225 <LI>the full information for the selected entry; or
11226 <LI>the email address from the selected entry; or
11227 <LI>the selected entry in <A HREF="h_whatis_vcard">vCard</A> format.
11228 </UL>
11229 <DT>WhereIs
11230 <!--chtml if pinemode="function_key"-->
11231 (F12)
11232 <!--chtml else-->
11234 <!--chtml endif-->
11235 </DT>
11236 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
11237 displayed text, not the full records for each entry.)  
11238 </DL>
11239 &lt;End of help on this topic&gt;
11240 </BODY>
11241 </HTML>
11242 ============= h_address_select ========================
11243 <HTML>
11244 <HEAD>
11245 <TITLE>SEARCH RESULTS INDEX</TITLE>
11246 </HEAD>
11247 <BODY>
11248 <H1>SEARCH RESULTS INDEX</H1>
11249 This screen shows the results, if any, of your Directory Server search.  
11250 Commands (besides those for screen navigation) are:
11251 <DL>
11252 <DT>Select
11253 </DT>
11254 <DD>Select this entry for use.
11256 <DT>ExitSelect
11257 <DD>Exit without selecting any of the entries.
11259 <DT>WhereIs
11260 </DT>
11261 <DD>Search for text in the SEARCH RESULTS INDEX screen. (Searches only the 
11262 displayed text, not the full records for each entry.)  
11263 </DL>
11264 &lt;End of help on this topic&gt;
11265 </BODY>
11266 </HTML>
11267 ===== h_folder_maint =====
11268 <HTML>
11269 <HEAD>
11270 <TITLE>Help for Folder List</TITLE>
11271 </HEAD>
11272 <BODY>
11273 <H1>FOLDER LIST COMMANDS</H1>
11274 <!--chtml if pinemode="function_key"-->
11275 <PRE>
11276 Available Commands -- Group 1        Available Commands -- Group 2
11277 -------------------------------      ------------------------------
11278 F1  Show Help Text                    F1  Show Help Text               
11279 F2  See commands in next group        F2  See commands in next group  
11280 F3  MAIN MENU Screen                  F3  Quit Alpine                    
11281 F4  Select folder and view it         F4  MAIN MENU Screen
11282 F5  Move to previous folder
11283 F6  Move to next folder               F6  Specify a folder to go to
11284 F7  Show previous screen of listing   F7  Show MESSAGE INDEX of current folder
11285 F8  Show next screen of listing       F8  Compose a message
11286 F9  Add a new folder                  F9  Print folder listing
11287 F10 Delete selected folder
11288 F11 Rename selected folder
11289 F12 Whereis (search folder names)
11291 Available Commands -- Group 3
11292 F1  Show Help Text
11293 F2  See commands in next group
11294 F5  Go to next new message
11295     (or count recent messages if <A HREF="h_config_tab_checks_recent"><!--#echo var="FEAT_tab-checks-recent"--></A> is set)
11296 F8  Compose a message using roles
11297 F9  Export folder to a file
11298 F10 Import the file back to a folder
11299 </PRE>
11300 <!--chtml else-->
11301 <PRE>
11302 Navigating the Folder Screen            Operations on the Selected Folder
11303 ----------------------------            ---------------------------------
11304  P   Move to previous folder              V  View Index of selected folder
11305  N   Move to next folder                  D  Delete
11306  -   Show previous page of listing        R  Rename
11307 Spc  (space bar) Show next page           E  Export to file
11308                                           U  Import from file to folder
11310 FOLDER LIST Screen Commands              General Alpine Command
11311 ---------------------------              -----------------------
11312  A  Add a folder                          O  Show all other available commands
11313  G  Specify a folder to go to             ?  Show Help text
11314  I  Show MESSAGE INDEX of current folder  M  MAIN MENU Screen
11315  W  Whereis (search folder names)         Q  Quit Alpine
11316  %  Print folder listing                  C  Compose a message
11317                                           #  Compose a message using roles
11318 </PRE>
11319 <!--chtml endif-->
11321 These commands are only available in the FOLDER LIST screen when the 
11322 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot; 
11323 feature</A> is set in the SETUP CONFIGURATION screen:<DL>
11324 <DT>Select:</DT>
11325 <DD>Select folders by certain criteria:<UL>
11326 <LI>All: of limited use, since there is no Apply command.
11327 <LI>by Property: <UL>
11328         <LI>folder contains messages not yet seen 
11329         <LI>folder contains new messages
11330         <LI>folder contains exactly as many, more, or fewer messages 
11331 than a given number
11332         </UL>
11333 <LI>by Text: <UL>
11334         <LI>contained in name of folder (Name Select)
11335         <LI>contained in messages in folder (Content Select)
11336         </UL>
11337 </UL></DD>
11339 <DT>Select current:</DT>
11340 <DD>Select the folder the cursor is on.  (Can be used to &quot;manually&quot; 
11341 add one or more folders to a set created with the Select command described 
11342 above.)</DD>
11343 <DT>Zoom mode:</DT>
11344 <DD>Toggles display of only selected folders or all folders on and off.</DD>
11345 </DL>
11347 If the feature
11348 <A HREF="h_config_tab_checks_recent">&quot;<!--#echo var="FEAT_tab-checks-recent"-->&quot;</A>
11349 is set then the TAB key will display the number of recent messages and
11350 the total number of messages in the highlighted folder.
11352 The &quot;Export&quot; command causes the lowest common denominator style
11353 mailbox to be written to a file.
11354 If the file already exists, you are asked if you want to delete it.
11355 If you say No, then the operation is aborted.
11356 Export might be a reasonable way to store a backup or an archival copy of
11357 a folder.
11358 The exported-to file is a local file on the system where you are running Alpine.
11359 The &quot;Import&quot; command is the opposite of the Export command.
11360 It reads a file created by Export and asks where it should save it in your
11361 folders.
11362 This could be a new folder or an existing folder.
11363 If the folder already exists, the messages from the exported file will be
11364 appended to the folder.
11366 <CENTER>Description of the FOLDER LIST Screen</CENTER>
11368 The purpose of the FOLDER LIST screen is to help you browse and manage
11369 the folders and directories (also known as &quot;hierarchy&quot;)
11370 contained within a collection.
11373 Folders and directories are arranged alphabetically across lines of
11374 the screen.  Directories, if present, are denoted by a special
11375 character at the end of the name known as the hierarchy delimiter
11376 (typically, &quot;/&quot;).  By default, folders and directories are
11377 mixed together.  The
11378 "<A HREF="h_config_fld_sort_rule"><!--#echo var="VAR_folder-sort-rule"--></A>"
11379 configuration option can be used to group directories toward the 
11380 beginning or end of the list.
11383 The Next/Prev Page commands help browse the list, the Next/Prev Fldr
11384 commands change the &quot;selected&quot; (i.e., highlighted) folder or
11385 directory, and the View Fldr/Dir commands will &quot;open&quot; the
11386 selected item.  Folder and directory management is provided via the
11387 Rename, Delete and Add commands.
11389 <P><CENTER>About Folders</CENTER>
11390 What are Folders?<P>
11392 Folders are simply files where messages are kept.  Every message has to be
11393 in a folder.  Most every Alpine user starts out with 3 folders: an INBOX, a
11394 folder for sent mail and a folder for saved messages.<P>
11396 You may create as many other folders as you wish.  They must be given
11397 names that can be filenames on the filesystem.  
11400 You can move messages from one folder to another by opening the original
11401 folder and saving messages into the other folder just as you can save
11402 message from your INBOX to any other folder.<P>
11404 Folders are typically just files in the filesystem.  However, the files
11405 that are
11406 folders have some special formatting in them (so that Alpine knows where one
11407 message ends and another begins) and should <EM>not</EM> be edited outside of
11408 Alpine.  If you want copies of your messages in text files that you can edit
11409 or otherwise manipulate, use the Export command to copy them from Alpine into
11410 your regular file area.
11413 FOR MORE INFORMATION: See the section on
11414 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11416 <CENTER>About Directories</CENTER>
11418 A directory is simply a container used to group folders within a
11419 folder list.  You can create as many directories as you like.  And 
11420 directories can even contain directories themselves.
11423 SPECIAL NOTES: When accessing folders on an IMAP server, it is important
11424 to note that not all IMAP servers support directories.  If you find that
11425 the Add command fails to offer the &quot;Create Directory&quot; subcommand,
11426 then it's likely that directories are not supported by the server serving
11427 in that collection.
11430 Similarly, servers that do provide for directories may not do so in
11431 the same way.  On some servers, for example, each folder name you
11432 create is at the same time capable of being a directory.  When this
11433 happens, Alpine will display both the folder name and the name of the
11434 directory (with trailing hierarchy delimiter) in the folder list.
11437 Another issue with IMAP access, though with a much smaller set of servers,
11438 is that not all servers accept the request to list out the available
11439 folders and directories in the same way.  If you find yourself having
11440 trouble viewing folders on your server, you might investigate the
11441 &quot;<A HREF="h_config_lame_list_mode"><!--#echo var="FEAT_enable-lame-list-mode"--></A>&quot;
11442 feature.
11444 <UL>
11445 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
11446 </UL>
11448 &lt;End of help on this topic&gt;
11449 </BODY>
11450 </HTML>
11451 ========= h_valid_folder_names ========
11452 <HTML>
11453 <HEAD>
11454 <TITLE>Explanation of Valid Folder Names</TITLE>
11455 </HEAD>
11456 <BODY>
11457 <H1>Folder Name Syntax Explained</H1>
11459 Once your folder collections are defined, you can usually refer to
11460 folders by their simple (unqualified) name, or pick from a FOLDER LIST
11461 display.  However, understanding the complete syntax for folder names,
11462 both local and remote, is handy when using the Goto command and when
11463 you are adding new folder collections via the Setups/collectionList screen.
11465 An Alpine folder name looks like
11468 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;]&lt;namespace-specific-part&gt;</SAMP></CENTER>
11471 The square brackets ([]) mean that the part is optional.
11474 If there is no remote-specification, then the folder name is interpreted
11475 locally on the computer running Alpine.
11476 Local folder names depend on the operating system used by the computer 
11477 running Alpine, as well as the configuration of that system.  For example,
11478 &quot;C:&#92;PINE&#92;FOLDERS&#92;OCT-94&quot; might exist on a PC, and
11479 &quot;~/mail/september-1994&quot; might be a reasonable folder name on a
11480 system running Unix.
11483 Alpine users have the option of using folders that are stored on some other
11484 computer.  Alpine accesses remote folders via IMAP (the Internet Message
11485 Access Protocol), or in the case of news, via NNTP (the Network News
11486 Transport Protocol).  To be able to access remote folders in Alpine, the
11487 remote host must be running the appropriate server software (imapd or
11488 nntpd) and you must correctly specify the name of the folder to Alpine,
11489 including the domain name of the remote machine. For example,
11491 <CENTER><SAMP>&#123;monet.art.example.com}INBOX</SAMP></CENTER>
11493 could be a remote folder specification, and so could
11495 <CENTER><SAMP>&#123;unixhost.art.example.com}~/mail/september-1994</SAMP></CENTER>
11498 <CENTER><SAMP>&#123;winhost.art.example.com}&#92;mymail&#92;SEP-94</SAMP></CENTER>
11500 Note that in the case of remote folders, the directory/file path in the specification is 
11501 determined by the operating system of the remote computer, <B>not</B> by
11502 the operating system of the computer on which you are running Alpine.
11504 As you can tell, the name of the computer is in &#123;} brackets
11505 followed immediately by the name of the folder.  (In each of these cases the
11506 optional namespace is missing.)  If, as in these
11507 examples, there is no remote access protocol specified, then IMAP is
11508 assumed.  Check
11509 <A HREF="h_folder_server_syntax">here</A>
11510 for a more detailed look at what options can be placed between the brackets.
11511 If there are no brackets at all, then the folder name is interpreted locally
11512 on the computer on which you are running Alpine.
11515 To the right of the brackets when a server name is present, or at the
11516 start of the foldername if no server is present, the sharp sign,
11517 &quot;#&quot;, holds special meaning.  It indicates a folder name
11518 outside the area reserved for your personal folders.  In fact, it's
11519 used to indicate both the name of the folder, and a special phrase
11520 telling Alpine how to interpret the name that follows.
11523 So, for example, Alpine can be used to access a newsgroup that might be 
11524 available on your computer using:
11526 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11528 The sharp sign indicates the folder name is outside your personal
11529 folder area.  The &quot;news.&quot; phrase after it tells Alpine to 
11530 interpret the remainder of the name as a newsgroup.
11533 Similarly, to access a newsgroup on your IMAP server, you might
11534 use something like:
11536 <CENTER><SAMP>&#123;wharhol.art.example.com}#news.comp.mail.misc</SAMP></CENTER>
11539 There are a number of such special phrases (or &quot;namespaces&quot;)
11540 available.  For a more detailed explanation read about
11541 <A HREF="h_folder_name_namespaces">Namespaces</A>.
11544 Note that &quot;INBOX&quot; has special meaning in both local and remote folder
11545 names.  The name INBOX refers to your &quot;principal incoming
11546 message folder&quot; and will be mapped to the actual file name used for your
11547 INBOX on any given host.  Therefore, a name like
11548 &quot;&#123;xxx.art.example.com}INBOX&quot; refers to whatever file is used to
11549 store incoming mail for you on that particular host.
11552 &lt;End of help on this topic&gt;
11553 </BODY>
11554 </HTML>
11555 ======= h_folder_name_namespaces =======
11556 <HTML>
11557 <HEAD>
11558 <TITLE>FOLDER NAME NAMESPACES EXPLAINED</TITLE>
11559 </HEAD>
11560 <BODY>
11561 <H1>Folder Name Namespaces Explained</H1>
11563 An Alpine folder name looks like
11566 <CENTER><SAMP>[{&lt;remote-specification&gt;}][#&lt;namespace&gt;][&lt;namespace-specific-part&gt;]</SAMP></CENTER>
11569 The local part of a folder name has an optional &quot;Namespace&quot; which
11570 tells Alpine how to interpret the rest of the name.
11572 <P> 
11573 By default the folder name is interpreted as defining a section of your personal
11574 folder area.  This area and how you specify it are defined by the
11575 server, if one is specified, or, typically, the home
11576 directory, if no server is defined.
11579 If a namespace is specified, it begins with the
11580 sharp, &quot;#&quot;, character followed by the name of the namespace
11581 and then the namespace's path-element-delimiter.  Aside from the
11582 path's format, namespaces can also imply access rights, content
11583 policy, audience, location, and, occasionally, access methods.
11586 Each server exports its own set (possibly of size one) of 
11587 namespaces.  Hence, it's likely communication with your server's
11588 administrator will be required for specific configurations.  Some of
11589 the more common namespaces, however, include:
11591 <DL>
11592 <DT>#news.</DT>
11593 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
11594 names are hierarchically defined with each level delimited by a period.
11596 <CENTER><SAMP>#news.comp.mail.pine</SAMP></CENTER>
11598 </DD>
11599 <DT>#public/</DT>
11600 <DD>This specifies a folder area that the server may export to the general
11601 public.
11602 </DD>
11603 <DT>#shared/</DT>
11604 <DD>This specifies a folder area that the server may export to groups
11605 of users.
11606 </DD>
11607 <DT>#ftp/</DT>
11608 <DD>This specifies a folder area that is the same as that it may have 
11609 exported via the &quot;File Transfer Protocol&quot;.
11610 </DD>
11611 <DT>#mh/</DT>
11612 <DD>This specifies the personal folder area associated with folders
11613 and directories that were created using the MH message handling system.
11614 </DD>
11615 <DT>#move/</DT>
11616 <DD>This namespace is interpreted locally by Alpine. It has an unusual interpretation and format.
11618 <CENTER><SAMP>#move&lt;DELIM&gt;&lt;MailDropFolder&gt;&lt;DELIM&gt;&lt;DestinationFolder&gt;</SAMP></CENTER>
11620 The #move namespace is followed by two folder names separated by a delimiter
11621 character.
11622 The delimiter character may be any character that does not appear in
11623 the MailDropFolder name.
11624 The meaning of #move is that mail will be copied from the MailDropFolder to
11625 the DestinationFolder and then deleted (if possible) from the MailDropFolder.
11626 Periodic checks at frequency
11627 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A>, but with a minimum
11628 time between checks set by
11629 <A HREF="h_config_maildropcheck"><!--#echo var="VAR_maildrop-check-minimum"--></A>,
11630 are made for new mail arriving in the MailDropFolder.
11631 An example that copies mail from a POP inbox to a local folder follows
11633 <CENTER><SAMP>#move+{popserver.example.com/pop3/ssl}inbox+local folder</SAMP></CENTER>
11635 To you it appears that mail is being delivered to the local folder when it
11636 is copied from the MailDropFolder, and you read mail from the local folder.
11638 Note that if the DestinationFolder does not exist then the messages are not
11639 copied from the MailDropFolder.
11640 A #move folder may only be used as an
11641 <A HREF="h_config_enable_incoming">&quot;Incoming folder&quot;</A> or
11642 an Inbox.
11643 When you are in the FOLDER LIST of Incoming Message Folders (after turning
11644 on the
11645 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
11646 option)
11647 the Add command has a subcommand &quot;Use Mail Drop&quot;
11648 which may be helpful for defining the folder in your Alpine configuration.
11649 The same is true when you edit the
11650 <A HREF="h_config_inbox_path"><!--#echo var="VAR_inbox-path"--></A>
11651 option in Setup/Config.
11652 Each of these configuration methods will also create the DestinationFolder
11653 if it doesn't already exist.
11654 If you are having problems, make sure the DestinationFolder exists.
11655 You may find some more useful information about Mail Drops at
11656 <A HREF="h_maildrop">What is a Mail Drop?</A>.
11657 </DD>
11658 </DL>
11661 In addition, the server may support access to other user's folders,
11662 provided you have suitable permissions.  Common methods use a prefix
11663 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
11664 indicate the root of the other user's folder area.
11667 No, nothing's simple.
11670 &lt;End of help on this topic&gt;
11671 </BODY>
11672 </HTML>
11673 ============= h_whatis_vcard ========================
11674 <HTML>
11675 <HEAD>
11676 <TITLE>VCARD EXPLAINED</TITLE>
11677 </HEAD>
11678 <BODY>
11679 <H1>What is the vCard format?</H1>
11680 A &quot;vCard&quot; is a sort of electronic business card, for exchanging 
11681 information about and among people and organizations electronically.  
11682 More information about vCard can be found (as of May 1998) on the WWW site 
11683 of the Internet Mail Consortium at the URL:
11685 <CENTER><A HREF="http://www.imc.org/pdi/">http://www.imc.org/pdi/</A></CENTER>
11687 &lt;End of help on this topic&gt;
11688 </BODY>
11689 </HTML>
11690 ===== h_folder_open =====
11691 <HTML>
11692 <HEAD>
11693 <TITLE>Explanation of Folder Selection</TITLE>
11694 </HEAD>
11695 <BODY>
11696 <BR>
11697 <BR>
11698 This screen is designed to allow you to quickly and easily survey your
11699 folders and select one to open.
11700 <!--chtml if pinemode="function_key"-->
11701 <PRE>
11702 Navigating the List of Folders             General Alpine Commands
11703 ------------------------------             -----------------------
11704  P   Move to previous folder               ?   Show this help text
11705  N   Move to next folder
11706  -   Show previous screen of folders
11707 Spc  (space bar) Show next screen
11708  W   WhereIs (search folder names)
11710 Folder Selection Commands
11711 -------------------------
11712  E   Exit the Folder Select menu (without selecting a folder)
11713  S   Select the currently highlighted folder
11714 </PRE>
11715 <!--chtml else-->
11716 <PRE>
11717 Navigating the List of Folders             General Alpine Commands
11718 ------------------------------             -----------------------
11719 F5   Move to previous folder               F1  Show this help text
11720 F6   Move to next folder
11721 F7   Show previous screen of folders
11722 F8   Show next screen of folders
11723 F12  WhereIs (search folder names)
11725 Folder Selection Commands
11726 -------------------------
11727 F3   Exit the Folder Select menu (without selecting a folder)
11728 F4   Select the currently highlighted folder
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_subscribe =====
11739 <HTML>
11740 <HEAD>
11741 <TITLE>Newsgroup Subcribe Screen explained</TITLE>
11742 </HEAD>
11743 <BODY>
11744 <H1>FOLDER SUBSCRIBE HELP</H1>
11746 This screen is designed to help you subscribe to newsgroups you are
11747 not currently subscribed to.  The screen display is a list of all
11748 available newsgroups (or possibly a partial list if you specified a
11749 partial name when entering the screen).  Groups you have already
11750 subscribed to have the letters &quot;SUB&quot; next to them.  You may
11751 select a single new group to subscribe to by moving the cursor to that
11752 group and pressing &quot;S&quot; or carriage return.  Alternatively,
11753 you may change into ListMode with the &quot;ListMode&quot; command.
11754 The display will change slightly so that each group has a checkbox in
11755 front of it.  Use the cursor and the Set/Unset command to place an
11756 &quot;X&quot; in front of each newsgroup you wish to subscribe to.
11759 When you are finished marking groups, the &quot;Subscribe&quot;
11760 command will subscribe you to those groups you have marked.  Note, you
11761 may not unsubscribe to groups with this command.  Instead of the
11762 &quot;A&quot; &quot;Subscribe&quot; command, use the &quot;D&quot;
11763 UnSbscrbe command.
11766 <!--chtml if pinemode="function_key"-->
11767 <PRE>
11768 Navigating the List of Newsgroups          General Alpine Commands
11769 ---------------------------------          -----------------------
11770 F5   Move to previous group                F1   Show this help text
11771 F6   Move to next group
11772 F7   Show previous screen of groups
11773 F8   Show next screen of groups
11774 F12  WhereIs (search group names)
11775 F9   Use ListMode
11777 Group Selection Commands
11778 -------------------------
11779 F3  Exit the News Subscribe menu (without selecting any groups)
11780 F4  Subscribe to the currently highlighted newsgroup
11781 </PRE>
11782 <!--chtml else-->
11783 <PRE>
11784 Navigating the List of Newsgroups          General Alpine Commands
11785 ---------------------------------          -----------------------
11786  P   Move to previous group                ?   Show this help text
11787  N   Move to next group
11788  -   Show previous screen of groups
11789 Spc  (space bar) Show next screen
11790  W   WhereIs (search group names)
11791  L   Use ListMode
11793 Group Selection Commands
11794 -------------------------
11795  E   Exit the News Subscribe menu (without selecting any groups)
11796  S   Subscribe to the currently highlighted newsgroup
11797 </PRE>
11798 <!--chtml endif-->
11800 When in ListMode, there is an additional command for marking groups to
11801 subscribe to:
11803 <!--chtml if pinemode="function_key"-->
11804 <PRE>
11805 ListMode Commands
11806 -------------------------
11807 F9  Set or unset the highlighted group
11808 </PRE>
11809 <!--chtml else-->
11810 <PRE>
11811 ListMode Commands
11812 -------------------------
11813 X   Set or unset the highlighted group
11814 </PRE>
11815 <!--chtml endif-->
11817 &lt;End of help on this topic&gt;
11818 </BODY>
11819 </HTML>
11820 ===== h_folder_postnews =====
11821 <HTML>
11822 <HEAD>
11823 <TITLE>Newsgroup selecting for Posting explained</TITLE>
11824 </HEAD>
11825 <BODY>
11826 This screen is designed to allow you to quickly and easily survey
11827 the available newsgroups and select one to post news to.
11829 <!--chtml if pinemode="function_key"-->
11830 <PRE>
11831 Navigating the List of Newsgroups          General Alpine Commands
11832 ---------------------------------          -----------------------
11833 F5   Move to previous group                F1  Show this help text
11834 F6   Move to next group
11835 F7   Show previous screen of groups
11836 F8   Show next screen of groups
11837 F12  WhereIs (search group names)
11839 Group Selection Commands
11840 -------------------------
11841 F3   Exit the Selection menu (without selecting a group)
11842 F4   Select the currently highlighted newsgroup
11843 </PRE>
11844 <!--chtml else-->
11845 <PRE>
11846 Navigating the List of Newsgroups          General Alpine Commands
11847 ---------------------------------          -----------------------
11848  P   Move to previous group                ?  Show this help text
11849  N   Move to next group
11850  -   Show previous screen of groups
11851 Spc  (space bar) Show next screen of groups
11852  W   WhereIs (search group names)
11854 Group Selection Commands
11855 -------------------------
11856  E   Exit the Selection menu (without selecting a group)
11857  S   Select the currently highlighted newsgroup
11858 </PRE>
11859 <!--chtml endif-->
11861 &lt;End of help on this topic&gt;
11862 </BODY>
11863 </HTML>
11864 ===== h_folder_save =====
11865 <HTML>
11866 <HEAD>
11867 <TITLE>Folder Select for Save Explained</TITLE>
11868 </HEAD>
11869 <BODY>
11870 This screen is designed to allow you to quickly and easily survey your
11871 folders and select one to use for saving the current message.
11874 <!--chtml if pinemode="function_key"-->
11875 <PRE>
11876 Navigating the List of Folders             General Alpine Commands
11877 ------------------------------             -----------------------
11878 F5   Move to previous folder               F1  Show this help text
11879 F6   Move to next folder
11880 F7   Show previous screen of folders
11881 F8   Show next screen of folders
11882 F12  WhereIs (search folder names)
11884 Folder Selection Commands
11885 -------------------------
11886 F3   Exit the Folder Select menu (without selecting a folder)
11887 F4   Select the currently highlighted folder
11888 F11  AddNew folder (just like Select, but you type in a new folder name)
11889 </PRE>
11890 <!--chtml else-->
11891 <PRE>
11892 Navigating the List of Folders             General Alpine Commands
11893 ------------------------------             -----------------------
11894  P   Move to previous folder               ?  Show this help text
11895  N   Move to next folder
11896  -   Show previous screen of folders
11897 Spc  (space bar) Show next screen of folders
11898  W   WhereIs (search folder names)
11900 Folder Selection Commands
11901 -------------------------
11902  E   Exit the Folder Select menu (without selecting a folder)
11903  S   Select the currently highlighted folder
11904  A   AddNew folder (just like Select, but you type in a new folder name)
11905 </PRE>
11906 <!--chtml endif-->
11908 FOR MORE INFORMATION: See the section on
11909 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11911 &lt;End of help on this topic&gt;
11912 </BODY>
11913 </HTML>
11914 ===== h_folder_fcc =====
11915 <HTML>
11916 <HEAD>
11917 <TITLE>Folder Select for Fcc Explained</TITLE>
11918 </HEAD>
11919 <BODY>
11920 This screen is designed to allow you to quickly and easily survey your
11921 folders and select one to use as the file carbon copy (fcc) for the
11922 current message.
11925 <!--chtml if pinemode="function_key"-->
11926 <PRE>
11927 Navigating the List of Folders             General Alpine Commands
11928 ------------------------------             -----------------------
11929 F5   Move to previous folder               F1  Show this help text
11930 F6   Move to next folder
11931 F7   Show previous screen of folders
11932 F8   Show next screen of folders
11933 F12  WhereIs (search folder names)
11935 Folder Selection Commands
11936 -------------------------
11937 F3   Exit the Folder Select menu (without selecting a folder)
11938 F4   Select the currently highlighted folder
11939 F11  AddNew folder (just like Select, but you type in a new folder name)
11940 </PRE>
11941 <!--chtml else-->
11942 <PRE>
11943 Navigating the List of Folders             General Alpine Commands
11944 ------------------------------             -----------------------
11945  P   Move to previous folder               ?  Show this help text
11946  N   Move to next folder
11947  -   Show previous screen of folders
11948 Spc  (space bar) Show next screen of folders
11949  W   WhereIs (search folder names)
11951 Folder Selection Commands
11952 -------------------------
11953  E   Exit the Folder Select menu (without selecting a folder)
11954  S   Select the currently highlighted folder
11955  A   AddNew folder (just like Select, but you type in a new folder name)
11956 </PRE>
11957 <!--chtml endif-->
11959 FOR MORE INFORMATION: See the section on
11960 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
11962 &lt;End of help on this topic&gt;
11963 </BODY>
11964 </HTML>
11965 ===== h_folder_pattern_roles =====
11966 <HTML>
11967 <HEAD>
11968 <TITLE>Folder Select for Current Folder Explained</TITLE>
11969 </HEAD>
11970 <BODY>
11971 This screen is designed to allow you to quickly and easily survey your
11972 folders and select one to use as the specific Current Folder
11973 in a Pattern.
11976 <!--chtml if pinemode="function_key"-->
11977 <PRE>
11978 Navigating the List of Folders             General Alpine Commands
11979 ------------------------------             -----------------------
11980 F5   Move to previous folder               F1  Show this help text
11981 F6   Move to next folder
11982 F7   Show previous screen of folders
11983 F8   Show next screen of folders
11984 F12  WhereIs (search folder names)
11986 Folder Selection Commands
11987 -------------------------
11988 F3   Exit the Folder Select menu (without selecting a folder)
11989 F4   Select the currently highlighted folder
11990 F11  AddNew folder (just like Select, but you type in a new folder name)
11991 </PRE>
11992 <!--chtml else-->
11993 <PRE>
11994 Navigating the List of Folders             General Alpine Commands
11995 ------------------------------             -----------------------
11996  P   Move to previous folder               ?  Show this help text
11997  N   Move to next folder
11998  -   Show previous screen of folders
11999 Spc  (space bar) Show next screen of folders
12000  W   WhereIs (search folder names)
12002 Folder Selection Commands
12003 -------------------------
12004  E   Exit the Folder Select menu (without selecting a folder)
12005  S   Select the currently highlighted folder
12006  A   AddNew folder (just like Select, but you type in a new folder name)
12007 </PRE>
12008 <!--chtml endif-->
12010 FOR MORE INFORMATION: See the section on
12011 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12013 &lt;End of help on this topic&gt;
12014 </BODY>
12015 </HTML>
12016 ===== h_folder_stayopen_folders =====
12017 <HTML>
12018 <HEAD>
12019 <TITLE>Folder Select Explained</TITLE>
12020 </HEAD>
12021 <BODY>
12022 This screen is designed to allow you to quickly and easily survey your
12023 folders and select one to use as a Stay-Open folder.
12026 <!--chtml if pinemode="function_key"-->
12027 <PRE>
12028 Navigating the List of Folders             General Alpine Commands
12029 ------------------------------             -----------------------
12030 F5   Move to previous folder               F1  Show this help text
12031 F6   Move to next folder
12032 F7   Show previous screen of folders
12033 F8   Show next screen of folders
12034 F12  WhereIs (search folder names)
12036 Folder Selection Commands
12037 -------------------------
12038 F3   Exit the Folder Select menu (without selecting a folder)
12039 F4   Select the currently highlighted folder
12040 F11  AddNew folder (just like Select, but you type in a new folder name)
12041 </PRE>
12042 <!--chtml else-->
12043 <PRE>
12044 Navigating the List of Folders             General Alpine Commands
12045 ------------------------------             -----------------------
12046  P   Move to previous folder               ?  Show this help text
12047  N   Move to next folder
12048  -   Show previous screen of folders
12049 Spc  (space bar) Show next screen of folders
12050  W   WhereIs (search folder names)
12052 Folder Selection Commands
12053 -------------------------
12054  E   Exit the Folder Select menu (without selecting a folder)
12055  S   Select the currently highlighted folder
12056  A   AddNew folder (just like Select, but you type in a new folder name)
12057 </PRE>
12058 <!--chtml endif-->
12060 FOR MORE INFORMATION: See the section on
12061 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12063 &lt;End of help on this topic&gt;
12064 </BODY>
12065 </HTML>
12066 ===== h_folder_action_roles =====
12067 <HTML>
12068 <HEAD>
12069 <TITLE>Folder Select Explained</TITLE>
12070 </HEAD>
12071 <BODY>
12072 This screen is designed to allow you to quickly and easily survey your
12073 folders and select one to use as the folder into which messages
12074 matching this filter will be moved.
12077 <!--chtml if pinemode="function_key"-->
12078 <PRE>
12079 Navigating the List of Folders             General Alpine Commands
12080 ------------------------------             -----------------------
12081 F5   Move to previous folder               F1  Show this help text
12082 F6   Move to next folder
12083 F7   Show previous screen of folders
12084 F8   Show next screen of folders
12085 F12  WhereIs (search folder names)
12087 Folder Selection Commands
12088 -------------------------
12089 F3   Exit the Folder Select menu (without selecting a folder)
12090 F4   Select the currently highlighted folder
12091 F11  AddNew folder (just like Select, but you type in a new folder name)
12092 </PRE>
12093 <!--chtml else-->
12094 <PRE>
12095 Navigating the List of Folders             General Alpine Commands
12096 ------------------------------             -----------------------
12097  P   Move to previous folder               ?  Show this help text
12098  N   Move to next folder
12099  -   Show previous screen of folders
12100 Spc  (space bar) Show next screen of folders
12101  W   WhereIs (search folder names)
12103 Folder Selection Commands
12104 -------------------------
12105  E   Exit the Folder Select menu (without selecting a folder)
12106  S   Select the currently highlighted folder
12107  A   AddNew folder (just like Select, but you type in a new folder name)
12108 </PRE>
12109 <!--chtml endif-->
12111 FOR MORE INFORMATION: See the section on
12112 <A HREF="h_valid_folder_names">Valid Folder Names</A>.
12114 &lt;End of help on this topic&gt;
12115 </BODY>
12116 </HTML>
12117 ===== h_abook_config =====
12118 <HTML>
12119 <HEAD>
12120 <TITLE>SETUP ADDRESS BOOKS SCREEN</TITLE>
12121 </HEAD>
12122 <BODY>
12123 <H1>SETUP ADDRESS BOOKS SCREEN</H1>
12124 <H2>SETUP ADDRESS BOOKS COMMANDS</H2>
12125 <!--chtml if pinemode="function_key"-->
12126 <PRE>
12127 Available  Commands                        
12128 -------------------------------            
12129 F1  Show Help Text                         
12130 F3  Back to MAIN Alpine menu                 
12131 F4  Change configuration for address book  
12132 F5  Move to previous address book          
12133 F6  Move to next address book              
12134 F7  Previous page of address books         
12135 F8  Next page of address books             
12136 F9  Add new address book                   
12137 F10 Delete existing address book           
12138 F11 Shuffle the order of address books     
12139 F12 Whereis (search address book titles)   
12140 </PRE>
12141 <!--chtml else-->
12142 <PRE>
12143 Navigation                     General Alpine Commands
12144 -----------------------        -----------------------
12145  P  Prev Address Book           ?  Display this help text
12146  N  Next Address Book           E  Back to MAIN Alpine menu
12147  -  Previous page
12148 Spc (space bar) Next page
12149  W  WhereIs (search for word in address book titles)
12151 Setup Address Books Commands
12152 ------------------------------------------------
12153  A  Add new address book          $  Shuffle the order of address books
12154  D  Delete existing address book  C  Change configuration for address book
12155 </PRE>
12156 <!--chtml endif-->
12158 <H2>Description of the Setup Address Books Screen</H2>
12160 This screen lets you add, delete, modify, or change the order of your
12161 address books.  The &quot;Add Abook&quot; command brings up a blank form to 
12162 fill in.  If you are adding a remote address book on an IMAP server
12163 you should fill in the name of the IMAP server.  Otherwise, leave
12164 that field blank.  (Note that remote IMAP address books are an Alpine
12165 concept and are unlikely to interoperate with other mail clients.)
12166 For a remote address book, fill in the name of the remote folder
12167 in the Folder field.  This should be a folder that is used only for
12168 this one purpose, not a general purpose folder you expect to store
12169 messages in.
12170 <P>If you are adding a local address book, fill in the
12171 Folder Name field with a local file name (e.g., .addressbook).
12173 <B>Please note:</B> Remote address books stored on an IMAP server are 
12174 of an entirely different format (namely, a special-purpose 
12175 &quot;mail folder&quot;) than that of the local addressbook familiar 
12176 to Alpine users.  Therefore, 
12177 you cannot use &quot;add a remote address book&quot; to make an existing 
12178 Alpine .addressbook file you may have on a remote IMAP server accessible to 
12179 Alpine running on a different host.  
12182 The &quot;Del Abook&quot; command allows you to remove an address book
12183 from your configuration.  It will also ask you if you wish to remove
12184 the data for that address book, which would erase all traces of the
12185 address book if you answer Yes.
12188 The &quot;Change&quot; command is similar to the &quot;Add Abook&quot; command.
12189 The difference is that instead of adding a new address book to your
12190 configuration, you are changing the configuration of an existing entry.
12191 For example, you might want to correct a typing error or change a
12192 nickname.  The &quot;Change&quot; command is not a move command.  If you
12193 change the folder name or server name the data will not be moved for you.
12196 The &quot;Shuffle&quot; command is used for two purposes.  If you shuffle
12197 an address book toward another address book in the same group then
12198 the order of those two address books will be swapped.  If you shuffle
12199 the last Personal address book down towards the Global address book
12200 section, it will become a Global address book.  If you shuffle
12201 the first Global address book up it will become a Personal address
12202 book.  The main difference between Personal and Global address
12203 books is that Global address books are forced read-only.
12204 <P><UL>
12205 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12206 </UL>
12208 &lt;End of help on this topic&gt;
12209 </BODY>
12210 </HTML>
12211 ===== h_abook_top =====
12212 <HTML>
12213 <HEAD>
12214 <TITLE>ADDRESS BOOK LIST COMMANDS</TITLE>
12215 </HEAD>
12216 <BODY>
12217 <H1>ADDRESS BOOK LIST COMMANDS</H1>
12218 <!--chtml if pinemode="function_key"-->
12219 <PRE>
12220 Available  Commands -- Group 1         Available Commands -- Group 2
12221 -------------------------------        ------------------------------
12222 F1  Show Help Text                      F1  Show Help Text
12223 F2  See commands in next group          F2  See commands in next group
12224 F3  Exit to MAIN MENU                   F3  Quit Alpine
12225 F4  View/Edit selected address book
12226 F5  Move to previous address book       F5  FOLDER LIST screen
12227 F6  Move to next address book           F6  Specify a folder to go to
12228 F7  Previous page                       F7  MESSAGE INDEX screen
12229 F8  Next page                           F9  Print list of address books
12230 F12 Whereis (search for word)
12231 </PRE>
12232 <!--chtml else-->
12233 <PRE>
12234 Navigation                       General Alpine Commands
12235 -----------------------          -----------------------
12236  P  Previous Entry                ?  Display this help text
12237  N  Next Entry                    O  Show all other available commands
12238  -  Previous page                 &lt;  Back to MAIN Alpine menu
12239 Spc (space bar) Next page         Q  Quit Alpine
12240  W  WhereIs (search for word)     L  FOLDER LIST screen
12241                                   G  Specify a folder to go to
12242 Address Book Commands             I  MESSAGE INDEX screen
12243 ------------------------------------------------
12244  &gt;  View/Edit selected address book
12245               or
12246  &gt;  Search on selected directory server
12248  %  Print list of address books and directory servers
12249 </PRE>
12250 <!--chtml endif-->
12252 <H2>Description of the Address Book List Screen</H2>
12254 From this screen you may choose which address book you wish to view
12255 or edit. For more information on address books, view one of your
12256 address books (with
12257 <!--chtml if pinemode="function_key"-->
12259 <!--chtml else-->
12260 &quot;&gt;&quot;
12261 <!--chtml endif-->)
12262 and see the Help Text there.<P>
12264 You may also choose a directory server on which to search for entries.
12265 You do that by highlighting the directory server line and using
12266 <!--chtml if pinemode="function_key"-->
12268 <!--chtml else-->
12269 &quot;&gt;&quot;
12270 <!--chtml endif-->.<P>
12272 If you wish to define new address books or directory servers go to the Main
12273 menu and choose Setup. You may then either choose to setup AddressBooks or
12274 Directory (among other things). It's possible that the Directory option
12275 will not be there if the Alpine you are using does not contain LDAP directory
12276 lookup functionality.
12278 <P><UL>
12279 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12280 </UL><P>
12281 &lt;End of help on this topic&gt;
12282 </BODY>
12283 </HTML>
12284 ===== h_abook_opened =====
12285 <HTML>
12286 <HEAD>
12287 <TITLE>THE ALPINE ADDRESS BOOK</TITLE>
12288 </HEAD>
12289 <BODY>
12290 <H1>THE ALPINE ADDRESS BOOK</H1>
12291 <H2>ADDRESS BOOK COMMANDS</H2>
12292 <PRE>
12293 <!--chtml if pinemode="function_key"-->
12294 Available  Commands -- Group 1         Available Commands -- Group 2   
12295 -------------------------------        ------------------------------  
12296 F1  Show Help Text                      F1  Show Help Text             
12297 F2  See commands in next group          F2  See commands in next group
12298 F3  Exit this screen                    F3  Quit Alpine                  
12299 F4  View/Edit selected entry            F4  Go to MAIN MENU screen     
12300 F5  Move to previous entry              F5  FOLDER LIST screen         
12301 F6  Move to next entry                  F6  Specify a folder to go to  
12302 F7  Previous page of address book       F7  MESSAGE INDEX screen        
12303 F8  Next page of address book           F8  Compose to entry using roles
12304 F9  Add new entry to address book       F9  Print address book         
12305 F10 Delete selected entry               F10 TakeAddr to another addrbook
12306 F11 Compose to selected entry           F11 Save or Export addrbook selections
12307 F12 Whereis (search address book)       F12 Forward entry by mail       
12309 Available Commands -- Group 3                                           
12310 ------------------------------                                          
12311 F3  Select                              F6  Zoom (or unZoom)            
12312 F5  Select Current                      F7  Apply Command to Selection  
12313 <!--chtml else-->
12314 Address Book Navigation        General Alpine Commands
12315 -----------------------        -----------------------
12316  P  Prev Address                  ?  Display this help text
12317  N  Next Address                  O  Show all other available commands
12318  -  Previous page of address book M  Back to MAIN MENU
12319 Spc (space bar) Next page         Q  Quit Alpine
12320  W  WhereIs (search for word      C  Compose message to selected addr
12321      or name in address book)     #  Compose to addr using roles
12322  &lt;  To List of Address Books if   L  FOLDER LIST screen
12323      more than one, else to MAIN  G  Specify a folder to go to
12324                                   I  MESSAGE INDEX screen
12326 Address Book Commands
12327 ----------------------------------------------------
12328  &gt;  View/Update selected entry    D  Delete selected entries
12329  %  Print address book            S  Save or Export address book selections
12330  F  Forward entries by mail       @  Add new entry to address book
12332  ;  Select command                Z  Toggle Zoom Mode
12333  :  Select highlighted entry      A  Apply command to selected entries
12335 <!--chtml endif-->
12336 </PRE>
12337 Note:  The presence or absence of the final four commands above is
12338 controlled by the option 
12339 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>.
12342 <H2>Description of the Address Book Screen</H2>
12344 This screen lets you edit and manage entries in your address book.  It
12345 also acts as a short-cut for composing messages to people in the address
12346 book.  When, from this screen, you press <!--chtml if pinemode="function_key"-->F11<!--chtml else-->&quot;C&quot;<!--chtml endif--> for ComposeTo, the
12347 message starts &quot;pre-addressed&quot; to whatever address book entry is
12348 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
12349 role to use in your composition.
12351 Alpine's address book helps you keep a list of addresses you send email to so
12352 you do not have to remember addresses that are often complex.  Each entry
12353 in the address book has five fields, all of them optional.  The three
12354 elements that are usually visible on the ADDRESS BOOK display, are: <DL>
12356         <P><DT>NICKNAME: <DD>A short easy-to-remember label to identify the entry.
12357         This is what you type in as you are addressing the message in the
12358         composer.  If there is a matching entry in your address book(s),
12359         Alpine will extract the corresponding FullName and Address fields to
12360         generate the actual address for your message.
12362         <P><DT>FULLNAME: <DD>A longer field where you can put the full name 
12363 of the
12364         person or organization.  Usually the full names are put in last
12365         name first so they sort nicely in alphabetical order.  Whatever
12366         you put as the name here will appear on the message when it is
12367         finally delivered.  Examples:<PRE>
12368            Garcia Marquez, Gabriel
12369            Henscheid, Eckhard
12370            Alpine-Info mailing list
12371            Library materials renewal requests
12372            Kim An-guk
12373            &quot;George III, King of Great Britain, 1738-1820&quot;
12374 </PRE>
12375 (In the second-to-last example, no comma is used in the name so that 
12376 the family name appears first in the address book and when the entry is 
12377 used in the composer.
12378 In the last example, retaining the commas is intended; 
12379 double-quotation marks surround the name to 
12380 prevent the transposition of its parts when the entry is used in 
12381 the composer.)
12383         <P><DT>ADDRESS: <DD>This is the actual email address itself.  This must be
12384         a valid Internet address that conforms to the Internet message
12385         header standard, RFC-822.  (See also <A HREF="h_address_format">Explanation of Address formats</A>.)</DL>
12387 The two fields that aren't usually visible are:<DL>
12389   <P><DT>FCC: <DD>The name of the folder you would like a copy of any outgoing
12390         message to this address to be saved in.  If this field is set, and
12391         this address is the first one in the message's To: header, then
12392         Alpine will use this folder name for the FCC in lieu of the normal
12393         FCC folder name.
12395   <P><DT>COMMENTS: <DD>This field contains arbitrary text for your convenience.
12396         </DL>
12398 Due to screen width limitations, these last two fields do not show up in
12399 the normal ADDRESS BOOK display.  You may select the 
12400 &quot;View/Update&quot; command to
12401 view or modify them.  You may use the configuration variable
12402 <A HREF="h_config_abook_formats">&quot;<!--#echo var="VAR_addressbook-formats"-->&quot;</A>
12403 to add these fields to your ADDRESS BOOK 
12404 display, or to modify the format of the display.
12406 <H2>Sorting the Address book</H2>
12408 By default, address book entries are sorted alphabetically on the full
12409 name with distribution lists sorted to the end.  Sorting can be changed by
12410 resetting the address book sort rule in the Alpine SETUP CONFIGURATION screen
12411 --assuming you have &quot;write&quot; permission for the address book file.
12413 Unlike the sorting of folders (which only changes presentation), sorting an
12414 address book actually changes the file as it is kept on the computer.  For
12415 this reason you won't be able to sort a shared or system-wide address
12416 book.
12418 <H2>Adding New Entries</H2>
12420 The easiest way to add new entries to your address book is to use the
12421 &quot;TakeAddr&quot; command when viewing a message.
12422 This command allows you to take addresses from the header and body of the
12423 message and put them into your address book, without having to type
12424 them in.
12427 To manually add a new entry from within the address book screen, use the AddNew
12428 (<!--chtml if pinemode="function_key"-->F9<!--chtml else-->&quot;@&quot;<!--chtml endif-->) command.
12429 Use this command both for adding a simple alias and for adding a
12430 distribution list.
12432 <H2>Distribution Lists</H2>
12434 Address book entries can be simple cases of aliases (a single nickname is linked
12435 to a single email address) or distribution lists (a single nickname
12436 pointing at more than one email address).  Each distribution list has a
12437 nickname, a full name and a list of addresses.  The addresses may be
12438 actual addresses or they may be other nicknames in your address book.
12439 They may even refer to other distribution lists.
12440 There's really no difference between a simple alias and a distribution list,
12441 other than the number of addresses.
12442 Therefore, you can turn a simple alias with one address into a distribution
12443 list simply by adding more addresses.
12444 To add entries to an existing list or alias
12445 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
12446 a single address from the list if the cursor is placed on the address;
12447 it will delete the entire distribution list if the cursor is on the
12448 nickname/fullname line.  View/Update may also be used to delete addresses
12449 from a list.
12451 Address field entries in distribution lists may take any one of three
12452 forms: a nickname existing in any of the defined address books, a normal
12453 address of the form &quot;jsmith@art.example.com&quot;, or a complete
12454 fullname/address combination, e.g. &quot;John Smith
12455 &lt;jsmith@art.example.com&gt;&quot;.
12457 Distribution lists in Alpine address books can only be used by the person or
12458 people who have access to that address book.  They are not usually used to
12459 implement discussion groups, but can be used to facilitate small
12460 discussion groups if all the participants have access to the same shared
12461 address book.
12463 <H2>FCC and Comments</H2>
12465 As mentioned above, each entry in the address book also has two other optional
12466 fields, Fcc and Comments.  The command to look at or change either of these
12467 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
12468 Comments field is just for your own use.  The Fcc field overrides the
12469 default Fcc if this address is the first one on the To line.  The WhereIs
12470 command may be used to search for particular strings in the address book,
12471 including fields that are not visible (like Comment and Fcc by default).
12473 <H2>Aggregate Operations</H2>
12475 If the feature
12476 <A HREF="h_config_enable_agg_ops">&quot;<!--#echo var="FEAT_enable-aggregate-command-set"-->&quot;</A>
12477 is turned on (the default), then the four commands &quot;Select&quot;,
12478 &quot;Select Current&quot;, &quot;Zoom&quot;, and &quot;Apply&quot;
12479 are available.  The two selection commands allow you to mark a set of
12480 address book entries as being selected.  If you have more than one address
12481 book, the selections may be in more than one of those address books.
12482 The &quot;Zoom&quot; command will toggle between displaying only the selected
12483 entries and all of the entries.  The &quot;Apply&quot; command allows you to
12484 apply one of the regular address book commands to all of the selected
12485 entries.  Usually the address book commands apply to only the entry
12486 highlighted by the cursor.  The &quot;Apply&quot; command works with the
12487 commands &quot;ComposeTo&quot;, &quot;Delete&quot;, &quot;Print&quot;, 
12488 &quot;Save&quot;, &quot;Forward&quot;, and &quot;Role&quot;.
12490 <H2>Exporting and Forwarding Address book entries</H2>
12492 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
12493 address book entry is placed in a plain text file in your home directory
12494 <!--chtml if pinemode="running"-->
12495 (which, in the present configuration of your system, is
12496  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
12497 <!--chtml endif-->
12498 or current working directory
12499 <!--chtml if pinemode="running"-->
12500 (which, at least for your current Alpine &quot;session,&quot; 
12501 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
12502 <!--chtml endif-->, depending on the 
12503 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
12504 configuration setting.  If you have some entries selected and use the
12505 Apply (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->&quot;A&quot;<!--chtml endif-->) Export command, all of the selected addresses will be
12506 placed in the text file.
12508 When you use the Forward (<!--chtml if pinemode="function_key"-->F12<!--chtml else-->&quot;F&quot;<!--chtml endif-->) command, the currently highlighted
12509 address book entry is placed in a special attachment and you are put into
12510 the composer.  You can fill in some comments in the body of the message,
12511 if you'd like, and send it to somebody else who uses Alpine.  The recipient
12512 may use the TakeAddr command on that message to insert the address book
12513 entry you sent in their own address book.  If you have some entries
12514 selected and use the Apply Forward command all of the selected entries
12515 will be forwarded in a single message.  You may
12516 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.
12517 The recipient must be using Alpine in order to receive this correctly.
12518 One way for the recipient to handle this might be to create an empty
12519 address book and then &quot;Take&quot; your forwarded address book entries into
12520 that empty address book.
12522 <H2>Multiple and/or Site-Wide Address books</H2>
12524 You may have more than one personal address book.  In addition, there may
12525 be one or more global address books.  This capability allows you to have
12526 multiple personal address books (some of which may be shared) and it also
12527 allows system administrators to implement site-wide address books that
12528 contain entries for users on multiple machines within the organization.
12529 <P><DL>
12530 <DT>Searching
12531   <DD> If you enter a nickname when composing a message, your
12532   personal address books will be searched through in order, and then the
12533   global address book(s) searched. If more than one address book has an entry
12534   for the nickname, Alpine uses the first one that it finds, so an entry in
12535   your personal address book would override a global address book entry. If
12536   after searching all the address books there is still no match, (Unix) Alpine
12537   then searches the local host password file on the assumption that you have
12538   entered a local user name rather than an address book nickname.
12539   You may change the search order of your address books with the <!--chtml if pinemode="function_key"-->F3<!--chtml else-->$<!--chtml endif--> Shuffle
12540   command, but global address books are always searched after personal
12541   address books.
12543   <P><DT>Tab completion
12544   <DD> If the
12545   <A HREF="h_config_enable_tab_complete"><!--#echo var="FEAT_enable-tab-completion"--></A>
12546   feature is turned on (the default) then the Tab key may be used
12547   in the composer to complete partially typed nicknames in the To
12548   or Cc lines. You type the first few letters of a nickname and then
12549   press the Tab key. It there is only one nickname that matches it will
12550   be filled in by Alpine. If there is more than one the unambiguous part
12551   of the nicknames will be filled in. For example, if your address book or
12552   books contains only the two entries &quot;barley&quot; and &quot;barbecue&quot;
12553   beginning with the letters &quot;ba&quot;, then if you type &quot;ba&quot;
12554   followed by a Tab character Alpine will fill in &quot;bar&quot; and stop.
12555   If you then type a second Tab character you will be presented with a list
12556   of matching nicknames to select from. Alternatively, you could type another
12557   &quot;b&quot; resulting in &quot;barb&quot; and then a Tab would fill
12558   in the entire &quot;barbecue&quot; entry.
12560   <P><DT>Defining
12561   <DD> You define multiple personal address books in the 
12562   <A HREF="h_abook_config">SETUP AddressBooks</A> screen, which you may reach
12563   from the MAIN MENU.  
12564   You may add as many as you like.  Global address books are usually
12565   site-wide address books defined by the System administrator, but
12566   you may define global address books of your own just like you define
12567   personal address books.
12569   <P><DT>Creating and updating
12570   <DD> Personal address books are normally created empty
12571   and populated by explicit additions from within Alpine, e.g. via the
12572   TakeAddr command.  Unlike personal address books, global address books may
12573   not be modified/updated from within Alpine; that is, they are Read-Only.
12574   Thus, global address books are created, populated and updated outside of
12575   Alpine. They might be hand-edited, generated by a program from another
12576   database, or by copying an existing address book.  They might also be
12577   some other user's personal address book, and so be modified normally by
12578   that user but accessed Read-Only by you.  See the Alpine Technical
12579   Notes document (included in the Alpine distribution) for more information on
12580   this.
12582   <P><DT>Accessing
12583   <DD>There are two different types of address books in Alpine.
12584   A local address book is stored in a regular file and the normal file
12585   access permissions apply.  A remote address book is stored on an IMAP
12586   server in a special folder that contains only messages pertaining to
12587   that address book.  The last message in the remote folder contains a
12588   copy of the address book data, and that data is copied to a local cache
12589   file in your home directory.  From there it is accessed just like a local
12590   address book.  The name of the cache file is kept track of in a special
12591   file called the
12592   <A HREF="h_config_abook_metafile"><!--#echo var="VAR_remote-abook-metafile"--></A>,
12593   the name of which is stored in
12594   your Alpine configuration file the first time you use a remote address book.
12595   Just as local Alpine address books use a format that only Alpine understands,
12596   remote Alpine address books do the same and other mail reading programs
12597   are unlikely to be able to understand them.<P>
12598   While global address books are explicitly intended to be shared, there is
12599   nothing to prevent you from sharing a personal address book with other
12600   Alpine users. This might be useful in the case of a small workgroup.
12601   However, it is recommended that updates to shared personal address books
12602   be done when other Alpine users are not accessing the address book. Alpine
12603   does not do any file-locking to manage concurrent updates to the
12604   addressbook, but it does check to see if the file has been modified before
12605   making any changes.  Consequently, inadvertent concurrent updates will
12606   only cause other Alpine users to have to restart their address book
12607   operation, which will cause Alpine to reopen the updated file.
12609   <P><DT>Converting to Remote
12610   <DD>The easiest way to convert an existing local
12611   address book into a remote address book is to create an empty new remote
12612   personal address book by typing &quot;A&quot; to execute the
12613   &quot;Add Pers Abook&quot; command in the SETUP Addressbook screen.
12614   Make sure you add a <EM>personal</EM> address book, not a <EM>global</EM>
12615   address book.
12616   After you have added the empty
12617   remote address book, go into the screen for the address book you wish
12618   to copy and &quot;Select&quot; &quot;All&quot;.
12619   This selects every entry in that
12620   address book.  Then type the command &quot;Apply Save&quot;.
12621   You will be asked for the address book to save to.  You may use ^P and ^N
12622   to get to the new empty address book, then hit RETURN and the addresses
12623   will be copied.
12624   At this point you'll probably want to unselect all the entries in the local
12625   address book before proceeding. You do that with
12626   &quot;Select&quot; &quot;unselect All&quot;.
12628 </DL>
12629 <UL>
12630 <LI><A HREF="h_address_format">Explanation of Address formats</A>
12631 </UL>
12632 <P><UL>
12633 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
12634 </UL>
12636 &lt;End of help on this topic&gt;
12637 </BODY>
12638 </HTML>
12639 ===== h_abook_select_addr =====
12640 <HTML>
12641 <HEAD>
12642 <TITLE>Addressbook Selection Explained</TITLE>
12643 </HEAD>
12644 <BODY>
12645 <H1>SELECT ADDRESS</H1>
12646 <!--chtml if pinemode="function_key"-->
12647 <PRE>
12648 Navigating the List of Messages               General Alpine Commands
12649 -------------------------------               -----------------------
12650 F5   Move to previous entry                   F1  Show this help text
12651 F6   Move to next entry
12652 F7   Show previous screen of address book
12653 F8   Show next screen of address book
12654 F12  WhereIs (search through address book)
12656 Address Selection Commands
12657 --------------------------
12658 F3   Exit the Address Select screen (without selecting an address)
12659 F4   Select the currently highlighted entry
12660 </PRE>
12661 <!--chtml else-->
12662 <PRE>
12663 Navigating the List of Messages               General Alpine Commands
12664 -------------------------------               -----------------------
12665  P   Move to previous entry                    ?  Show this help text
12666  N   Move to next entry
12667  -   Show previous screen of address book
12668 Spc  (space bar) Show next screen of address book
12669  W   WhereIs (search through address book)
12671 Address Selection Commands
12672 --------------------------
12673  E   Exit the Address Select screen (without selecting an address)
12674  S   Select the currently highlighted entry
12675 </PRE>
12676 <!--chtml endif-->
12679 This screen is designed to let you easily scan your address book(s) in
12680 order to select an entry for the message you are composing.  You cannot
12681 edit your address book in any way at this time, for address book
12682 maintenance, select the address book command when not composing a message.
12685 If you are composing a message and know the nickname of the person/list you
12686 want, you can bypass this screen by simply typing in the nickname on the
12687 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12688 selecting an entry does not cancel your message.
12691 FOR MORE INFORMATION on addressing see
12692 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12693 <A HREF="h_abook_opened">Address Book Screen's</A>
12694 help text.
12696 &lt;End of help on this topic&gt;
12697 </BODY>
12698 </HTML>
12699 ===== h_abook_select_top =====
12700 <HTML>
12701 <HEAD>
12702 <TITLE>Addressbook Selection Navigation Explained</TITLE>
12703 </HEAD>
12704 <BODY>
12705 <H1>NAVIGATING WHILE SELECTING ADDRESSES</H1>
12706 <!--chtml if pinemode="function_key"-->
12707 <PRE>
12708 Navigating the List of Address Books       General Alpine Commands
12709 ------------------------------------       -----------------------
12710 F4   View the highlighted address book
12711 F5   Move to previous address book         F1  Show this help text
12712 F6   Move to next address book
12713 F7   Show previous screen of address books
12714 F8   Show next screen of address books
12715 F12  WhereIs (search through address books)
12717 Address Selection Commands
12718 --------------------------
12719 F3   Exit the Address Select screen (without selecting an address)
12720 F4   Select the currently selected entries (if using ListMode)
12721 F9   Change to ListMode
12722 </PRE>
12723 <!--chtml else-->
12724 <PRE>
12725 Navigating the List of Address Books       General Alpine Commands
12726 ------------------------------------       -----------------------
12727  &gt;   View the highlighted address book
12728  P   Move to previous address book         ?  Show this help text
12729  N   Move to next address book
12730  -   Show previous screen of address books
12731 Spc  (space bar) Show next screen of address books
12732  W   WhereIs (search through address books)
12734 Address Selection Commands
12735 --------------------------
12736  E   Exit the Address Select screen (without selecting an address)
12737  S   Select the currently selected entries (if using ListMode)
12738  L   Change to ListMode
12739 </PRE>
12740 <!--chtml endif-->
12743 This screen is designed to let you easily scan your address book(s) in
12744 order to select entries for the message you are composing.  You cannot
12745 edit your address book in any way at this time.  For address book
12746 maintenance, select the address book command when not composing a message.
12749 If you are composing a message and know the nickname of the person/list you
12750 want, you can bypass this screen by simply typing in the nickname on the
12751 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12752 selecting an entry does not cancel your message.
12755 The ListMode command will add a column at the left edge of the screen.
12756 You mark the entries that you wish to select with the &quot;X&quot; command.
12757 This allows you to choose more than one entry at a time.
12760 An alternative method of composing a message to entries in your
12761 address book(s) is to first use the &quot;Select&quot; command from
12762 the address book maintenance screen and then the &quot;Apply&quot;
12763 &quot;ComposeTo&quot; command to start the composer composing to the
12764 selected entries.
12767 FOR MORE INFORMATION on addressing see
12768 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12769 <A HREF="h_abook_opened">Address Book Screen's</A>
12770 help text.
12772 &lt;End of help on this topic&gt;
12773 </BODY>
12774 </HTML>
12775 ===== h_abook_select_listmode =====
12776 <HTML>
12777 <HEAD>
12778 <TITLE>Address Listmode Selection from Composer Explained</TITLE>
12779 </HEAD>
12780 <BODY>
12781 <H1>COMPOSER: SELECT ADDRESSES</H1>
12782 <!--chtml if pinemode="function_key"-->
12783 <PRE>
12784 Navigating the List of Messages                 General Alpine Commands
12785 -------------------------------                 -----------------------
12786 F5   Move to previous entry                     F1  Show this help text
12787 F6   Move to next entry
12788 F7   Show previous screen of address book
12789 F8   Show next screen of address book
12790 F12  WhereIs (search through address book)
12792 Address Selection Commands
12793 --------------------------
12794 F3   Exit the Address Select screen (without selecting an address)
12795 F4   Select the currently highlighted entry
12796 F9   Change to ListMode
12797 </PRE>
12798 <!--chtml else-->
12799 <PRE>
12800 Navigating the List of Messages                 General Alpine Commands
12801 -------------------------------                 -----------------------
12802  P   Move to previous entry                     ?  Show this help text
12803  N   Move to next entry
12804  -   Show previous screen of address book
12805 Spc  (space bar) Show next screen of address book
12806  W   WhereIs (search through address book)
12808 Address Selection Commands
12809 --------------------------
12810  E   Exit the Address Select screen (without selecting an address)
12811  S   Select the currently highlighted entry
12812  L   Change to ListMode
12813 </PRE>
12814 <!--chtml endif-->
12817 This screen is designed to let you easily scan your address book(s) in
12818 order to select entries for the message you are composing.  You cannot
12819 edit your address book in any way at this time, for address book
12820 maintenance, select the address book command when not composing a message.
12823 If you are composing a message and know the nickname of the person/list you
12824 want, you can bypass this screen by simply typing in the nickname on the
12825 appropriate header line (To:, Cc:, etc.)  Exiting this screen without
12826 selecting an entry does not cancel your message.
12829 The ListMode command will add a column at the left edge of the screen.
12830 You mark the entries that you wish to select with the &quot;X&quot; command.
12831 This allows you to choose more than one entry at a time.
12834 An alternative method of composing a message to entries in your
12835 address book(s) is to first use the &quot;Select&quot; command from
12836 the address book maintenance screen and then the &quot;Apply&quot;
12837 &quot;ComposeTo&quot; command to start the composer composing to the
12838 selected entries.
12841 FOR MORE INFORMATION on addressing see
12842 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12843 <A HREF="h_abook_opened">Address Book Screen's</A>
12844 help text.
12846 &lt;End of help on this topic&gt;
12847 </BODY>
12848 </HTML>
12849 ===== h_abook_select_checks =====
12850 <HTML>
12851 <HEAD>
12852 <TITLE>Address Selection from Composer Explained</TITLE>
12853 </HEAD>
12854 <BODY>
12855 <H1>COMPOSER: SELECT ADDRESSES</H1>
12856 <!--chtml if pinemode="function_key"-->
12857 <PRE>
12858 Navigating the List of Messages                 General Alpine Commands
12859 -------------------------------                 -----------------------
12860 F5   Move to previous entry                     F1  Show this help text
12861 F6   Move to next entry
12862 F7   Show previous screen of address book
12863 F8   Show next screen of address book
12864 F12  WhereIs (search through address book)
12866 Address Selection Commands
12867 --------------------------
12868 F3   Exit the Address Select screen (without selecting an address)
12869 F4   Select the currently highlighted entry
12870 F8   Either Sets or Unsets all entries in this address book
12871 F9   Set or Unset the highlighted entry
12872 </PRE>
12873 <!--chtml else-->
12874 <PRE>
12875 Navigating the List of Messages                 General Alpine Commands
12876 -------------------------------                 -----------------------
12877  P   Move to previous entry                     ?  Show this help text
12878  N   Move to next entry
12879  -   Show previous screen of address book
12880 Spc  (space bar) Show next screen of address book
12881  W   WhereIs (search through address book)
12883 Address Selection Commands
12884 --------------------------
12885  E   Exit the Address Select screen (without selecting an address)
12886  S   Select the currently highlighted entry
12887  X   Set or Unset the highlighted entry
12888  A   Either Sets or Unsets all entries in this address book
12889 </PRE>
12890 <!--chtml endif-->
12893 Mark the entries you wish to select with the &quot;X Set/Unset&quot;
12894 command.  Type &quot;S Select&quot; to select all of the entries you
12895 have marked, just as if you had typed them in by hand.
12898 An alternative method of composing a message to entries in your
12899 address book(s) is to first use the &quot;Select&quot; command from
12900 the address book maintenance screen and then the &quot;Apply&quot;
12901 &quot;ComposeTo&quot; command to start the composer composing to the
12902 selected entries.
12905 FOR MORE INFORMATION on addressing see
12906 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12907 <A HREF="h_abook_opened">Address Book Screen's</A>
12908 help text.
12910 &lt;End of help on this topic&gt;
12911 </BODY>
12912 </HTML>
12913 ===== h_abook_select_nicks_take =====
12914 <HTML>
12915 <HEAD>
12916 <TITLE>Take Address Nickname Selection Explained</TITLE>
12917 </HEAD>
12918 <BODY>
12919 <H1>TAKEADDR: SELECT NICKNAME</H1>
12920 <!--chtml if pinemode="function_key"-->
12921 <PRE>
12922 Navigating the List of Messages                 General Alpine Commands
12923 -------------------------------                 -----------------------
12924 F5   Move to previous entry                     F1  Show this help text
12925 F6   Move to next entry
12926 F7   Show previous screen of address book
12927 F8   Show next screen of address book
12928 F12  WhereIs (search through address book)
12930 Message Selection Commands
12931 --------------------------
12932 F3   Exit the Nickname Select screen (without selecting an address)
12933 F4   Select the currently highlighted entry
12934 </PRE>
12935 <!--chtml else-->
12936 <PRE>
12937 Navigating the List of Messages                 General Alpine Commands
12938 -------------------------------                 -----------------------
12939  P   Move to previous entry                     ?  Show this help text
12940  N   Move to next entry
12941  -   Show previous screen of address book
12942 Spc  (space bar) Show next screen of address book
12943  W   WhereIs (search through address book)
12945 Message Selection Commands
12946 --------------------------
12947  E   Exit the Nickname Select screen (without selecting an address)
12948  S   Select the currently highlighted entry
12949 </PRE>
12950 <!--chtml endif-->
12953 This screen is designed to let you modify or add to an existing
12954 address book entry.  You have already selected the name(s) and
12955 address(es) through &quot;Take Address&quot;.  This screen simply lets
12956 you scan your address books and select the nickname to be
12957 changed/augmented.  If you want to add a new entry, then you are in
12958 the wrong place-- Select &quot;Exit&quot; command.
12961 FOR MORE INFORMATION on addressing see
12962 <A HREF="h_address_format">Explanation of Address formats</A>, and the
12963 <A HREF="h_abook_opened">Address Book Screen's</A>
12964 help text.
12966 &lt;End of help on this topic&gt;
12967 </BODY>
12968 </HTML>
12969 ===== h_abook_select_nick =====
12970 <HTML>
12971 <HEAD>
12972 <TITLE>Nickname Selection Explained</TITLE>
12973 </HEAD>
12974 <BODY>
12975 <H1>SELECT NICKNAME</H1>
12976 <!--chtml if pinemode="function_key"-->
12977 <PRE>
12978 Navigating the List of Messages                 General Alpine Commands
12979 -------------------------------                 -----------------------
12980 F5   Move to previous entry                     F1  Show this help text
12981 F6   Move to next entry
12982 F7   Show previous screen of address book
12983 F8   Show next screen of address book
12984 F12  WhereIs (search through address book)
12986 Message Selection Commands
12987 --------------------------
12988 F3   Exit the Nickname Select screen (without selecting an address)
12989 F4   Select the currently highlighted entry
12990 </PRE>
12991 <!--chtml else-->
12992 <PRE>
12993 Navigating the List of Messages                 General Alpine Commands
12994 -------------------------------                 -----------------------
12995  P   Move to previous entry                     ?  Show this help text
12996  N   Move to next entry
12997  -   Show previous screen of address book
12998 Spc  (space bar) Show next screen of address book
12999  W   WhereIs (search through address book)
13001 Message Selection Commands
13002 --------------------------
13003  E   Exit the Nickname Select screen (without selecting an address)
13004  S   Select the currently highlighted entry
13005 </PRE>
13006 <!--chtml endif-->
13009 This screen is designed to let you look at the nicknames in your address
13010 books before choosing a new one.
13013 FOR MORE INFORMATION on addressing see
13014 <A HREF="h_address_format">Explanation of Address formats</A>, and the
13015 <A HREF="h_abook_opened">Address Book Screen's</A>
13016 help text.
13018 &lt;End of help on this topic&gt;
13019 </BODY>
13020 </HTML>
13021 ===== h_takeaddr_screen =====
13022 <HTML>
13023 <HEAD>
13024 <TITLE>Take Address Screen Explained</TITLE>
13025 </HEAD>
13026 <BODY>
13027 <H1>TAKE ADDRESS COMMANDS</H1>
13028 <!--chtml if pinemode="function_key"-->
13029 <PRE>
13030 Navigating the List of Addresses       Address Selection Commands        
13031 --------------------------------       --------------------------        
13032  F5  Move to previous entry            F3  Exit without taking address
13033  F6  Move to next entry                F4  Take current address(es)
13034  F7  Show previous page of address list
13035  F8  Show next page of address list
13036  F2  WhereIs (search list)
13037                                --------------
13038 Mode Toggle            F9  Set/Unset current address
13039 -----------            F10 Set all
13040  F12 Toggle between List and single mode       F11 Unset all
13041 </PRE>
13042 <!--chtml else-->
13043 <PRE>
13044 Navigating the List of Addresses       Address Selection Commands
13045 --------------------------------       --------------------------
13046  P  Move to previous entry              &lt;  Exit without taking address
13047  N  Move to next entry                  T  Take address
13048  -  Show previous page of address list
13049 Spc (space bar) Show next page of address list
13050  W  WhereIs (search list)              List Mode
13051                                        ---------
13052 Single Mode                             X  Set/Unset current address
13053 -----------                             A  Set all addresses
13054  L  Switch to list mode                 U  Unset all addresses
13055                                         S  Switch to single mode
13056 </PRE>
13057 <!--chtml endif-->
13059 <H2>Description of the Take Address Screen</H2>
13061 This screen is designed to let you select one or more address/name
13062 combinations from the current message and put them into your address book.
13063 The cursor is initially placed on the line with the message author.
13064 Other lines include the names of people and/or mailing lists who also
13065 received the message.  Other people &quot;involved&quot; in the
13066 message (e.g. the person named as Reply-To:) are also listed here.
13069 The simple case is adding a new, single entry into your address book. To
13070 do this, simply highlight the correct line and press 
13071 <!--chtml if pinemode="function_key"-->
13073 <!--chtml else-->
13074 &quot;T&quot;.
13075 <!--chtml endif-->
13076 To create a new list or add to an existing list, switch the screen display
13077 into List Mode by pressing
13078 <!--chtml if pinemode="function_key"-->
13079 F12.
13080 <!--chtml else-->
13081 &quot;L&quot;.
13082 <!--chtml endif-->
13083 In List Mode, you select the
13084 group of addresses you wish to manipulate by marking them with an
13085 &quot;X&quot;.
13086 The Set/Unset
13087 <!--chtml if pinemode="function_key"-->
13088 (F9)
13089 <!--chtml else-->
13090 (&quot;X&quot;)
13091 <!--chtml endif-->
13092 command will turn the &quot;X&quot; on for the
13093 highlighted address if it was off or turn it off if it was previously on.
13094 The SetAll command will select all of the addresses, and the UnSetAll
13095 command will turn off all the selections.  Once you've gotten the
13096 selection the way you want it, you may create a new list by pressing
13097 <!--chtml if pinemode="function_key"-->
13099 <!--chtml else-->
13100 &quot;T&quot;.
13101 <!--chtml endif-->
13104 In both the simple and list cases, after choosing to take the address,
13105 you will be asked for the nickname of the entry.  Typing in a new name
13106 creates the new entry/list.  Entering an existing nickname will replace
13107 the entry (simple case) or add to the list (list case).  Alternatively,
13108 you can press Ctrl-T at the nickname prompt and select an existing
13109 nickname from your address book.
13112 You will normally start in Single Mode, unless you used the Apply command
13113 to startup the TakeAddr screen, in which case you will start in List Mode.
13114 You may switch between the two modes at any time.  If you've already
13115 selected several addresses in List Mode, those will be remembered when you
13116 switch to Single Mode and then back to List Mode.  The set of addresses
13117 that are pre-selected when you start in List Mode are the From addresses
13118 of all of the messages you are operating on.  You may, of course, easily
13119 erase those selections with the UnSetAll command.
13122 If you have more than one writable address book, you will be prompted for
13123 the name of the address book you wish to add the new entry to before
13124 anything else. You can use ^N and ^P to choose among the defined address
13125 books, or type in the address book name.
13128 FOR MORE INFORMATION on addressing see
13129 <A HREF="h_address_format">Explanation of Address formats</A>, and the
13130 <A HREF="h_abook_opened">Address Book Screen's</A>
13131 help text.
13133 &lt;End of help on this topic&gt;
13134 </BODY>
13135 </HTML>
13136 ===== h_takeexport_screen =====
13137 <HTML>
13138 <HEAD>
13139 <TITLE>Take Export Screen Explained</TITLE>
13140 </HEAD>
13141 <BODY>
13142 <H1>TAKE EXPORT COMMANDS</H1>
13143 <!--chtml if pinemode="function_key"-->
13144 <PRE>
13145 Navigating the List of Addresses       Address Selection Commands        
13146 --------------------------------       --------------------------        
13147  F5  Move to previous entry            F3  Exit without taking address
13148  F6  Move to next entry                F4  Take current address(es)
13149  F7  Show previous page of address list
13150  F8  Show next page of address list
13151  F2  WhereIs (search list)
13152                                --------------
13153 Mode Toggle            F9  Set/Unset current address
13154 -----------            F10 Set all
13155  F12 Toggle between List and single mode       F11 Unset all
13156 </PRE>
13157 <!--chtml else-->
13158 <PRE>
13159 Navigating the List of Addresses       Address Selection Commands
13160 --------------------------------       --------------------------
13161  P  Move to previous entry              &lt;  Exit without taking address
13162  N  Move to next entry                  T  Take address
13163  -  Show previous page of address list
13164 Spc (space bar) Show next page of address list
13165  W  WhereIs (search list)              List Mode
13166                                        ---------
13167 Single Mode                             X  Set/Unset current address
13168 -----------                             A  Set all addresses
13169  L  Switch to list mode                 U  Unset all addresses
13170                                         S  Switch to single mode
13171 </PRE>
13172 <!--chtml endif-->
13174 <H2>Description of the Take Export Screen</H2>
13176 This screen is designed to let you select one or more addresses
13177 from the current message and put them into a file.
13178 Only the user@domain_name part of each address is put into the file.
13181 To put a single entry into a file simply highlight the correct line and press 
13182 <!--chtml if pinemode="function_key"-->
13184 <!--chtml else-->
13185 &quot;T&quot;.
13186 <!--chtml endif-->
13187 To put more than one entry into a file
13188 switch the screen display
13189 into List Mode by pressing
13190 <!--chtml if pinemode="function_key"-->
13191 F12.
13192 <!--chtml else-->
13193 &quot;L&quot;.
13194 <!--chtml endif-->
13195 In List Mode, you select the
13196 group of addresses you wish to manipulate by marking them with an
13197 &quot;X&quot;.
13198 The Set/Unset
13199 <!--chtml if pinemode="function_key"-->
13200 (F9)
13201 <!--chtml else-->
13202 (&quot;X&quot;)
13203 <!--chtml endif-->
13204 command will turn the &quot;X&quot; on for the
13205 highlighted address if it was off or turn it off if it was previously on.
13206 The SetAll command will select all of the addresses, and the UnSetAll
13207 command will turn off all the selections.  Once you've gotten the
13208 selection the way you want it, you may put the addresses in a file by typing
13209 <!--chtml if pinemode="function_key"-->
13211 <!--chtml else-->
13212 &quot;T&quot;.
13213 <!--chtml endif-->
13216 You will be asked for the name of a file to put the addresses in.
13217 If the file already exists, you will be asked whether you want to Overwrite
13218 (replace) the contents of the file or Append to the contents of the file.
13221 &lt;End of help on this topic&gt;
13222 </BODY>
13223 </HTML>
13224 ============= h_abook_view ========================
13225 <HTML>
13226 <HEAD>
13227 <TITLE>Address Book View Explained</TITLE>
13228 </HEAD>
13229 <BODY>
13230 This function allows you to view the contents of an address book entry. You
13231 can only view one entry at a time.
13233 <DL>
13234 <DT>Help
13235 <!--chtml if pinemode="function_key"-->
13236 (F1)
13237 <!--chtml else-->
13239 <!--chtml endif-->
13240 </DT>
13241 <DD>
13242 Display this help text.
13244 <DT>Abook
13245 <!--chtml if pinemode="function_key"-->
13246 (F3)
13247 <!--chtml else-->
13248 (&lt;)
13249 <!--chtml endif-->
13250 </DT>
13251 <DD>
13252 Go back to index of address book entries.
13254 <DT>Update
13255 <!--chtml if pinemode="function_key"-->
13256 (F4)
13257 <!--chtml else-->
13259 <!--chtml endif-->
13260 </DT>
13261 <DD>
13262 Update (modify) this entry.
13264 <DT>ComposeTo
13265 <!--chtml if pinemode="function_key"-->
13266 (F5)
13267 <!--chtml else-->
13269 <!--chtml endif-->
13270 </DT>
13271 <DD>Compose a message to the address(es) in this entry.
13273 <DT>Role
13274 <!--chtml if pinemode="function_key"-->
13275 (F6)
13276 <!--chtml else-->
13278 <!--chtml endif-->
13279 </DT>
13280 <DD>Compose a message to the address(es) in this entry using roles.
13282 <DT>Prev Page
13283 <!--chtml if pinemode="function_key"-->
13284 (F7)
13285 <!--chtml else-->
13287 <!--chtml endif-->
13288 </DT>
13289 <DD>
13290 Show the previous page of the current entry.
13292 <DT>Next Page
13293 <!--chtml if pinemode="function_key"-->
13294 (F8)
13295 <!--chtml else-->
13296 (Space)
13297 <!--chtml endif-->
13298 </DT>
13299 <DD>
13300 Show the next page of the current entry.
13302 <DT>Print
13303 <!--chtml if pinemode="function_key"-->
13304 (F9)
13305 <!--chtml else-->
13307 <!--chtml endif-->
13308 </DT>
13309 <DD>Print the current entry.  You can select the
13310 printer or the print command via the &quot;Setup&quot; command
13311 on the MAIN MENU.
13313 <DT>WhereIs
13314 <!--chtml if pinemode="function_key"-->
13315 (F10)
13316 <!--chtml else-->
13318 <!--chtml endif-->
13319 </DT>
13320 <DD>Search the entry for a string of letters.  If it is
13321 found, move to it.  The string can be one word or a phrase.
13322 If there are multiple occurrences, the cursor moves to the
13323 first occurrence beyond the current cursor position.
13325 <DT>Fwd Email
13326 <!--chtml if pinemode="function_key"-->
13327 (F11)
13328 <!--chtml else-->
13330 <!--chtml endif-->
13331 </DT>
13332 <DD>Begin composition of a new mail message with the displayed
13333 text already inserted in the message body.
13335 </DL>
13337 &lt;End of help on this topic&gt;
13338 </BODY>
13339 </HTML>
13340 ============= h_ldap_view ========================
13341 <HTML>
13342 <HEAD>
13343 <TITLE>LDAP Response View Explained</TITLE>
13344 </HEAD>
13345 <BODY>
13346 This function allows you to view the contents of a directory entry. You
13347 can only view one entry at a time.
13349 <DL>
13350 <DT>Help
13351 <!--chtml if pinemode="function_key"-->
13352 (F1)
13353 <!--chtml else-->
13355 <!--chtml endif-->
13356 </DT>
13357 <DD>
13358 Display this help text.
13360 <DT>Results Index
13361 <!--chtml if pinemode="function_key"-->
13362 (F3)
13363 <!--chtml else-->
13364 (&lt;)
13365 <!--chtml endif-->
13366 </DT>
13367 <DD>Go back to index of search results.
13369 <DT>ComposeTo
13370 <!--chtml if pinemode="function_key"-->
13371 (F5)
13372 <!--chtml else-->
13374 <!--chtml endif-->
13375 </DT>
13376 <DD>Compose a message to the address(es) in this entry.
13378 <DT>Role
13379 <!--chtml if pinemode="function_key"-->
13380 (F6)
13381 <!--chtml else-->
13383 <!--chtml endif-->
13384 </DT>
13385 <DD>Compose a message to the address(es) in this entry using roles.
13387 <DT>Prev Page
13388 <!--chtml if pinemode="function_key"-->
13389 (F7)
13390 <!--chtml else-->
13392 <!--chtml endif-->
13393 </DT>
13394 <DD>
13395 Show the previous page of the current entry.
13397 <DT>Next Page
13398 <!--chtml if pinemode="function_key"-->
13399 (F8)
13400 <!--chtml else-->
13401 (Space)
13402 <!--chtml endif-->
13403 </DT>
13404 <DD>
13405 Show the next page of the current entry.
13407 <DT>Print
13408 <!--chtml if pinemode="function_key"-->
13409 (F9)
13410 <!--chtml else-->
13412 <!--chtml endif-->
13413 </DT>
13414 <DD>Print the current entry on paper.  You can select the
13415 printer or the print command via the &quot;Setup&quot; command
13416 on the MAIN MENU.
13418 <DT>WhereIs
13419 <!--chtml if pinemode="function_key"-->
13420 (F10)
13421 <!--chtml else-->
13423 <!--chtml endif-->
13424 </DT>
13425 <DD>Search the entry for a string of letters.  If it is
13426 found, move to it.  The string can be one word or a phrase.
13427 If there are multiple occurrences, the cursor moves to the
13428 first occurrence beyond the current cursor position.
13430 <DT>Fwd Email
13431 <!--chtml if pinemode="function_key"-->
13432 (F11)
13433 <!--chtml else-->
13435 <!--chtml endif-->
13436 </DT>
13437 <DD>Begin composition of a new mail message with the displayed
13438 text already inserted in the message body.
13440 <DT>Save
13441 <!--chtml if pinemode="function_key"-->
13442 (F12)
13443 <!--chtml else-->
13445 <!--chtml endif-->
13446 </DT>
13447 <DD>Save the displayed entry to one of your address books or export
13448 it to a file.
13449 </DL>
13451 &lt;End of help on this topic&gt;
13452 </BODY>
13453 </HTML>
13454 ===== h_attachment_screen =====
13455 <HTML>
13456 <HEAD>
13457 <TITLE>Attachment Index Screen Explained</TITLE>
13458 </HEAD>
13459 <BODY>
13460 The &quot;ATTACHMENT INDEX&quot; displays a list of the current
13461 message's attachments, and allows various operations on them.  The
13462 first attachment is usually the message text, but does not include the
13463 header portion of the message.
13465 Available commands include:
13467 <DL>
13469 <DT>Help</DT>
13470 <DD>Show this help text.
13472 <DT>Msg #<I>num</I></DT>
13473 <DD>Leave this screen without displaying or saving any attachments.
13475 <DT>View</DT>
13476 <DD>View the currently selected attachment.
13478 <DT>Prev Attach</DT>
13479 <DD>Move to previous attachment.
13481 <DT>Next Attach</DT>
13482 <DD>Move to next attachment.
13484 <DT>Prev Page</DT>
13485 <DD>Previous page of the listed attachments.
13487 <DT>Next Page</DT>
13488 <DD>Next page of the listed attachments.
13490 <DT>Delete</DT>
13491 <DD>Mark the currently selected attachment for Deletion.
13492 This does not modify the current message by deleting the attachment from
13493 it, but instead the delete flag <EM>only</EM> has an effect when saving
13494 the message to a folder.
13495 Attachments marked for deletion are not copied to the destination folder
13496 along with the rest of the message when it is saved.
13497 It is ok for the destination folder to be the same as the current folder.
13498 In addition, the delete mark <EM>only</EM> applies to this Alpine session.
13500 <DT>Undelete</DT>
13501 <DD>Turn off the Delete flag for the selected attachment.
13503 <DT>Save</DT>
13504 <DD>Save the selected attachment to a file.  If the attachment is of
13505 type &quot;RFC822/Message&quot;, then the attachment will be saved to
13506 the specified mail folder.
13508 <DT>Export</DT>
13509 <DD>If the attachment is of
13510 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13511 copy the message to a file in the same way this command works on 
13512 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13514 <DT>Pipe</DT>
13515 <DD>Pipe the attachment contents into a UNIX command (if enabled).
13516 A description of the Pipe sub-commands is  <A HREF="h_pipe_command">here</A>.
13518 <DT>WhereIs</DT>
13519 <DD>Find a matching string in the attachment list.
13521 <DT>AboutAttch</DT>
13522 <DD>Examine various aspects of the selected attachment.
13524 <DT>Print</DT>
13525 <DD>Print the selected attachment.
13527 <DT>Forward</DT>
13528 <DD>Forward the selected attachment as an attachment.
13529 </DL>
13533 All attachments can be saved or piped into a UNIX command, but some may
13534 not be readily displayed by either Alpine or an external tool.  In such
13535 cases, the reason why the message cannot be displayed is displayed on
13536 Alpine's message line.
13538 &lt;End of help on this topic&gt;
13539 </BODY>
13540 </HTML>
13541 ============= h_mail_text_att_view ========================
13542 <HTML>
13543 <HEAD>
13544 <TITLE>Attachment View Screen Explained</TITLE>
13545 </HEAD>
13546 <BODY>
13547 This function allows you to view the contents of a text attachment. You
13548 can only view one attachment at a time.
13550 Available commands include:
13552 <DL>
13554 <DT>Help</DT>
13555 <DD>Display this help text
13557 <DT>AttchIndex</DT>
13558 <DD>Leave viewer and return to the &quot;ATTACHMENT INDEX&quot; screen
13560 <DT>Prev Page</DT>
13561 <DD>Show the previous page of the current attachment.
13563 <DT>Next Page</DT>
13564 <DD>Show the next page of the current attachment by pressing the space bar.
13566 <DT>Delete</DT>
13567 <DD>Mark the viewed attachment for Deletion.  The delete
13568 flag <EM>only</EM> has affect when saving the message to a folder.
13569 Attachments marked for deletion are exluded from the messsage when
13570 it is saved.  In addition, the delete mark <EM>only</EM> applies to
13571 this Alpine session.
13573 <DT>Undelete</DT>
13574 <DD>Turn off the Delete flag for the selected attachment.
13576 <DT>Save</DT>
13577 <DD>Copy the current attachment to a file.  If you just enter
13578 a filename, the attachment will be saved with that name in
13579 your home directory 
13580 <!--chtml if pinemode="running"-->
13581 (which, in the present configuration of your system, is
13582  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13583 <!--chtml endif-->
13584 or current working directory
13585 <!--chtml if pinemode="running"-->
13586 (which, at least for your current Alpine &quot;session,&quot; 
13587 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13588 <!--chtml endif-->, depending on the
13589 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13590 configuration setting.  You may enter the full
13591 path and filename to save it in another directory instead.
13593 <DT>Export</DT>
13594 <DD>If the attachment is of
13595 type &quot;RFC822/Message&quot;, then &quot;Export&quot; is used to
13596 copy the message to a file in the same way this command works on 
13597 messages in the MESSAGE INDEX and MESSAGE TEXT screens.
13598 (If you have any <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>
13599 defined, they may affect the contents of the exported file.)
13601 <DT>Pipe</DT>
13602 <DD>Pipe the attachment contents into a UNIX command (if enabled)
13604 <DT>WhereIs</DT>
13605 <DD>Search the attachment for a string of letters.  If it is
13606 found, move to it.  The string can be one word or a phrase.
13607 If there are multiple occurrences, the cursor moves to the
13608 first occurrence beyond the current cursor position.
13610 <DT>Print</DT>
13611 <DD>Print the current attachment on paper.  You can select the
13612 printer or the print command via the &quot;Setup&quot; command
13613 on the MAIN MENU.
13615 <DT>Forward</DT>
13616 <DD>Forward the selected attachment as an attachment.
13617 </DL>
13619 &lt;End of help on this topic&gt;
13620 </BODY>
13621 </HTML>
13622 ============= h_journal ==============
13623 <HTML>
13624 <HEAD>
13625 <TITLE>Recent Message Journal Explained</TITLE>
13626 </HEAD>
13627 <BODY>
13629 The following commands are available on this screen:
13631 <DL>
13632 <DT>Help</DT>
13633 <DD>Show this help text
13635 <DT>Exit</DT>
13636 <DD>Exit Viewer, and go back to mail processing
13638 <DT>Prev Page</DT>
13639 <DD>Show the previous page text
13641 <DT>Next Page</DT>
13642 <DD>Show the next page of text by pressing the space bar
13644 <DT>Print</DT>
13645 <DD>Print the displayed text on paper.  You can select the
13646 printer or the print command via the &quot;Setup&quot; command
13647 on the MAIN MENU.
13649 <DT>Fwd Email</DT>
13650 <DD>Begin composition of a new mail message with the displayed
13651 text already inserted in the message body.
13653 <DT>Save</DT>
13654 <DD>Copy the displayed text to a file.  If you just enter
13655 a filename, the text will be saved with that name in
13656 your 
13657 home directory 
13658 <!--chtml if pinemode="running"-->
13659 (which, in the present configuration of your system, is
13660  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13661 <!--chtml endif-->
13662 or current working directory
13663 <!--chtml if pinemode="running"-->
13664 (which, at least for your current Alpine &quot;session,&quot; 
13665 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13666 <!--chtml endif-->, depending on the
13667 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13668 configuration setting.   You may enter the full
13669 path and filename to save it in another directory instead.
13671 <DT>WhereIs</DT>
13672 <DD>Search the text for a string of letters.  If it is
13673 found, move to it.  The string can be one word or a phrase.
13674 If there are multiple occurrences, the cursor moves to the
13675 first occurrence beyond the current cursor position.
13676 </DL>
13678 &lt;End of help on this topic&gt;
13679 </BODY>
13680 </HTML>
13681 ============= h_debugjournal ==============
13682 <HTML>
13683 <HEAD>
13684 <TITLE>Debug Journal Explained</TITLE>
13685 </HEAD>
13686 <BODY>
13688 The following commands are available on this screen:
13690 <DL>
13691 <DT>Help</DT>
13692 <DD>Show this help text
13694 <DT>Exit</DT>
13695 <DD>Exit Viewer, and go back to mail processing
13697 <DT>Timestamps</DT>
13698 <DD>Turn on or off timestamps.
13700 <DT>DebugView</DT>
13701 <DD>Set the level of debugging you want to see. The level may be any number
13702 in the range 0-9. Higher numbers show more debugging detail. Note that the
13703 debugging information has already been captured. This setting just causes the
13704 debugging information that you see to be filtered. If you set this to
13705 the number &quot;5&quot; then you will be shown all of the debugging information
13706 at levels 5 and below.
13707 It's actually a bit more complicated than that. A fixed amount of memory
13708 is used to store the debug information.
13709 Since the amount of memory used is limited the debugging information
13710 has to be trimmed back when it gets too large.
13712 <DT>Prev Page</DT>
13713 <DD>Show the previous page text
13715 <DT>Next Page</DT>
13716 <DD>Show the next page of text by pressing the space bar
13718 <DT>Print</DT>
13719 <DD>Print the displayed text on paper.  You can select the
13720 printer or the print command via the &quot;Setup&quot; command
13721 on the MAIN MENU.
13723 <DT>Fwd Email</DT>
13724 <DD>Begin composition of a new mail message with the displayed
13725 text already inserted in the message body.
13727 <DT>Save</DT>
13728 <DD>Copy the displayed text to a file.  If you just enter
13729 a filename, the text will be saved with that name in
13730 your 
13731 home directory 
13732 <!--chtml if pinemode="running"-->
13733 (which, in the present configuration of your system, is
13734  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13735 <!--chtml endif-->
13736 or current working directory
13737 <!--chtml if pinemode="running"-->
13738 (which, at least for your current Alpine &quot;session,&quot; 
13739 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13740 <!--chtml endif-->, depending on the
13741 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13742 configuration setting.   You may enter the full
13743 path and filename to save it in another directory instead.
13745 <DT>WhereIs</DT>
13746 <DD>Search the text for a string of letters.  If it is
13747 found, move to it.  The string can be one word or a phrase.
13748 If there are multiple occurrences, the cursor moves to the
13749 first occurrence beyond the current cursor position.
13750 </DL>
13752 &lt;End of help on this topic&gt;
13753 </BODY>
13754 </HTML>
13755 ============= h_simple_text_view ==============
13756 <HTML>
13757 <HEAD>
13758 <TITLE>Simple Text View Screen Explained</TITLE>
13759 </HEAD>
13760 <BODY>
13762 The following commands are available on this screen:
13764 <DL>
13765 <DT>Help</DT>
13766 <DD>Show this help text
13768 <DT>Exit</DT>
13769 <DD>Exit Viewer, and go back to mail processing
13771 <DT>Prev Page</DT>
13772 <DD>Show the previous page text
13774 <DT>Next Page</DT>
13775 <DD>Show the next page of text by pressing the space bar
13777 <DT>Print</DT>
13778 <DD>Print the displayed text on paper.  You can select the
13779 printer or the print command via the &quot;Setup&quot; command
13780 on the MAIN MENU.
13782 <DT>Fwd Email</DT>
13783 <DD>Begin composition of a new mail message with the displayed
13784 text already inserted in the message body.
13786 <DT>Save</DT>
13787 <DD>Copy the displayed text to a file.  If you just enter
13788 a filename, the attachment will be saved with that name in
13789 your 
13790 home directory 
13791 <!--chtml if pinemode="running"-->
13792 (which, in the present configuration of your system, is
13793  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
13794 <!--chtml endif-->
13795 or current working directory
13796 <!--chtml if pinemode="running"-->
13797 (which, at least for your current Alpine &quot;session,&quot; 
13798 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
13799 <!--chtml endif-->, depending on the
13800 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
13801 configuration setting.   You may enter the full
13802 path and filename to save it in another directory instead.
13804 <DT>WhereIs</DT>
13805 <DD>Search the attachment for a string of letters.  If it is
13806 found, move to it.  The string can be one word or a phrase.
13807 If there are multiple occurrences, the cursor moves to the
13808 first occurrence beyond the current cursor position.
13809 </DL>
13811 &lt;End of help on this topic&gt;
13812 </BODY>
13813 </HTML>
13814 ======= h_pine_for_windows ========
13815 <HTML>
13816 <HEAD>
13817 <TITLE>GETTING HELP IN PC-ALPINE</TITLE>
13818 </HEAD>
13819 <BODY>
13820 <H1>Getting Help In PC-Alpine</H1>
13823 PC-Alpine offers general and specific help text. From the <A
13824 HREF="main_menu_tx">MAIN MENU</A>, you will find an overview in the MAIN
13825 MENU HELP and the <A HREF="h_news">Release Notes</A>.  On all screens,
13826 specific help for that screen is available from the toolbar Help menu or
13827 with the 
13828 <!--chtml if pinemode="function_key"-->
13829 &quot;F1&quot; key.
13830 <!--chtml else-->
13831 &quot;?&quot; or &quot;Ctrl-G&quot; keys. &quot;Ctrl-G&quot; is used where
13832 typing &quot;?&quot; would be mistaken as entering text.
13833 <!--chtml endif-->
13836 Although this version of Alpine is for Microsoft Windows, it is not
13837 considered a full &quot;Graphical User Interface&quot; application. 
13838 Yet, many of the controls that Windows users are accustomed to seeing, 
13839 such as scrollbars and toolbars, are available.
13842 PC-Alpine offers considerable mouse support.  You can view what is
13843 &quot;click-able&quot; by dragging your mouse over any screen; when the
13844 arrow cursor changes into a hand, you found something. Mouse-click
13845 possibilities include navigating between screens and folders and
13846 double-clicking on hyperlinks to open your Web browser.
13847 Context-sensitive pop-up menus appear with a right-click on your PC-Alpine
13848 screen.  Examples of right-click options include &quot;copy&quot; after
13849 selecting text to copy and &quot;View in New Window&quot; when you click
13850 on a particular message in the Message Index. The menu choices available
13851 to you will vary based upon what screen is open, where on the screen your
13852 cursor is located, and even what action you have already taken.
13855 &lt;End of help on this topic&gt;
13856 </BODY>
13857 </HTML>
13858 ===== h_composer =====
13859 <HTML>
13860 <HEAD>
13861 <TITLE>COMPOSER COMMANDS</TITLE>
13862 </HEAD>
13863 <BODY>
13864 <H1>COMPOSER COMMANDS</H1>
13866 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>
13867 &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>
13868 &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>
13869 &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>
13870 &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>
13871 &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>
13872 &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>
13873 &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>
13874 &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>
13875 &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>
13876 ---------------------------------------|&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>
13877 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>
13878 &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>
13879 &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>
13880 &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>
13883 NOTE:
13884 <OL>
13885  <LI>For help on a particular command, highlight the bold text associated
13886 with it above and hit Return.
13887  <LI> The availability of certain commands
13888 is determined by Alpine configuration files and system capabilities.
13889 At some sites, certain commands may not be available due to security or
13890 support concerns.
13891  <LI>Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
13892 Ctrl-&#92;, ESC.
13893  <LI>For special handling of Ctrl-S and Ctrl-Q see special comments regarding
13894 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
13895 </OL>
13898 HINT: To move rapidly to the bottom of a message you are composing,
13899 enter ^W^V.  To go to the top, ^W^Y.  These can be used in conjunction
13900 with the Mark and Cut commands to eliminate large amounts of unwanted
13901 text in a Reply.
13903 <H2>Description of Composer</H2>
13905 Alpine has a built-in editing program that allows you to compose messages
13906 without having to leave Alpine.  The editor is designed to be very simple to
13907 use so that you can get started writing email right away.
13910 Messages are usually just text, about 80 columns wide.  Using upper and
13911 lower case is encouraged.  On some systems the size limit of the message
13912 is about 100,000 characters, which is about 2,000 lines.  You can include
13913 punctuation and special characters found on most keyboards, but you can't
13914 include characters with diacritical marks and certain special symbols.
13917 Text automatically wraps as you type past the end of a line so you do not
13918 have to hit return.  Using the
13919 &quot;<A HREF="h_compose_justify">Justify</A>&quot; command,
13920 you can also reformat text explicitly, perhaps after you have
13921 deleted some text.
13924 You can include other text files with the 
13925 &quot;<A HREF="h_compose_readfile">Read File</A>&quot; command,
13926 which will prompt you for the name of the file to insert at the
13927 current cursor postion.
13930 <UL>
13931 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13932 </UL>
13934 &lt;End of help on this topic&gt;
13935 </BODY>
13936 </HTML>
13937 ====== h_composer_browse =====
13938 <HTML>
13939 <HEAD>
13940 <TITLE>BROWSER</TITLE>
13941 </HEAD>
13942 <BODY>
13943 <H1>BROWSER</H1>
13944 This screen lets you browse your files and directories.  To go to another 
13945 directory (identified by &quot;(dir)&quot;), move the cursor to it and 
13946 choose &quot;Select&quot; (the default choice on the menu); 
13947 or choose &quot;Goto&quot; and enter the name of the directory.
13948 <!--chtml if pinemode="os_windows"-->
13949 <!--chtml else--> 
13950 In Unix Alpine, you may use 
13951 &quot;~&quot; to refer to your home directory or &quot;~user&quot; to refer 
13952 to another's home directory.  
13953 <!--chtml endif--><P>
13954 To select a file, move the cursor to it and 
13955 choose &quot;Select&quot; (the default choice on the menu).  
13957 <UL>
13958 <LI>Note <B>if</B> you are currently using the BROWSER for choosing a file for 
13959 inclusion in the 
13960 message body (that is, you chose &quot;Read File&quot; with the cursor under 
13961 the 
13962 &quot;----- Message Text -----&quot; line
13963 while composing, then &quot;To Files&quot;):  Since the file 
13964 selected will become part of the message text, it must be in a format 
13965 suitable for that (Alpine does not check!), such as a plain text file.
13966 Files of other formats (for example, graphics, databases, software 
13967 programs) should be 
13968 <B>attached</B> to the message instead --
13969 by moving the cursor in the COMPOSE MESSAGE screen into the 
13970 message header area and pressing 
13971 <!--chtml if pinemode="function_key"-->
13973 <!--chtml else-->
13974 Ctrl-J.
13975 <!--chtml endif--> 
13977 <P><LI>
13978 Note <B>if</B> you are currently using the BROWSER for saving a message 
13979 attachment, or exporting a message, to a file: You can use the Add command to 
13980 provide the name for a new file to save/export to, and then select that name 
13981 to use it for the save/export operation.  Back at the prompt 
13982 &quot;EXPORT: Copy message to file in ...&quot; hit Enter, then choose 
13983 either Overwrite or Append (it doesn't make a difference, since the file is 
13984 so far empty).  Note: If you cancel the 
13985 operation at that point, the file created with the Add command will remain 
13986 0 bytes in size.
13988 </UL>
13989 <P><UL>
13990 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
13991 </UL>
13993 &lt;End of help on this topic&gt;
13994 </BODY>
13995 </HTML>
13996 ====== h_composer_ins =====
13997 <HTML>
13998 <HEAD>
13999 <TITLE>INSERT TEXT FILE</TITLE>
14000 </HEAD>
14001 <BODY>
14002 <H1>INSERT TEXT FILE</H1>
14004 Use this function to insert a text file. The file name
14005 given can be an absolute file path name for your system
14006 <!--chtml if pinemode="os_windows"-->
14007 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14008 with a relative pathname, or simply a file name without
14009 drive or directory specification.  
14010 <!--chtml else-->
14011 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14012 a file in your home directory, or a file path relative to your 
14013 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14014 your home directory or &quot;~user&quot; to refer to another
14015 account's home directory.
14016 <!--chtml endif-->
14018 No wild card characters may be used.  
14019 The file must reside on the system running Alpine.
14021 If the 
14022 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14023 feature is set, names are relative to your current working directory 
14024 <!--chtml if pinemode="running"-->
14025 (which, at least for your current Alpine &quot;session,&quot; 
14026 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14027 <!--chtml endif-->
14028 rather than your home directory
14029 <!--chtml if pinemode="running"-->
14030 (which, in the present configuration of your system, is
14031  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14032 <!--chtml endif-->
14034 <P><UL>
14035 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14036 </UL>
14038 &lt;End of help on this topic&gt;
14039 </BODY>
14040 </HTML>
14041 ====== h_composer_ins_m =====
14042 <HTML>
14043 <HEAD>
14044 <TITLE>INSERT MESSAGE</TITLE>
14045 </HEAD>
14046 <BODY>
14047 <H1>INSERT MESSAGE</H1>
14049 Type in the number of a message in the currently open folder to insert it
14050 into your message.
14051 <P><UL>
14052 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14053 </UL>
14055 &lt;End of help on this topic&gt;
14056 </BODY>
14057 </HTML>
14058 ====== h_composer_search =====
14059 <HTML>
14060 <HEAD>
14061 <TITLE>Explanation of Composer Whereis Command </TITLE>
14062 </HEAD>
14063 <BODY>
14064 <H1>Help For Whereis Command</H1>
14066 Whereis is used to search the message for a word or part of a word.
14067 When searching in the composer, only the message part of your mail is
14068 searched, and the cursor is put on the first occurrence appearing
14069 after the location of the cursor.  The search will wrap to the
14070 beginning of the message when it no longer finds matches in the
14071 remainder of the message.
14073 To search for the same string a second time, press 
14074 <!--chtml if pinemode="function_key"-->
14075 &quot;F6&quot;
14076 <!--chtml else-->
14077 &quot;^W&quot;
14078 <!--chtml endif-->
14079 to begin search and then just press RETURN to accept the previous
14080 search string shown in square brackets rather than entering a new
14081 search string.<P>
14083 The &quot;Search&quot; prompt has several sub-command available:
14085 <DL>
14086 <DT>Get Help</DT>
14087 <DD> Takes you to this help page.
14089 <DT>Cancel</DT>
14090 <DD> Cancels the prompt.  No search takes place.
14092 <DT>First Line</DT>
14093 <DD> Takes you back to the composer with the cursor on the first character
14094 of the first line of text.
14096 <DT>Last Line</DT>
14097 <DD> Takes you back to the composer with the cursor on the last character
14098 of the last line of text.
14100 <DT>Replace (Optional)</DT>
14101 <DD> This sub-command is enabled by the 
14102 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
14103 feature (which is on by default); see its help screen for details on how replacing works.
14105 </DL>
14107 &lt;End of help on this topic&gt;
14108 </BODY>
14109 </HTML>
14110 ====== h_sigedit_search =====
14111 <HTML>
14112 <HEAD>
14113 <TITLE>Explanation of Whereis Command </TITLE>
14114 </HEAD>
14115 <BODY>
14116 <H1>Help For Whereis Command</H1>
14118 Whereis is used to search for a word or part of a word.
14119 When searching the cursor is put on the first occurrence appearing
14120 after the location of the cursor.  The search will wrap to the
14121 beginning of the signature when it no longer finds matches in the
14122 remainder of the signature.
14124 To search for the same string a second time, press 
14125 <!--chtml if pinemode="function_key"-->
14126 &quot;F6&quot;
14127 <!--chtml else-->
14128 &quot;^W&quot;
14129 <!--chtml endif-->
14130 to begin search and then just press RETURN to accept the previous
14131 search string shown in square brackets rather than entering a new
14132 search string.<P>
14134 The &quot;Search&quot; prompt has several sub-command available:
14136 <DL>
14137 <DT>Get Help</DT>
14138 <DD> Takes you to this help page.
14140 <DT>Cancel</DT>
14141 <DD> Cancels the prompt.  No search takes place.
14143 <DT>First Line</DT>
14144 <DD> Takes you back to the composer with the cursor on the first character
14145 of the first line of text.
14147 <DT>Last Line</DT>
14148 <DD> Takes you back to the composer with the cursor on the last character
14149 of the last line of text.
14151 <DT>Replace (Optional)</DT>
14152 <DD> This sub-command is enabled by the 
14153 <A HREF="h_config_enable_search_and_repl">&quot;<!--#echo var="FEAT_enable-search-and-replace"-->&quot;</A>
14154 feature (which is on by default); see its help screen for details on how replacing works.
14156 </DL>
14158 &lt;End of help on this topic&gt;
14159 </BODY>
14160 </HTML>
14161 ======= h_composer_to ====
14162 <HTML>
14163 <HEAD>
14164 <TITLE>THE MESSAGE COMPOSER'S TO FIELD</TITLE>
14165 </HEAD>
14166 <BODY>
14167 <H1>THE MESSAGE COMPOSER'S TO FIELD</H1>
14169 <H2>The &quot;To:&quot; field</H2>
14170 The address you enter here must be a valid email address that is reachable
14171 from your site. 
14173 <H2>Email Address Format</H2>
14174 You may enter a full name and email address, 
14175 <!--chtml if pinemode="os_windows"-->
14176 <!--chtml else-->
14177 a local (meaning, on the same 
14178 host as the one you are running Alpine on) username that Alpine will
14179 complete for you, 
14180 <!--chtml endif-->
14181 the nickname of someone in a 
14182 <A HREF="h_abook_opened">Alpine Address Book</A>, or a local
14183 mail alias defined by your system administrator.  When you move the cursor
14184 out of this field, the nicknames will be expanded to the addresses in your
14185 address book, and the local usernames will be expanded to include the 
14186 persons' actual names.  You may enter as many addresses as you wish, but they 
14187 must be separated by commas.  You can move around this and other header fields
14188 with the arrow keys and use many of the usual composer editing keys.
14190 <UL>
14191 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14192 </UL>
14195 <H2>MESSAGE HEADER COMMANDS</H2>
14196 <!--chtml if pinemode="function_key"-->
14197 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
14198 ^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>
14199 ^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>
14200 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<BR>
14201 ^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>
14202 ^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>
14203 ^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>
14204 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>
14205 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>
14206 ^@&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>
14207 ----------------------------------------|<BR>
14208 MESSAGE&nbsp;COMMANDS&nbsp;&nbsp;|&nbsp;GENERAL&nbsp;COMMANDS&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;F12&nbsp;&nbsp;&nbsp;&nbsp;To&nbsp;Addressbook/Browser<BR>
14209 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>
14210 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>
14211 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>
14212 <!--chtml else-->
14213 CURSOR&nbsp;MOTION&nbsp;KEYS----------------------|EDITING&nbsp;KEYS-------------------------<BR>
14214 ^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>
14215 ^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>
14216 ^P&nbsp;(Up&nbsp;Arrow)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Previous&nbsp;line&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;<BR>
14217 ^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>
14218 ^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>
14219 ^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>
14220 ^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>
14221 ^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>
14222 ^@&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>
14223 ----------------------------------------|&nbsp;^R&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="h_compose_richhdr">Rich&nbsp;Headers</A><BR>
14224 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>
14225 ^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>
14226 ^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>
14227 ^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>
14228 <!--chtml endif-->
14231 NOTE:
14232 <OL>
14233  <LI>For help on a particular command, highlight the bold text associated
14234 with it above and hit Return.
14235  <LI> The availability of certain commands 
14236 is determined by Alpine configuration files and system capabilities.
14237 At some sites, certain commands may not be available due to security or
14238 support concerns.
14239 </OL>
14242 <UL>   
14243 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14244 </UL><P>
14245 &lt;End of help on this topic&gt;
14246 </BODY>
14247 </HTML>
14248 ======= h_composer_cc ====
14249 <HTML>
14250 <HEAD>
14251 <TITLE>THE MESSAGE COMPOSER'S CC FIELD</TITLE>
14252 </HEAD>
14253 <BODY>
14254 <H1>THE MESSAGE COMPOSER'S CC FIELD</H1>
14255 The Cc: field is just like the To: field, except it is used for addressees
14256 that you wish to send a &quot;carbon&quot; copy to.  That is, the message is 
14257 not directly meant directly &quot;for&quot; these recipients, but you wanted 
14258 them to see the message.  The only difference the recipients see is that their 
14259 name is in the Cc: field, rather than the To: field.
14261 For help with Cc: field editing
14262 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14264 <UL>
14265 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14266 </UL>
14268 <UL>   
14269 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14270 </UL><P>
14271 &lt;End of help on this topic&gt;
14272 </BODY>
14273 </HTML>
14274 ======= h_composer_bcc ====
14275 <HTML>
14276 <HEAD>
14277 <TITLE>THE MESSAGE COMPOSER'S BCC FIELD</TITLE>
14278 </HEAD>
14279 <BODY>
14280 <H1>THE MESSAGE COMPOSER'S BCC FIELD</H1>
14281 The &quot;Bcc:&quot; (Blind carbon copy) header is used when you wish to send 
14282 a copy of the message to one or more people whose addresses you do not
14283 wish disclosed, either to reduce clutter or for confidentiality.
14285 The format of the Bcc: field is just the same as the To: and Cc: fields in
14286 the way the addresses are entered.  The recipients listed here will
14287 receive a copy of the message, but --assuming your site's mail transport
14288 software is properly configured-- their addresses will not show up in the
14289 headers of the message, as delivered to all of the recipients.  The To:
14290 and Cc:  recipients will not know a copy was sent to the Bcc: recipients.
14292 Note: if there is no To: or Cc: or Lcc: address in the message, Alpine
14293 will automatically generate and place in the To: field a pseudo-address of 
14294   &quot;undisclosed-recipients: ;&quot;
14295 or whatever string has been specified in the 
14296 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14297 variable.
14299 The reason for this is to avoid embarrassment caused by some Internet
14300 mail transfer software that interprets a &quot;missing&quot; To: header as 
14301 an error and replaces it with an Apparently-to: header that may contain
14302 the addresses you entered on the Bcc: line.  In addition, it may be
14303 less disconcerting to Bcc: recipients to see <B>something</B> in the To: field.
14305 You can manipulate what text ends up on the (originally) empty To:
14306 field.  Just remember to put a colon and semicolon at the end of the
14307 field, which is a special notation denoting that it is not a real address.
14309 For information on message header editing
14310 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14312 <UL>
14313 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14314 </UL>
14316 <UL>   
14317 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14318 </UL><P>
14319 &lt;End of help on this topic&gt;
14320 </BODY>
14321 </HTML>
14322 ======= h_composer_lcc ====
14323 <HTML>
14324 <HEAD>
14325 <TITLE>THE MESSAGE COMPOSER'S LCC FIELD</TITLE>
14326 </HEAD>
14327 <BODY>
14328 <H1>THE MESSAGE COMPOSER'S LCC FIELD</H1>
14329 The &quot;Lcc:&quot; (List carbon copy) header is intended to be used when
14330 you wish to send a message to a list of people but avoid having all
14331 of their addresses visible, in order to reduce clutter when the
14332 message is received.
14334 It is similar to the 
14335 <A HREF="h_composer_bcc">&quot;Bcc&quot; (Blind carbon copy) header</A> 
14336 in that individual
14337 addressees are hidden, but Lcc is designed to work specifically with
14338 distribution lists you have created in your 
14339 <A HREF="h_abook_opened">Alpine Address Book</A>.  Placing
14340 the nickname of the list on the Lcc line will result in the full name of
14341 your Alpine Address Book list being placed on the To: line of the message,
14342 using a special notation that distinguishes it from a real address. You
14343 must leave the To: line blank for your list name to appear there.
14345 For example, if you have this list entered in your Address Book:<PRE>
14347         largo         Key Largo List       DISTRIBUTION LIST:
14348                                            bogie@mgm.com
14349                                            lauren@mgm.com
14350                                            walter@mgm.com</PRE>
14353 and you enter &quot;largo&quot; on the Lcc: line while composing a message, 
14354 the result is:<PRE>
14356         To      : Key Largo List: ;
14357         Cc      :
14358         Bcc     :
14359         Fcc     : sent-mail
14360         Lcc     : Key Largo List &lt;bogie@mgm.com&gt;,
14361                   lauren@mgm.com,
14362                   walter@mgm.com
14363         Subject :</PRE>
14365 Each recipient listed on the Lcc: line receives a copy of the message
14366 without their address being visible (as though they were listed on the
14367 Bcc: line). The colon-semicolon notation used to put the full-name of the
14368 list on the To: line is a special address format that doesn't specify any
14369 actual addressees, but does give some information to the recipients of the
14370 message.
14372 Note: if after entering an LCC, you delete the list name that is placed
14373 on the To: line, then recipients will see <PRE>
14374        To: undisclosed-recipients: ;</PRE>
14376 (or whatever string is defined in the 
14377 <A HREF="h_config_empty_hdr_msg">&quot;<!--#echo var="VAR_empty-header-message"-->&quot;</A>
14378 variable) just as in the BCC case. 
14380 For help with Lcc: field editing
14381 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14383 <UL>
14384 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14385 </UL>
14387 <UL>   
14388 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14389 </UL><P>
14390 &lt;End of help on this topic&gt;
14391 </BODY>
14392 </HTML>
14393 ======= h_composer_from =======
14394 <HTML>
14395 <HEAD>
14396 <TITLE>THE MESSAGE COMPOSER'S FROM FIELD</TITLE>
14397 </HEAD>
14398 <BODY>
14399 <H1>THE MESSAGE COMPOSER'S FROM FIELD</H1>
14401 This header carries your return address.  It is the address toward which
14402 replies (and often, future unrelated correspondence) will be directed,
14403 unless you have <A HREF="h_config_custom_hdrs">defined an optional 
14404 &quot;Reply-To:&quot; header</A> in the SETUP CONFIGURATION screen.  Make 
14405 sure this address is correct.
14407 For help with message header editing
14408 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14410 <UL>
14411 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14412 </UL>
14414 <UL>   
14415 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14416 </UL><P>
14417 &lt;End of help on this topic&gt;
14418 </BODY>
14419 </HTML>
14420 ======= h_composer_reply_to =======
14421 <HTML>
14422 <HEAD>
14423 <TITLE>THE MESSAGE COMPOSER'S REPLY-TO FIELD</TITLE>
14424 </HEAD>
14425 <BODY>
14426 <H1>THE MESSAGE COMPOSER'S REPLY-TO FIELD</H1>
14428 Most people should not need this header. The Reply-To: header is used in
14429 cases where you would like replies to your messages to be directed to an
14430 address other than your normal &quot;From:&quot; address.  This is atypical, 
14431 but can happen when you use multiple machines and do not have the same account
14432 name on each one, or when you wish to direct certain replies to accounts
14433 or folders designated for specific classes of correspondence.
14435 For help with message header editing
14436 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14438 <UL>
14439 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14440 </UL>
14443 <UL>   
14444 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14445 </UL><P>
14446 &lt;End of help on this topic&gt;
14447 </BODY>
14448 </HTML>
14449 ======= h_composer_custom_addr ====
14450 <HTML>
14451 <HEAD>
14452 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14453 </HEAD>
14454 <BODY>
14455 <H1>CUSTOMIZED HEADER FIELD</H1>
14456 This is a customized header, i.e. not one that is part of Alpine's normal
14457 set of Compose headers.
14459 For help with message header editing
14460 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14462 <UL>
14463 <LI><A HREF="h_address_format">Explanation of Address formats</A>
14464 </UL>
14466 <UL>   
14467 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14468 </UL><P>
14469 &lt;End of help on this topic&gt;
14470 </BODY>
14471 </HTML>
14472 ======= h_composer_custom_free ====
14473 <HTML>
14474 <HEAD>
14475 <TITLE>CUSTOMIZED HEADER FIELD</TITLE>
14476 </HEAD>
14477 <BODY>
14478 <H1>CUSTOMIZED HEADER FIELD</H1>
14479 This is a customized header, i.e. not one that is part of Alpine's normal
14480 set of Compose headers.
14482 This field consists of arbitrary text.
14484 For help with message header editing
14485 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14487 <UL>   
14488 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14489 </UL><P>
14490 &lt;End of help on this topic&gt;
14491 </BODY>
14492 </HTML>
14493 ====== h_composer_news =====
14494 <HTML>
14495 <HEAD>
14496 <TITLE>THE MESSAGE COMPOSER'S NEWSGRPS LINE</TITLE>
14497 </HEAD>
14498 <BODY>
14499 <h1>THE MESSAGE COMPOSER'S NEWSGRPS LINE</h1>
14500 Use the newsgroups line to specify any and all USENET newsgroups to which
14501 your message should be posted.  When composing a message from scratch, this
14502 line may be hidden.  If so, just press the rich headers command
14503 (<!--chtml if pinemode="function_key"-->F5<!--chtml else-->^R<!--chtml endif-->)
14504 to make it visible.
14506 <EM>Be aware</EM> that when you post to a newsgroup thousands of
14507 people will be reading your message.  Also, you or your system manager
14508 must have defined an &quot;<!--#echo var="VAR_nntp-server"-->&quot; in your Alpine configuration
14509 in order for you to be able to post.
14511 For help with message header editing
14512 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14513 <P><UL>
14514 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14515 </UL>
14517 &lt;End of help on this topic&gt;
14518 </BODY>
14519 </HTML>
14520 ======= h_composer_fcc ====
14521 <HTML>
14522 <HEADER>
14523 <TITLE>THE MESSAGE COMPOSER'S FCC FIELD</TITLE>
14524 </HEADER>
14525 <BODY>
14526 <H1>THE MESSAGE COMPOSER'S FCC FIELD</H1>
14527 The FCC (File Carbon Copy) specifies the folder used to keep a copy of
14528 each outgoing message.  The default value can be configured with the
14529 &quot;<!--#echo var="VAR_default-fcc"-->&quot; and &quot;<!--#echo var="VAR_fcc-name-rule"-->&quot; options.  You can change or remove
14530 the file carbon copy on any message you send by editing the FCC header.<p>
14532 You may type ^T to get a list of all your folders and select one to use as
14533 the FCC for this message.<P>
14535 For help with message header editing
14536 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14538 <UL>   
14539 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14540 </UL><P>
14541 &lt;End of help on this topic&gt;
14542 </BODY>
14543 </HTML>
14544 ======= h_composer_subject ====
14545 <HTML>
14546 <HEADER>
14547 <TITLE>THE MESSAGE COMPOSER'S SUBJECT FIELD</TITLE>
14548 </HEADER>
14549 <BODY>
14550 <H1>THE MESSAGE COMPOSER'S SUBJECT FIELD</H1>
14552 The subject header provides a place to enter a few words that summarize
14553 the topic of the message you are sending.  You may leave this line blank,
14554 but it is considered a courtesy to use a meaningful subject.<p>
14556 For help with message header editing
14557 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14559 <UL>   
14560 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14561 </UL><P>
14562 &lt;End of help on this topic&gt;
14563 </BODY>
14564 </HTML>
14565 ======= h_composer_attachment ====
14566 <HTML>
14567 <HEAD>
14568 <TITLE>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</TITLE>
14569 </HEAD>
14570 <BODY>
14571 <H1>THE MESSAGE COMPOSER'S ATTCHMNT FIELD</H1>
14573 The &quot;Attchmnt:&quot; field is where you specify what file or
14574 files you'd like attached to
14575 the message you are composing.  Those files must reside on the machine
14576 running Alpine. If your file is on a PC or Mac and you run Alpine with an
14577 account on a Unix machine, you'll have to transfer it before attaching it.
14578 Contact local computer support people for assistance with transferring.
14581 The file name
14582 given can be an absolute file path name for your system
14583 <!--chtml if pinemode="os_windows"-->
14584 (for example, &quot;H:&#92;SIGFILES&#92;FULLINFO.TXT&quot;), a file
14585 with a relative pathname, or simply a file name without
14586 drive or directory specification.  
14587 <!--chtml else-->
14588 (for example, &quot;/tmp/exported.earlier&quot; on Unix hosts), 
14589 a file in your home directory, or a file path relative to your 
14590 home directory.  In Unix Alpine, you may use &quot;~&quot; to refer to 
14591 your home directory or &quot;~user&quot; to refer to another
14592 account's home directory.
14593 <!--chtml endif--><P>
14594 No wild card characters may be used.
14595 <P>If the 
14596 <A HREF="h_config_use_current_dir">&quot;<!--#echo var="FEAT_use-current-dir"-->&quot;</A>
14597 feature is set, names are relative to your current working directory 
14598 <!--chtml if pinemode="running"-->
14599 (which, at least for your current Alpine &quot;session,&quot; 
14600 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
14601 <!--chtml endif-->
14602 rather than your home directory
14603 <!--chtml if pinemode="running"-->
14604 (which, in the present configuration of your system, is
14605  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
14606 <!--chtml endif-->
14609 Alpine uses MIME encoding for attachments, so binaries and files of any
14610 length can safely be delivered to any MIME-capable mail reading program.
14611 If you send an attachment to someone who does not have a MIME-capable mail
14612 reading program yet, then the main message text will be readable, but
14613 attachments (even attachments that are just plain text) are not.
14616 Typing the filename on the Attchmnt: line achieves the same
14617 result as using the 
14618 <!--chtml if pinemode="function_key"-->
14620 <!--chtml else-->
14621 Ctrl-J
14622 <!--chtml endif--> command.
14625 If you Forward a message with attachments, you may delete them from your
14626 Forwarded message by editing the Attchmnt header line.
14629 For help with message header editing
14630 commands, check the <A HREF="h_composer_to">Help for the To:</A> header.
14632 <UL>   
14633 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
14634 </UL><P>
14635 &lt;End of help on this topic&gt;
14636 </BODY>
14637 </HTML>
14638 ======= h_composer_ctrl_j ====
14639 <HTML>
14640 <HEAD>
14641 <TITLE>COMPOSER ATTACH</TITLE>
14642 </HEAD>
14643 <BODY>
14644 After the
14645 <!--chtml if pinemode="function_key"-->
14647 <!--chtml else-->
14648 Ctrl-J
14649 <!--chtml endif--> command:
14650 At the &quot;File to attach:&quot; prompt, enter the name of the 
14651 existing file to attach to your message.  
14652 When the feature
14653 <A HREF="h_config_enable_tab_complete">&quot;<!--#echo var="FEAT_enable-tab-completion"-->&quot;</A>
14654 is set
14655 you need only enter the beginning of the filename (enough of it to uniquely 
14656 identify the file) and press TAB to complete it.
14658 Or, press ^T to use the BROWSER screen for 
14659 selecting the file.  <P>
14660 For more information on attaching files, see the help screen for the 
14661 composer's 
14662 <A HREF="h_composer_attachment">Attchmnt: field</A>, which is normally hidden,
14663 but can be revealed using the 
14664 <!--chtml if pinemode="function_key"-->
14666 <!--chtml else-->
14667 Ctrl-R
14668 <!--chtml endif--> 
14669 command with the cursor positioned above the
14670 &quot;----- Message Text -----&quot; line in the COMPOSE MESSAGE screen.
14672 &lt;End of help on this topic&gt;
14673 </BODY>
14674 </HTML>
14675 ======= h_edit_nav_cmds =========
14676 <HTML>
14677 <HEAD>
14678 <TITLE>Composer Editing Commands Explained</TITLE>
14679 </HEAD>
14680 <BODY>
14681 <H1>EDITING and NAVIGATION COMMANDS</H1>
14682 <!--chtml if pinemode="function_key"-->
14683 <PRE>
14684 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14685 ^B (Left Arrow)    Back character       | ^D       Delete current character
14686 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14687 ^P (Up Arrow)      Previous line        |
14688 ^N (Down Arrow)    Next line            | F9       Cut marked text or
14689 ^A                 Beginning of line    |            delete current line
14690 ^E                 End of line          | F10      Undelete line(s)
14691 F7                 Previous page        |
14692 F8                 Next page            |-------------------------------------
14693 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14694 ----------------------------------------|
14695 EXIT COMMANDS    |  GENERAL COMMANDS    | F12    To Addressbook
14696 F3   Cancel      |   F1    Get help     | F12    RichView (expand lists)
14697 F2  eXit/save    |   ^Z    Suspend      | ^L     Redraw Screen
14698 </PRE>
14699 <!--chtml else-->
14700 <PRE>
14701 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
14702 ^B (Left Arrow)    Back character       | ^D       Delete current character
14703 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
14704 ^P (Up Arrow)      Previous line        |
14705 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
14706 ^A                 Beginning of line    |            delete current line
14707 ^E                 End of line          | ^U       Undelete line(s)
14708 ^Y                 Previous page        |
14709 ^V                 Next page            |-------------------------------------
14710 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
14711 ----------------------------------------|
14712 EXIT COMMANDS    |  GENERAL COMMANDS    | ^T     To Addressbook
14713 ^C   Cancel      |   ^G    Get help     | ^R     RichView  (expand lists)
14714 ^X   eXit/save   |   ^Z    Suspend      | ^L     Redraw Screen
14715 </PRE>
14716 <!--chtml endif-->
14717 &lt;End of help on this topic&gt;
14718 </BODY>
14719 </HTML>
14720 ===== h_composer_sigedit =====
14721 <HTML>
14722 <HEAD>
14723 <TITLE>Signature Editor Commands Explained</TITLE>
14724 </HEAD>
14725 <BODY>
14726 <H1>SIGNATURE EDITOR COMMANDS</H1>
14727 <!--chtml if pinemode="function_key"-->
14728 <PRE>
14729 CURSOR MOTION KEYS                     |EDITING KEYS
14730   ^B (Left Arrow)   Back character     | ^D       Delete current character
14731   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14732   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14733   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14734   ^A                Beginning of line  |           delete current line
14735   ^E                End of line        | F10       Paste text, undelete lines
14736   F7                Previous page      |           cut with ^K, or unjustify
14737   F8                Next page          |-------------------------------------
14738   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14739 ---------------------------------------| F6       Whereis (search for string)
14740 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14741  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14742                  |  ^Z    Suspend      | ^L       Redraw Screen
14743  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14744 </PRE>
14745 <!--chtml else-->
14746 <PRE>
14747 CURSOR MOTION KEYS                     |EDITING KEYS
14748   ^B (Left Arrow)   Back character     | ^D       Delete current character
14749   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14750   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14751   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14752   ^A                Beginning of line  |           delete current line
14753   ^E                End of line        | ^U        Paste text, undelete lines
14754   ^Y                Previous page      |           cut with ^K, or unjustify
14755   ^V                Next page          |-------------------------------------
14756   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14757 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14758 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14759  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14760                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14761  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14762 </PRE>
14763 <!--chtml endif-->
14765 NOTE: The presence or absence of the following commands is determined
14766 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14767 some of these commands may be administratively disabled by your system
14768 manager; if they don't work, please check with your local help desk
14769 before reporting a bug.
14771 <UL>
14772  <LI>Suspend (suspends Alpine and gives a system prompt)
14773  <LI>Alternate editor (allows you to compose with your own editor)
14774 </UL>
14777 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14778 Ctrl-&#92;, ESC
14781 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14782 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14784 &lt;End of help on this topic&gt;
14785 </BODY>
14786 </HTML>
14787 ===== h_composer_commentedit =====
14788 <HTML>
14789 <HEAD>
14790 <TITLE>Comment Editor Commands Explained</TITLE>
14791 </HEAD>
14792 <BODY>
14793 <H1>COMMENT EDITOR COMMANDS</H1>
14794 <!--chtml if pinemode="function_key"-->
14795 <PRE>
14796 CURSOR MOTION KEYS                     |EDITING KEYS
14797   ^B (Left Arrow)   Back character     | ^D       Delete current character
14798   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14799   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14800   ^N (Down Arrow)   Next line          | F9       Cut marked text or
14801   ^A                Beginning of line  |           delete current line
14802   ^E                End of line        | F10       Paste text, undelete lines
14803   F7                Previous page      |           cut with ^K, or unjustify
14804   F8                Next page          |-------------------------------------
14805   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14806 ---------------------------------------| F6       Whereis (search for string)
14807 MESSAGE COMMANDS | GENERAL COMMANDS    | F12      Spell checker
14808  F3   Cancel     |  F1    Get help     | F4       Justify paragraph
14809                  |  ^Z    Suspend      | ^L       Redraw Screen
14810  F2   Send       |  F6    Alt. editor  | F5       Read in a file
14811 </PRE>
14812 <!--chtml else-->
14813 <PRE>
14814 CURSOR MOTION KEYS                     |EDITING KEYS
14815   ^B (Left Arrow)   Back character     | ^D       Delete current character
14816   ^F (Right Arrow)  Forward character  | ^H (DEL) Delete previous character
14817   ^P (Up Arrow)     Previous line      | ^^       Set a mark
14818   ^N (Down Arrow)   Next line          | ^K       Cut marked text or
14819   ^A                Beginning of line  |           delete current line
14820   ^E                End of line        | ^U        Paste text, undelete lines
14821   ^Y                Previous page      |           cut with ^K, or unjustify
14822   ^V                Next page          |-------------------------------------
14823   ^@ (Ctrl-SPACE)   Next word          |SCREEN/COMPOSITION COMMANDS
14824 ---------------------------------------| ^W       <A HREF="h_composer_search">Whereis</A> (search text)
14825 MESSAGE COMMANDS | GENERAL COMMANDS    | ^T       Spell checker
14826  ^C   Cancel     |  ^G    Get help     | ^J       <A HREF="h_compose_justify">Justify</A> paragraph
14827                  |  ^Z    <A HREF="h_common_suspend">Suspend</A>      | ^L       Redraw Screen
14828  ^X   Send       |  ^_    Alt. editor  | ^R       Read in a file
14829 </PRE>
14830 <!--chtml endif-->
14832 NOTE: The presence or absence of the following commands is determined
14833 by &quot;Feature-List&quot; options in your Alpine configuration.  Also,
14834 some of these commands may be administratively disabled by your system
14835 manager; if they don't work, please check with your local help desk
14836 before reporting a bug.
14838 <UL>
14839  <LI>Suspend (suspends Alpine and gives a system prompt)
14840  <LI>Alternate editor (allows you to compose with your own editor)
14841 </UL>
14844 Alpine does not use the following keys:  Ctrl-S, Ctrl-Q, Ctrl-],
14845 Ctrl-&#92;, ESC
14848 NOTE: For special handling of Ctrl-S and Ctrl-Q see special comments regarding
14849 <A HREF="h_special_xon_xoff">&quot;XOFF/XON&quot;</A>.
14851 &lt;End of help on this topic&gt;
14852 </BODY>
14853 </HTML>
14854 ======= h_composer_abook_nick =======
14855 <HTML>
14856 <HEAD>
14857 <TITLE>Addressbook Nickname Explained</TITLE>
14858 </HEAD>
14859 <BODY>
14860 This is a short nickname for this address book entry.  If it is used in
14861 place of an address from the composer, the composer will fill in the
14862 address(es) for the entry that matches the nickname. 
14865 Look <A HREF="h_edit_nav_cmds">here</A>
14866 to see the available Editing and Navigation commands.
14868 &lt;End of help on this topic&gt;
14869 </BODY>
14870 </HTML>
14871 ======= h_composer_abook_full =======
14872 <HTML>
14873 <HEAD>
14874 <TITLE>Addressbook Fullname Explained</TITLE>
14875 </HEAD>
14876 <BODY>
14877 This is the full name field for this entry.  If this is going to be a
14878 distribution list (more than one address), it should be a descriptive
14879 phrase describing the list.  It will be included in the mail header if you
14880 put the list in the To: or CC: field, or in the To: line if you put the
14881 list in the Lcc: field.  It's OK to leave this field blank (and OK to
14882 leave any of the other fields blank, too). If this address book entry is
14883 going to be a simple entry with just one address, then this field is the
14884 person's name. When you send mail to this entry, this is the field to the
14885 left of the brackets. That is, it is the most readable part of the 
14886 address. For example, in the sample address:
14887 <PRE>
14888        John Doe &lt;jdoe@some.domain&gt;
14889 </PRE>
14890 "John Doe" is the full name field. If you are sorting your address book
14891 with one of the options that uses full names, then it might be useful to
14892 enter the full name as "Last, First", for example:
14893 <PRE>
14894        Doe, John
14895 </PRE>
14896 so that it will be sorted using Doe instead of John. This will be changed
14897 back into John Doe when you use it.
14899 Look <A HREF="h_edit_nav_cmds">here</A>
14900 to see the available Editing and Navigation commands.
14902 &lt;End of help on this topic&gt;
14903 </BODY>
14904 </HTML>
14905 ======= h_composer_abook_fcc =======
14906 <HTML>
14907 <HEAD>
14908 <TITLE>Addressbook Fcc Explained</TITLE>
14909 </HEAD>
14910 <BODY>
14911 If this entry is the first one in the To: line of an outgoing message,
14912 this field will be used for the Fcc (File Carbon Copy) instead of whatever
14913 you would normally get (which depends on which
14914 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
14915 you've chosen). 
14917 If this field consists of two double quotes (&quot;&quot;) that tells Alpine
14918 that you don't want any Fcc associated with this entry.
14920 Look <A HREF="h_edit_nav_cmds">here</A>
14921 to see the available Editing and Navigation commands.
14923 &lt;End of help on this topic&gt;
14924 </BODY>
14925 </HTML>
14926 ====== h_config_combined_abook_display =====
14927 <HTML>
14928 <HEAD>
14929 <TITLE>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></TITLE>
14930 </HEAD>
14931 <BODY>
14932 <H1>FEATURE: <!--#echo var="FEAT_combined-addrbook-display"--></H1>
14934 This feature affects the address book display screens.
14935 Normally, expanding an address book from the ADDRESS BOOK LIST screen
14936 will cause the remaining address books and directory servers to disappear
14937 from the screen, leaving only the entries of the expanded address book.
14938 If this feature is set, then the other address books will remain on the screen,
14939 so that all of the address books can be present at once.
14942 The way that commands work won't be changed.
14943 For example, the Select All command will select all of the entries in the
14944 current address book, not all of the entries in all of the address books.
14945 The WhereIs command will change a little.
14946 It will search through all of the text on the screen plus all of the entries
14947 from expanded address books.
14950 When this feature is set, the setting of the feature
14951 <A HREF="h_config_expanded_addrbooks">&quot;<!--#echo var="FEAT_expanded-view-of-addressbooks"-->&quot;</A>
14952 has an effect.
14954 &lt;End of help on this topic&gt;
14955 </BODY>
14956 </HTML>
14957 ====== h_config_titlebar_color_style =====
14958 <HTML>
14959 <HEAD>
14960 <TITLE>OPTION: <!--#echo var="VAR_titlebar-color-style"--></TITLE>
14961 </HEAD>
14962 <BODY>
14963 <H1>OPTION: <!--#echo var="VAR_titlebar-color-style"--></H1>
14965 This option affects the colors used to display the titlebar (the top
14966 line on the screen) when viewing a message.
14969 The available options include:
14972 <DL>
14973 <DT>default</DT>
14974 <DD>The color of the titlebar will be the color you set for the
14975 <A HREF="h_config_title_color">Title Color</A>.
14976 The Title Color may be set by using the
14977 <A HREF="h_color_setup">Setup Kolor</A> screen.
14978 </DD>
14980 <DT>indexline</DT>
14981 <DD>The color of the titlebar will be the same as the color of the
14982 index line corresponding to the message being viewed.
14983 The rules that determine what color the index line will be may be set
14984 up by going to the Setup/Rules/Indexcolor screen.
14985 If the index line for a message is not colored explicitly by the
14986 Indexcolor rules, then the titlebar will be colored the same as for
14987 the &quot;default&quot; option above (which is not the same color that
14988 the index line itself will have).
14989 </DD>
14991 <DT>reverse-indexline</DT>
14992 <DD>This is similar to the &quot;indexline&quot; option except the
14993 foreground and background colors from the corresponding index line will
14994 be reversed.
14995 For example, if the index line color is red letters on a white background,
14996 then the titlebar will be white letters on a red background.
14997 If the index line for a message is not colored explicitly by the
14998 Indexcolor rules, then the titlebar will be colored the same as for
14999 the &quot;default&quot; option above (which is not the same color that
15000 the index line itself will have).
15001 </DD>
15002 </DL>
15006 <UL>   
15007 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15008 </UL><P>
15009 &lt;End of help on this topic&gt;
15010 </BODY>
15011 </HTML>
15012 ====== h_config_index_color_style =====
15013 <HTML>
15014 <HEAD>
15015 <TITLE>OPTION: <!--#echo var="VAR_current-indexline-style"--></TITLE>
15016 </HEAD>
15017 <BODY>
15018 <H1>OPTION: <!--#echo var="VAR_current-indexline-style"--></H1>
15020 This option affects the colors used to display the current line in the
15021 MESSAGE INDEX screen.
15022 If you do not have Index Color Rules defined, then this option will
15023 have no effect in the index.
15024 Those Rules may be defined by going to the Setup/Rules/Indexcolor screen.
15026 If the option
15027 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
15028 is turned on and the
15029 <A HREF="h_config_incunseen_color">Incoming Unseen Color</A>
15030 is set to something other than the default, then
15031 this option also affects the color used to display the current folder
15032 in the Incoming FOLDER LIST screen.
15035 The available options include:
15038 <DL>
15039 <DT>flip-colors</DT>
15040 <DD>This is the default.
15041 If an index line is colored because it matches one of your
15042 Index Color Rules, then its colors will be reversed when it is the currently
15043 highlighted line.
15044 For example, if the line is normally red text on a blue background, then
15045 when it is the current line it will be drawn as blue text on a red background.
15047 The rest of the option values all revert to this flip-colors behavior if
15048 there is no Reverse Color defined.
15049 </DD>
15051 <DT>reverse</DT>
15052 <DD>With this option the Reverse color is always used to highlight the
15053 current line.
15054 </DD>
15056 <DT>reverse-fg</DT>
15057 <DD>The foreground part of the Reverse Color is used to highlight
15058 the current line.
15059 If this would cause the text to be unreadable (because the foreground and
15060 background colors are the same) or if it would cause no change in the
15061 color of the index line, then the colors are flipped instead.
15063 Some people think this works particularly well if you use different
15064 background colors to emphasize &quot;interesting&quot; lines,
15065 but always with the same Normal foreground color,
15066 and you use a different foreground color for the Reverse Color.
15067 </DD>
15069 <DT>reverse-fg-no-ambiguity</DT>
15070 <DD>With the &quot;reverse-fg&quot; rule above, it is possible that
15071 the resulting color will be exactly the same as the regular Reverse
15072 Color.
15073 That can lead to some possible confusion because an
15074 &quot;interesting&quot;
15075 line that is the current line will be displayed exactly the same as a
15076 non-interesting line that is current.
15077 You can't tell whether the line is just a regular current line or if it is
15078 an &quot;interesting&quot; current line by looking at the color.
15079 Setting the option to this value removes that ambiguity.
15080 It is the same as the &quot;reverse-fg&quot; setting unless the resulting
15081 interesting current line would look just like a non-interesting current line.
15082 In that case, the interesting line's colors are simply flipped (like in the
15083 default behavior).
15085 As an alternative way to preserve the line's interestingness in this case,
15086 you may find that using both a different foreground and a different
15087 background color for the interesting line will help.
15088 </DD>
15090 <DT>reverse-bg</DT>
15091 <DD>The background part of the Reverse Color is used to highlight
15092 the current line.
15093 If this would cause the text to be unreadable (because the foreground and
15094 background colors are the same) or if it would cause no change in the
15095 color of the index line, then the colors are flipped instead.
15097 Some people think this works particularly well if you use different
15098 foreground colors to emphasize &quot;interesting&quot; lines,
15099 but always with the same Normal background color,
15100 and you use a different background color for the Reverse Color.
15101 </DD>
15103 <DT>reverse-bg-no-ambiguity</DT>
15104 <DD>As with the &quot;reverse-fg&quot; case, the &quot;reverse-bg&quot;
15105 rule may also result in a color that is exactly the same as the regular
15106 Reverse Color.
15107 Setting the option to this value removes that ambiguity.
15108 It is the same as the &quot;reverse-bg&quot; setting unless the resulting
15109 current line has the same color as the Reverse Color.
15110 In that case, the interesting line's colors are simply flipped (like in the
15111 default behavior).
15112 </DD>
15113 </DL>
15117 <UL>   
15118 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15119 </UL><P>
15120 &lt;End of help on this topic&gt;
15121 </BODY>
15122 </HTML>
15123 ====== h_config_expanded_addrbooks =====
15124 <HTML>
15125 <HEAD>
15126 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></TITLE>
15127 </HEAD>
15128 <BODY>
15129 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-addressbooks"--></H1>
15131 If multiple address books (either personal or global) are defined, and you
15132 wish to have them all expanded implicitly upon entering the ADDRESS BOOK
15133 screen, then set this feature. This feature will have no effect unless the
15134 feature
15135 <A HREF="h_config_combined_abook_display">&quot;<!--#echo var="FEAT_combined-addrbook-display"-->&quot;</A>
15136 is also set.
15138 &lt;End of help on this topic&gt;
15139 </BODY>
15140 </HTML>
15141 ====== h_config_combined_folder_display =====
15142 <HTML>
15143 <HEAD>
15144 <TITLE>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></TITLE>
15145 </HEAD>
15146 <BODY>
15147 <H1>FEATURE: <!--#echo var="FEAT_combined-folder-display"--></H1>
15149 This feature affects the folder list display screens.
15150 Normally, each folder list is viewed within its collection only.  This
15151 command allows folder lists to be viewed within a single screen that
15152 combines the contents of all collections.
15155 The way that commands work won't be changed.
15156 For example, the Select All command will select all of the folders in the
15157 current collection, not all of the entries in all of the collections.
15158 The WhereIs command will change a little.
15159 It will search through all of the folders in the current collection as well
15160 as all the folder in any other expanded collection.
15163 When this feature is set, the setting of the feature
15164 <A HREF="h_config_expanded_folders">&quot;<!--#echo var="FEAT_expanded-view-of-folders"-->&quot;</A>
15165 has an effect.
15167 &lt;End of help on this topic&gt;
15168 </BODY>
15169 </HTML>
15170 ====== h_config_combined_subdir_display =====
15171 <HTML>
15172 <HEAD>
15173 <TITLE>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></TITLE>
15174 </HEAD>
15175 <BODY>
15176 <H1>FEATURE: <!--#echo var="FEAT_combined-subdirectory-display"--></H1>
15178 This feature affects the Folder List screen when
15180 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
15181 feature is enabled.  Normally, selecting a directory from the Folder
15182 List takes you into a new screen displaying only the contents of
15183 that directory.
15186 Enabling this feature will cause the contents of the selected
15187 directory to be
15188 displayed within the boundaries of the &quot;Collection&quot; it
15189 is a part of.  All previously displayed collections will remain
15190 in the screen.
15193 The way that commands work won't be changed.
15194 For example, the Select All command will select all of the folders in the
15195 directory, as opposed to all of the entries in all of the collections.
15196 The WhereIs command will change a little.
15197 It will search through all of the folders in the current collection as well
15198 as all the folder in any other expanded collection.
15201 &lt;End of help on this topic&gt;
15202 </BODY>
15203 </HTML>
15204 ====== h_config_separate_fold_dir_view =====
15205 <HTML>
15206 <HEAD>
15207 <TITLE>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></TITLE>
15208 </HEAD>
15209 <BODY>
15210 <H1>FEATURE: <!--#echo var="FEAT_separate-folder-and-directory-entries"--></H1>
15212 This feature affects folder collections wherein a folder
15213 and directory can have the same name.  By default, Alpine displays them
15214 only once, denoting that it is both a folder and directory by appending
15215 the folder name with the hierarchy character enclosed
15216 in square brackets.
15220 Enabling this feature will cause Alpine to display such names
15221 separately marking the name representing a directory with a trailing
15222 hierarchy delimiter (typically the slash, &quot;/&quot;, character).
15225 The feature also alters the command set slightly.  By default, the
15226 right-arrow descends into the directory, while hitting the Return key will
15227 cause the folder by that name to be opened.
15230 With this feature set, the Return key will open the highlighted folder, or
15231 enter the highlighted directory.
15234 &lt;End of help on this topic&gt;
15235 </BODY>
15236 </HTML>
15237 ====== h_config_expanded_folders =====
15238 <HTML>
15239 <HEAD>
15240 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></TITLE>
15241 </HEAD>
15242 <BODY>
15243 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-folders"--></H1>
15245 If multiple folder collections are defined, and you
15246 wish to have them all expanded implicitly upon entering the FOLDER LIST
15247 screen, then set this feature. This feature will have no effect unless the
15248 feature
15249 <A HREF="h_config_combined_folder_display">&quot;<!--#echo var="FEAT_combined-folder-display"-->&quot;</A>
15250 is also set.
15252 &lt;End of help on this topic&gt;
15253 </BODY>
15254 </HTML>
15255 ======= h_config_ldap_server =======
15256 <HTML>
15257 <HEAD>
15258 <TITLE>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
15259 </HEAD>
15260 <BODY>
15261 <H1>LDAP OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
15262 This is the name of the host where an LDAP server is running.
15263 For redundancy, this may be a space-delimited set of server names, in which
15264 case the first server that answers is used.
15265 Each of the server names may be optionally followed by
15266 a colon and a port number.
15267 If this form is used then the port number configured below in the
15268 <EM>port</EM> field is not used.
15270 To find out whether your organization has its own LDAP server, 
15271 contact its computing support staff.
15272 <P><UL>
15273 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15274 </UL>
15276 &lt;End of help on this topic&gt;
15277 </BODY>
15278 </HTML>
15279 ======= h_config_ldap_base =======
15280 <HTML>
15281 <HEAD>
15282 <TITLE>LDAP OPTION: Search-Base</TITLE>
15283 </HEAD>
15284 <BODY>
15285 <H1>LDAP OPTION: Search-Base</H1>
15287 This is the search base to be used on this server.  It functions as a filter 
15288 by restricting your searches in the LDAP server database
15289 to the specified contents of the specified fields.  Without it, searches 
15290 submitted to this directory server may fail.  It might be something
15291 like:
15293 <PRE>
15294       O = &lt;Your Organization Name&gt;, C = US
15295 </PRE>
15296 or it might be blank.  
15297 (Some LDAP servers actually ignore anything specified here.)
15299 If in doubt what parameters you should specify here, 
15300 contact the maintainers of the LDAP server.
15301 <P><UL>
15302 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15303 </UL>
15305 &lt;End of help on this topic&gt;
15306 </BODY>
15307 </HTML>
15308 ======= h_config_ldap_port =======
15309 <HTML>
15310 <HEAD>
15311 <TITLE>LDAP OPTION: Port</TITLE>
15312 </HEAD>
15313 <BODY>
15314 <H1>LDAP OPTION: Port</H1>
15316 This is the TCP port number to be used with this LDAP server. If you leave
15317 this blank port 389 will be used.
15319 &lt;End of help on this topic&gt;
15320 </BODY>
15321 </HTML>
15322 ======= h_config_ldap_nick =======
15323 <HTML>
15324 <HEAD>
15325 <TITLE>LDAP OPTION: Nickname</TITLE>
15326 </HEAD>
15327 <BODY>
15328 <H1>LDAP OPTION: Nickname</H1>
15330 This is a nickname to be used in displays. If you don't supply a
15331 nickname the server name
15332 (<A HREF="h_config_ldap_server">&quot;<!--#echo var="VAR_ldap-servers"-->&quot;</A>)
15333 will be used instead.  This option is strictly for your convenience.
15335 &lt;End of help on this topic&gt;
15336 </BODY>
15337 </HTML>
15338 ======= h_config_ldap_binddn =======
15339 <HTML>
15340 <HEAD>
15341 <TITLE>LDAP OPTION: Bind-DN</TITLE>
15342 </HEAD>
15343 <BODY>
15344 <H1>LDAP OPTION: Bind-DN</H1>
15346 You may need to authenticate to the LDAP server before you are able to use it.
15347 This is the Distinguished Name to bind to when authenticating to this server.
15348 Try leaving this blank until you know you need it.
15350 Alpine only knows about LDAP Simple authentication.
15351 It does not attempt LDAP SASL authentication.
15352 The DN and password will be sent in the clear unless TLS encryption is
15353 being used on this connection.
15354 Because of this, you may want to set the LDAP feature
15355 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>
15356 or the feature
15357 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15358 if you are going to be providing a password.
15359 <P><UL>
15360 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
15361 </UL>
15363 &lt;End of help on this topic&gt;
15364 </BODY>
15365 </HTML>
15366 ======= h_config_ldap_opts_impl =======
15367 <HTML>
15368 <HEAD>
15369 <TITLE>LDAP FEATURE: Use-Implicitly-From-Composer</TITLE>
15370 </HEAD>
15371 <BODY>
15372 <H1>LDAP FEATURE: Use-Implicitly-From-Composer</H1>
15374 Set this to have lookups done to this server implicitly from the composer.
15375 If an address doesn't look like a fully-qualified address, it will be looked
15376 up in your address books, and if it doesn't match a nickname there, then it
15377 will be looked up on the LDAP servers that have this feature set.
15378 The lookups will also be done when using the address completion feature
15379 (TAB command) in the composer if any of the serves have this feature set.
15380 Also see the LDAP feature
15381 <A HREF="h_config_ldap_opts_rhs">&quot;Lookup-Addrbook-Contents&quot;</A>
15382 and the Setup/Config feature
15383 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15385 &lt;End of help on this topic&gt;
15386 </BODY>
15387 </HTML>
15388 ======= h_config_ldap_opts_tls =======
15389 <HTML>
15390 <HEAD>
15391 <TITLE>LDAP FEATURE: Attempt-TLS-On-Connection</TITLE>
15392 </HEAD>
15393 <BODY>
15394 <H1>LDAP FEATURE: Attempt-TLS-On-Connection</H1>
15396 When connecting to this server Alpine will attempt to use TLS encryption
15397 on the connection.
15398 Also see the closely related feature
15399 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15401 Note that if this option is set, then 
15402 <A HREF="h_config_ldap_opts_ldaps">
15403 &quot;Require-LDAPS-On-Connection&quot;</A>
15404 can not be enabled for this server. You must disable this feature in
15405 order to use 
15406 <A HREF="h_config_ldap_opts_ldaps">
15407 &quot;Require-LDAPS-On-Connection&quot;</A>
15409 &lt;End of help on this topic&gt;
15410 </BODY>
15411 </HTML>
15412 ======= h_config_ldap_opts_tlsmust =======
15413 <HTML>
15414 <HEAD>
15415 <TITLE>LDAP FEATURE: Require-TLS-On-Connection</TITLE>
15416 </HEAD>
15417 <BODY>
15418 <H1>LDAP FEATURE: Require-TLS-On-Connection</H1>
15420 When connecting to this server Alpine will attempt to use TLS encryption
15421 on the connection.
15422 If the StartTLS operation fails then the connection will not be used.
15424 Note that if this option is set, then 
15425 <A HREF="h_config_ldap_opts_ldaps">
15426 &quot;Require-LDAPS-On-Connection&quot;</A>
15427 can not be enabled for this server. You must disable this feature in
15428 order to use 
15429 <A HREF="h_config_ldap_opts_ldaps">
15430 &quot;Require-LDAPS-On-Connection&quot;</A>
15432 &lt;End of help on this topic&gt;
15433 </BODY>
15434 </HTML>
15435 ======= h_config_ldap_opts_ldaps =======
15436 <HTML>
15437 <HEAD>
15438 <TITLE>LDAP FEATURE: Require-LDAPS-On-Connection</TITLE>
15439 </HEAD>
15440 <BODY>
15441 <H1>LDAP FEATURE: Require-LDAPS-On-Connection</H1>
15443 When connecting to this server Alpine will use LDAPS (LDAP over SSL/TLS) 
15444 on the connection.
15446 This feature can not be used along with 
15447 <A HREF="h_config_ldap_opts_tlsmust">&quot;Require-TLS-On-Connection&quot;</A>
15448  or
15449 <A HREF="h_config_ldap_opts_tls">&quot;Attempt-TLS-On-Connection&quot;</A>.
15450 If you want to connect using StartTLS to this server, you must disable
15451 this feature first.
15453 &lt;End of help on this topic&gt;
15454 </BODY>
15455 </HTML>
15456 ====== h_config_ldap_opts_rhs =====
15457 <HTML>
15458 <HEAD>
15459 <TITLE>LDAP FEATURE: Lookup-Addrbook-Contents</TITLE>
15460 </HEAD>
15461 <BODY>
15462 <H1>LDAP FEATURE: Lookup-Addrbook-Contents</H1>
15464 Normally implicit LDAP lookups from the composer are done only for the
15465 strings you type in from the composer screen. In other words, you type in
15466 something in the To or CC field and press return, then the string is looked up.
15467 First that string is looked up in your address books. If a match is found
15468 there, then the results of that match are looked up again. If you place
15469 a string in your address book that you want to have looked up on the LDAP
15470 directory server, you need to turn on this feature. If you set this feature
15471 for a server, you almost always will also want to set the
15472 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>
15473 feature. An example might serve to best illustrate this feature.
15475 If an LDAP lookup of &quot;William Clinton&quot; normally returns an
15476 entry with an
15477 address of pres@whitehouse.gov, then you might put an entry in your address
15478 book that looks like:
15480 <CENTER><SAMP>Nickname = bill</SAMP></CENTER><BR>
15481 <CENTER><SAMP>Address = &quot;William Clinton&quot;</SAMP></CENTER>
15483 Now, when you type &quot;bill&quot; into an
15484 address field in the composer Alpine will
15485 find the &quot;bill&quot; entry in your address book.
15486 It will replace &quot;bill&quot; with
15487 &quot;William Clinton&quot;.
15488 It will then search for an entry with that nickname
15489 in your address book and not find one. If this feature
15490 is set, Alpine will then attempt to lookup
15491 &quot;William Clinton&quot; on the LDAP server and find the entry with address
15492 pres@whitehouse.gov.
15494 A better way to accomplish the same thing is probably to use the feature
15495 <A HREF="h_config_ldap_opts_ref">&quot;Save-Search-Criteria-Not-Result&quot;</A>.
15497 &lt;End of help on this topic&gt;
15498 </BODY>
15499 </HTML>
15500 ====== h_config_ldap_opts_ref =====
15501 <HTML>
15502 <HEAD>
15503 <TITLE>LDAP FEATURE: Save-Search-Criteria-Not-Result</TITLE>
15504 </HEAD>
15505 <BODY>
15506 <H1>LDAP FEATURE: Save-Search-Criteria-Not-Result</H1>
15508 Normally when you save the results of an LDAP directory lookup to your
15509 address book the results of the lookup are saved. If this feature is set
15510 and the entry being saved was found on this directory server, then the
15511 search criteria is saved instead of the results of the search. When this
15512 address book entry is used in the future, instead of copying the results
15513 from the address book the directory lookup will be done again. This could
15514 be useful if the copied result might become stale because the data on
15515 the directory server changes (for example, the entry's email address changes).
15516 You probably don't want to set this feature if the server is at all slow or
15517 unreliable.
15519 The way this actually works is that instead of saving the email address
15520 in your address book, Alpine saves enough information to look up the same
15521 directory entry again. In particular, it saves the server name and the
15522 distinguished name of the entry. It's possible that the server administrators
15523 might change the format of distinguished names on the server, or that the
15524 entry might be removed from the server. If Alpine notices this, you will be warned
15525 and a backup copy of the email address will be used. You may want to create
15526 a new entry in this case, since you will get the annoying warning every
15527 time you use the old entry. You may do that by Saving the entry to a new
15528 nickname in the same address book. You will be asked whether or not you
15529 want to use the backup email address.
15531 A related feature in the Setup/Config screen is
15532 <A HREF="h_config_add_ldap">&quot;<!--#echo var="FEAT_ldap-result-to-addrbook-add"-->&quot;</A>.
15534 &lt;End of help on this topic&gt;
15535 </BODY>
15536 </HTML>
15537 ======= h_config_ldap_opts_nosub =======
15538 <HTML>
15539 <HEAD>
15540 <TITLE>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</TITLE>
15541 </HEAD>
15542 <BODY>
15543 <H1>LDAP FEATURE: Disable-Ad-Hoc-Space-Substitution</H1>
15545 Spaces in your input are normally handled specially.
15546 Each space character is replaced
15549 <CENTER><SAMP>*&nbsp;&lt;SPACE&gt;</SAMP></CENTER>
15551 in the search query (but not by &quot;* &lt;SPACE&gt; *&quot;).
15552 The reason this is done is so the input string
15554 <CENTER><SAMP>Greg Donald</SAMP></CENTER>
15556 (which is converted to &quot;Greg* Donald&quot;) will match
15557 the names &quot;Greg Donald&quot;,
15558 &quot;Gregory Donald&quot;, &quot;Greg F. Donald&quot;, and
15559 &quot;Gregory F Donald&quot;; but it won't match &quot;Greg McDonald&quot;.
15560 If the &quot;Search-Rule&quot; you were using was &quot;begins-with&quot;,
15561 then it would also match the name &quot;Greg Donaldson&quot;.
15563 Turning on this feature will disable this substitution.
15565 &lt;End of help on this topic&gt;
15566 </BODY>
15567 </HTML>
15568 ====== h_config_ldap_searchtypes =======
15569 <HTML>
15570 <HEAD>
15571 <TITLE>LDAP OPTION: Search-Type</TITLE>
15572 </HEAD>
15573 <BODY>
15574 <H1>LDAP OPTION: Search-Type</H1>
15576 This affects the way that LDAP searches are done.
15577 In particular, this tells the server where to look for the string to be matched.
15578 If set to &quot;name&quot; then the string that is being searched for will
15579 be compared with the string in the
15580 &quot;Name&quot; field on the server
15581 (technically, it is the &quot;commonname&quot; field on the server).
15582 &quot;Surname&quot; means we're looking for a
15583 match in the &quot;Surname&quot; field on the
15584 server (actually the &quot;sn&quot; field).
15585 &quot;Givenname&quot; really is &quot;givenname&quot;
15586 and &quot;email&quot; is the electronic mail address (this is actually the field
15587 called &quot;mail&quot; or &quot;electronicmail&quot; on the server).
15588 The other three types are combinations of
15589 the types listed so far. &quot;Name-or-email&quot;
15590 means the string should appear
15591 in either the &quot;name&quot; field OR the &quot;email&quot; field.
15592 Likewise, &quot;surname-or-givenname&quot;
15593 means &quot;surname&quot; OR &quot;givenname&quot;
15594 and &quot;sur-or-given-or-name-or-email&quot; means the obvious thing.
15596 This search TYPE is combined with the
15597 search <A HREF="h_config_ldap_searchrules">RULE</A>
15598 to form the actual search query.
15600 The usual default value for this
15601 option is &quot;sur-or-given-or-name-or-email&quot;.
15602 This type of search may be slow on some servers.
15603 Try &quot;name-or-email&quot;, which is often
15604 faster, or just &quot;name&quot; if the performance seems to be a problem.
15606 Some servers have been configured with different attribute names for
15607 these four fields.
15608 In other words, instead of using the attribute name &quot;mail&quot;
15609 for the email address field, the server might be configured to use something
15610 else, for example, &quot;rfc822mail&quot; or &quot;internetemailaddress&quot;.
15611 Alpine can be configured to use these different attribute names by using
15612 the four configuration options:
15613 <P><UL>
15614 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15615 </UL>
15616 <P><UL>
15617 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15618 </UL>
15619 <P><UL>
15620 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15621 </UL>
15622 <P><UL>
15623 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15624 </UL>
15626 &lt;End of help on this topic&gt;
15627 </BODY>
15628 </HTML>
15629 ====== h_config_ldap_searchrules =======
15630 <HTML>
15631 <HEAD>
15632 <TITLE>LDAP OPTION: Search-Rule</TITLE>
15633 </HEAD>
15634 <BODY>
15635 <H1>LDAP OPTION: Search-Rule</H1>
15637 This affects the way that LDAP searches are done.
15638 If set to &quot;equals&quot; then
15639 only exact matches count.
15640 &quot;Contains&quot; means that the string you type in
15641 is a substring of what you are matching against.
15642 &quot;Begins-with&quot; and &quot;ends-with&quot;
15643 mean that the string starts or ends with the string you type in.
15645 Spaces in your input are normally handled specially, but you can turn that
15646 special handling off with the
15647 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15648 feature.
15650 The usual default value for this option is &quot;begins-with&quot;.
15652 &lt;End of help on this topic&gt;
15653 </BODY>
15654 </HTML>
15655 ======= h_config_ldap_email_attr =======
15656 <HTML>
15657 <HEAD>
15658 <TITLE>LDAP OPTION: EmailAttribute</TITLE>
15659 </HEAD>
15660 <BODY>
15661 <H1>LDAP OPTION: EmailAttribute</H1>
15663 This is the name of the attribute that is searched for when looking for
15664 an email address. The default value for this option is &quot;mail&quot; or
15665 &quot;electronicmail&quot;.
15666 If the server you are using uses a different attribute name for the email
15667 address, put that attribute name here.
15669 This will affect the search filter used if your Search-Type is one that
15670 contains a search for &quot;email&quot;.
15671 It will also cause the attribute value matching this attribute name to be used
15672 as the email address when you look up an entry from the composer.
15674 &lt;End of help on this topic&gt;
15675 </BODY>
15676 </HTML>
15677 ======= h_config_ldap_sn_attr =======
15678 <HTML>
15679 <HEAD>
15680 <TITLE>LDAP OPTION: SurnameAttribute</TITLE>
15681 </HEAD>
15682 <BODY>
15683 <H1>LDAP OPTION: SurnameAttribute</H1>
15685 This is the name of the attribute that is searched for when looking for
15686 the surname of the entry. The default value for this option is &quot;sn&quot;.
15687 If the server you are using uses a different attribute name for the surname,
15688 put that attribute name here.
15689 This will affect the search filter used if your Search-Type is one that
15690 contains a search for &quot;surname&quot;.
15692 &lt;End of help on this topic&gt;
15693 </BODY>
15694 </HTML>
15695 ======= h_config_ldap_gn_attr =======
15696 <HTML>
15697 <HEAD>
15698 <TITLE>LDAP OPTION: GivennameAttribute</TITLE>
15699 </HEAD>
15700 <BODY>
15701 <H1>LDAP OPTION: GivennameAttribute</H1>
15703 This is the name of the attribute that is searched for when looking for
15704 the given name of the entry. The default value for this option is &quot;givenname&quot;.
15705 If the server you are using uses a different attribute name for the given name,
15706 put that attribute name here.
15707 This will affect the search filter used if your Search-Type is one that
15708 contains a search for &quot;givenname&quot;.
15710 &lt;End of help on this topic&gt;
15711 </BODY>
15712 </HTML>
15713 ======= h_config_ldap_cn_attr =======
15714 <HTML>
15715 <HEAD>
15716 <TITLE>LDAP OPTION: NameAttribute</TITLE>
15717 </HEAD>
15718 <BODY>
15719 <H1>LDAP OPTION: NameAttribute</H1>
15721 This is the name of the attribute that is searched for when looking for
15722 the name of the entry. The default value for this option is &quot;cn&quot;, which
15723 stands for common name.
15724 If the server you are using uses a different attribute name for the name,
15725 put that attribute name here.
15726 This will affect the search filter used if your Search-Type is one that
15727 contains a search for &quot;name&quot;.
15729 &lt;End of help on this topic&gt;
15730 </BODY>
15731 </HTML>
15732 ======= h_config_ldap_time =======
15733 <HTML>
15734 <HEAD>
15735 <TITLE>LDAP OPTION: Timelimit</TITLE>
15736 </HEAD>
15737 <BODY>
15738 <H1>LDAP OPTION: Timelimit</H1>
15740 This places a limit on the number of seconds the LDAP search will continue.
15741 The default is 30 seconds. A value of 0 means no limit. Note that some servers
15742 may place limits of their own on searches.
15744 &lt;End of help on this topic&gt;
15745 </BODY>
15746 </HTML>
15747 ======= h_config_ldap_size =======
15748 <HTML>
15749 <HEAD>
15750 <TITLE>LDAP OPTION: Sizelimit</TITLE>
15751 </HEAD>
15752 <BODY>
15753 <H1>LDAP OPTION: Sizelimit</H1>
15755 This places a limit on the number of entries returned by the LDAP server.
15756 A value of 0 means no limit. The default is 0. Note that some servers
15757 may place limits of their own on searches.
15759 &lt;End of help on this topic&gt;
15760 </BODY>
15761 </HTML>
15762 ======= h_config_ldap_cust =======
15763 <HTML>
15764 <HEAD>
15765 <TITLE>LDAP OPTION: Custom-Search-Filter</TITLE>
15766 </HEAD>
15767 <BODY>
15768 <H1>LDAP OPTION: Custom-Search-Filter</H1>
15770 This one is for advanced users only! If you define this, then the
15771 &quot;Search-Type&quot; and &quot;Search-Rule&quot; defined are both ignored.
15772 However, the feature
15773 <A HREF="h_config_ldap_opts_nosub">&quot;Disable-Ad-Hoc-Space-Substitution&quot;</A>
15774 is still in effect.
15775 That is, the space substitution will take place even in a custom filter unless
15776 you disable it.
15778 If your LDAP service stops working and you suspect it might be because
15779 of your custom filter, just delete this filter and try using the
15780 &quot;Search-Type&quot; and &quot;Search-Rule&quot; instead.
15781 Another option that sometimes causes trouble is the
15782 <A HREF="h_config_ldap_base">&quot;Search-Base&quot;</A> option.
15784 This variable may be set to the string representation of an LDAP search
15785 filter (see RFC1960). In the places where you want the address string to be
15786 substituted in, put a '%s' in this filter string. Here are some examples:
15788 A &quot;Search-Type&quot; of &quot;name&quot; with &quot;Search-Rule&quot; of &quot;begins-with&quot;
15789 is equivalent to the &quot;Custom-Search-Filter&quot;
15790 <PRE>
15791      (cn=%s*)
15792 </PRE>
15793 When you try to match against the string &quot;string&quot; the program replaces
15794 the &quot;%s&quot; with &quot;string&quot; (without the quotes). You may have multiple &quot;%s&quot;'s and
15795 they will all be replaced with the string. There is a limit of 10 &quot;%s&quot;'s.
15797 A &quot;Search-Type&quot; of &quot;name-or-email&quot; with &quot;Search-Rule&quot;
15798 of &quot;contains&quot; is equivalent to
15799 <PRE>
15800      (|(cn=*%s*)(mail=*%s*))
15801 </PRE>
15803 If your server uses a different attribute <EM>name</EM> than
15804 Alpine uses by default,
15805 (for example, it uses &quot;rfc822mail&quot; instead of &quot;mail&quot;),
15806 then you may be able to use one or more of the four attribute configuration
15807 options instead of defining a custom filter:
15808 <P><UL>
15809 <LI><A HREF="h_config_ldap_email_attr">&quot;EmailAttribute&quot;</A>
15810 </UL>
15811 <P><UL>
15812 <LI><A HREF="h_config_ldap_cn_attr">&quot;NameAttribute&quot;</A>
15813 </UL>
15814 <P><UL>
15815 <LI><A HREF="h_config_ldap_sn_attr">&quot;SurnameAttribute&quot;</A>
15816 </UL>
15817 <P><UL>
15818 <LI><A HREF="h_config_ldap_gn_attr">&quot;GivennameAttribute&quot;</A>
15819 </UL>
15821 &lt;End of help on this topic&gt;
15822 </BODY>
15823 </HTML>
15824 ======= h_composer_abook_comment =======
15825 <HTML>
15826 <HEAD>
15827 <TITLE>Addressbook Comment Explained</TITLE>
15828 </HEAD>
15829 <BODY>
15830 This is a comment to help you remember what this entry is. The WhereIs
15831 command searches comments so that it is easier to find an entry with a comment
15832 you know about attached to it. This field is not used in the outgoing message.
15834 Look <A HREF="h_edit_nav_cmds">here</A>
15835 to see the available Editing and Navigation commands.
15837 &lt;End of help on this topic&gt;
15838 </BODY>
15839 </HTML>
15840 ======= h_composer_abook_addrs =======
15841 <HTML>
15842 <HEAD>
15843 <TITLE>Addressbook Lists</TITLE>
15844 </HEAD>
15845 <BODY>
15846 <H1>Addressbook Lists</H1>
15848 This is a list of addresses to send to when sending to this address book
15849 entry.  Each member of the list may be an address or another nickname from
15850 any of your address books.  If it is an address, it is OK to include the
15851 full name field as well as the electronic address portion of that address.
15852 For example, the following are all legitimate entries in this field:
15854 <DL><DT>&nbsp;</DT>
15855 <DD>john&nbsp;&nbsp;&nbsp;&nbsp;(a nickname in your address book)
15856 <DD>jdoe@some.domain
15857 <DD>John Doe &lt;jdoe@some.domain&gt;
15858 </DL>
15860 The addresses should be listed separated by commas, just like you would
15861 enter them from the composer.
15865 The only difference between a distribution list and a simple entry with a
15866 single address, is that a distribution list has more than one address   
15867 listed in the Addresses: field, whereas a simple personal entry has just  
15868 one address.
15872 For individual address book entries, if there is a full name in the
15873 Fullname: field (filling in the Fullname: field is not required), it is
15874 used.  If the full name is specified in the Address: field and not in the
15875 Fullname: field, then the full name from the Address: field is used.
15879 If you type the nickname of a distribution list from one of your address 
15880 books in the Lcc: field, then the full name of that list is used in the  
15881 To: field.  If you put a list in the To: or Cc: fields, that list will be
15882 expanded into all of its addresses.  If the list has a full name, then
15883 that will appear at the beginning of the addresses.
15885 <DL><DT>&nbsp;</DT>
15886 <DD>Sewing Club &lt;john@somewhere&gt;, nancy@something.else, Sal
15887 &lt;sal@here.there&gt;
15888 </DL>
15890 If the first address in the distribution list also has a full name, then
15891 the list full name and that full name are combined into something like the
15892 following:
15894 <DL><DT>&nbsp;</DT>
15895 <DD>Sewing Club -- John Smith &lt;john@somewhere&gt;
15896 </DL>
15899 If you specify a list via Lcc, the full name is used in the To: line.  If
15900 you specify a list in the To: or Cc: fields, then it uses the same method
15901 as for individual entries for filling in the full name.
15905 For help with editing and navigation commands, check the Help for the
15906 Nickname: field.
15909 &lt;End of help on this topic&gt;
15910 </BODY>
15911 </HTML>
15912 ======= h_config_role_nick =======
15913 <HTML>
15914 <HEAD>
15915 <TITLE>Nickname Explained</TITLE>
15916 </HEAD>
15917 <BODY>
15918 <H1>Nickname Explained</H1>
15920 This is a nickname to help you.
15921 You should have a different nickname for each role you define.
15922 The nickname will be used in the SETUP ROLE RULES screen to allow you to
15923 pick a role to edit.
15924 It will also be used when you send a message to let you know you are
15925 sending with a different role than you use by default, and
15926 it will be useful for choosing a role when composing with the Role command
15927 or when composing with one of the Role Uses set to With Confirmation.
15928 This field is not used in the outgoing message.
15930 Look <A HREF="h_edit_nav_cmds">here</A>
15931 to see the available Editing and Navigation commands.
15933 &lt;End of help on this topic&gt;
15934 </BODY>
15935 </HTML>
15936 ======= h_config_role_comment =======
15937 <HTML>
15938 <HEAD>
15939 <TITLE>Comment Explained</TITLE>
15940 </HEAD>
15941 <BODY>
15942 <H1>Comment Explained</H1>
15944 This is a comment to help you.
15945 This comment does not play any functional role, it is simply an optional
15946 comment to help you remember what the rule is for.
15948 Look <A HREF="h_edit_nav_cmds">here</A>
15949 to see the available Editing and Navigation commands.
15951 &lt;End of help on this topic&gt;
15952 </BODY>
15953 </HTML>
15954 ======= h_config_other_nick =======
15955 <HTML>
15956 <HEAD>
15957 <TITLE>Nickname Explained</TITLE>
15958 </HEAD>
15959 <BODY>
15960 <H1>Nickname Explained</H1>
15962 This is a nickname to help you.
15963 You should have a different nickname for each rule you define.
15964 The nickname will be used in the SETUP OTHER RULES screen to allow you to
15965 pick a rule to edit.
15967 Look <A HREF="h_edit_nav_cmds">here</A>
15968 to see the available Editing and Navigation commands.
15970 &lt;End of help on this topic&gt;
15971 </BODY>
15972 </HTML>
15973 ======= h_config_score_nick =======
15974 <HTML>
15975 <HEAD>
15976 <TITLE>Nickname Explained</TITLE>
15977 </HEAD>
15978 <BODY>
15979 <H1>Nickname Explained</H1>
15981 This is a nickname to help you.
15982 You should have a different nickname for each scoring rule you define.
15983 The nickname will be used in the SETUP SCORING RULES screen to allow you to
15984 pick a rule to edit.
15986 Look <A HREF="h_edit_nav_cmds">here</A>
15987 to see the available Editing and Navigation commands.
15989 &lt;End of help on this topic&gt;
15990 </BODY>
15991 </HTML>
15992 ======= h_config_incol_nick =======
15993 <HTML>
15994 <HEAD>
15995 <TITLE>Nickname Explained</TITLE>
15996 </HEAD>
15997 <BODY>
15998 <H1>Nickname Explained</H1>
16000 This is a nickname to help you.
16001 You should have a different nickname for each color rule you define.
16002 The nickname will be used in the SETUP INDEX COLOR RULES screen to allow you to
16003 pick a rule to edit.
16005 Look <A HREF="h_edit_nav_cmds">here</A>
16006 to see the available Editing and Navigation commands.
16008 &lt;End of help on this topic&gt;
16009 </BODY>
16010 </HTML>
16011 ======= h_config_filt_nick =======
16012 <HTML>
16013 <HEAD>
16014 <TITLE>Nickname Explained</TITLE>
16015 </HEAD>
16016 <BODY>
16017 <H1>Nickname Explained</H1>
16019 This is a nickname to help you.
16020 You should have a different nickname for each filtering rule you define.
16021 The nickname will be used in the SETUP FILTERING RULES screen to allow you to
16022 pick a rule to edit.
16024 Look <A HREF="h_edit_nav_cmds">here</A>
16025 to see the available Editing and Navigation commands.
16027 &lt;End of help on this topic&gt;
16028 </BODY>
16029 </HTML>
16030 ======= h_config_score_topat =======
16031 <HTML>
16032 <HEAD>
16033 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16034 </HEAD>
16035 <BODY>
16036 <H1>&quot;To:&quot; Pattern Explained</H1>
16038 Any text you enter as the &quot;To pattern&quot;
16039 will be compared to the recipients from the To: line of
16040 the message being scored.
16041 When the text you entered matches
16042 all or part of the To: line of a message, then the Score Value
16043 you have specified will be added to the score for the message.
16044 (Any other non-blank parts of the Pattern must match, too.)
16047 You may enter a complete email address, part of an address, or a
16048 list of addresses or partial addresses.
16049 For example:
16052 <PRE>
16053  To pattern = friend@public.com
16055  To pattern = rated.net
16057  To pattern = xxx@adults.com
16058               admin@msn.com
16059               fool@motleyfool.com
16060 </PRE>
16063 Each of those are valid To patterns.
16066 Messages match those patterns if any of the
16067 addresses in the To: line of the message contains the pattern.
16068 If the pattern is a list of patterns
16069 (like the last example above) then it is a match if any of the patterns in
16070 the list match any of the addresses in the To: line.
16071 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16072 present for a match.
16073 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16074 address2 must be present.
16075 That is exactly what using a list does.)
16078 Some messages may be &quot;bounced&quot; to you, and will
16079 have a &quot;Resent-To:&quot; header line.
16080 If the message contains a Resent-To: line
16081 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16082 Alpine will look for
16083 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16084 the original To: line.
16087 When entering a pattern, you may choose an address from your address book
16088 with the &quot;T&quot; command.
16091 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16092 &quot;!&quot; &quot;toggle NOT&quot; command.
16093 This changes the meaning of the To pattern so that it has the opposite meaning.
16094 It will be considered a match if there are no matches between the
16095 addresses in the To: line and the list of To patterns.
16097 Don't make the mistake of putting the &quot;!&quot; in the data field for
16098 the pattern.
16099 For example, if you type the characters &quot;!frizzle&quot; into the To
16100 pattern, the pattern will look like:
16102 <PRE>
16103  To pattern = !frizzle
16104 </PRE>
16106 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16107 In order to match messages that do not have &quot;frizzle&quot; in
16108 their To field, first type the characters &quot;frizzle&quot; followed
16109 by carriage return for the value of the To pattern, then negate it
16110 by typing the &quot;!&quot; command.
16111 It should end up looking like
16113 <PRE>
16114  ! To pattern = frizzle
16115 </PRE>
16117 You are not limited to using the six standard header patterns that are
16118 normally shown (To, From, Sender, Cc, News, and Subject).
16119 You may add any other header to a Pattern by
16120 using the &quot;eXtraHdr&quot; command to specify a different
16121 message header line; and then the Add or Change command to fill in
16122 a pattern for the new header line, just like you would for a standard header.
16124 A technicality: Since comma is the character used to separate multiple
16125 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16126 you want to include a literal comma in the field.
16127 In other words, if you type a backslash followed by a comma it will
16128 be interpreted as a comma by Alpine, instead of as a separator between
16129 pattern values.
16130 All other backslashes are literal backslashes and should not be escaped.
16132 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16133 for more information on Patterns.
16135 Look <A HREF="h_edit_nav_cmds">here</A>
16136 to see the available Editing and Navigation commands.
16138 &lt;End of help on this topic&gt;
16139 </BODY>
16140 </HTML>
16141 ======= h_config_incol_topat =======
16142 <HTML>
16143 <HEAD>
16144 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16145 </HEAD>
16146 <BODY>
16147 <H1>&quot;To:&quot; Pattern Explained</H1>
16149 Any text you enter as the &quot;To pattern&quot;
16150 will be compared to the recipients from the To: lines of
16151 the messages in the index.
16152 When the text you entered matches
16153 all or part of the To: line of a message, then the Index Line Color you have
16154 specified will be used for that line in the index.
16155 (Any other non-blank parts of the Pattern must match, too.)
16158 You may enter a complete email address, part of an address, or a
16159 list of addresses or partial addresses.
16160 For example:
16163 <PRE>
16164  To pattern = friend@public.com
16165  To pattern = rated.net
16166  To pattern = xxx@adults.com
16167               admin@msn.com
16168               fool@motleyfool.com
16169 </PRE>
16172 Each of those are valid To patterns.
16175 Messages match those patterns if any of the
16176 addresses in the To: line of the message contains the pattern.
16177 If the pattern is a list of patterns
16178 (like the last example above) then it is a match if any of the patterns in
16179 the list match any of the addresses in the To: line.
16180 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16181 present for a match.
16182 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16183 address2 must be present.
16184 That is exactly what using a list does.)
16187 Some messages may be &quot;bounced&quot; to you, and will
16188 have a &quot;Resent-To:&quot; header line.
16189 If the message contains a Resent-To: line
16190 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16191 Alpine will look for
16192 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16193 the original To: line.
16196 When entering a pattern, you may choose an address from your address book
16197 with the &quot;T&quot; command.
16200 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16201 &quot;!&quot; &quot;toggle NOT&quot; command.
16202 This changes the meaning of the To pattern so that it has the opposite meaning.
16203 It will be considered a match if there are no matches between the
16204 addresses in the To: line and the list of To patterns.
16206 Don't make the mistake of putting the &quot;!&quot; in the data field for
16207 the pattern.
16208 For example, if you type the characters &quot;!frizzle&quot; into the To
16209 pattern, the pattern will look like:
16211 <PRE>
16212  To pattern = !frizzle
16213 </PRE>
16215 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16216 In order to match messages that do not have &quot;frizzle&quot; in
16217 their To field, first type the characters &quot;frizzle&quot; followed
16218 by carriage return for the value of the To pattern, then negate it
16219 by typing the &quot;!&quot; command.
16220 It should end up looking like
16222 <PRE>
16223  ! To pattern = frizzle
16224 </PRE>
16227 You are not limited to using the six standard header patterns that are
16228 normally shown (To, From, Sender, Cc, News, and Subject).
16229 You may add any other header to a Pattern by
16230 using the &quot;eXtraHdr&quot; command to specify a different
16231 message header line; and then the Add or Change command to fill in
16232 a pattern for the new header line, just like you would for a standard header.
16234 A technicality: Since comma is the character used to separate multiple
16235 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16236 you want to include a literal comma in the field.
16237 In other words, if you type a backslash followed by a comma it will
16238 be interpreted as a comma by Alpine, instead of as a separator between
16239 pattern values.
16240 All other backslashes are literal backslashes and should not be escaped.
16242 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16243 for more information on Patterns.
16245 Look <A HREF="h_edit_nav_cmds">here</A>
16246 to see the available Editing and Navigation commands.
16248 &lt;End of help on this topic&gt;
16249 </BODY>
16250 </HTML>
16251 ======= h_config_other_topat =======
16252 <HTML>
16253 <HEAD>
16254 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16255 </HEAD>
16256 <BODY>
16257 <H1>&quot;To:&quot; Pattern Explained</H1>
16259 For some of the OTHER RULES actions, there is no message that is being
16260 compared against.
16261 If that is the case, then only the Current Folder Type is checked.
16262 In particular, this To pattern is ignored.
16263 Actions that fall into this category include both
16264 Sort Order and Index Format.
16266 A technicality: Since comma is the character used to separate multiple
16267 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16268 you want to include a literal comma in the field.
16269 In other words, if you type a backslash followed by a comma it will
16270 be interpreted as a comma by Alpine, instead of as a separator between
16271 pattern values.
16272 All other backslashes are literal backslashes and should not be escaped.
16274 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16275 for more information on Patterns.
16277 Look <A HREF="h_edit_nav_cmds">here</A>
16278 to see the available Editing and Navigation commands.
16280 &lt;End of help on this topic&gt;
16281 </BODY>
16282 </HTML>
16283 ======= h_config_filt_topat =======
16284 <HTML>
16285 <HEAD>
16286 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16287 </HEAD>
16288 <BODY>
16289 <H1>&quot;To:&quot; Pattern Explained</H1>
16291 Any text you enter as the &quot;To pattern&quot;
16292 will be compared to the recipients from the To: line of
16293 messages when Alpine opens folders.
16294 When the text you entered matches
16295 all or part of the To: line of a message, then the Filter Action you have
16296 specified will be carried out.
16297 (Any other non-blank parts of the Pattern must match, too.)
16300 You may enter a complete email address, part of an address, or a
16301 list of addresses or partial addresses.
16302 For example:
16305 <PRE>
16306  To pattern = friend@public.com
16307  To pattern = rated.net
16308  To pattern = xxx@adults.com
16309               admin@msn.com
16310               fool@motleyfool.com
16311 </PRE>
16314 Each of those are valid To patterns.
16317 Messages match those patterns if any of the
16318 addresses in the To: line of the message contains the pattern.
16319 If the pattern is a list of patterns
16320 (like the last example above) then it is a match if any of the patterns in
16321 the list match any of the addresses in the To: line.
16322 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16323 present for a match.
16324 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16325 address2 must be present.
16326 That is exactly what using a list does.)
16329 Some messages may be &quot;bounced&quot; to you, and will
16330 have a &quot;Resent-To:&quot; header line.
16331 If the message contains a Resent-To: line
16332 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16333 Alpine will look for
16334 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16335 the original To: line.
16338 When entering a pattern, you may choose an address from your address book
16339 with the &quot;T&quot; command.
16342 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16343 &quot;!&quot; &quot;toggle NOT&quot; command.
16344 This changes the meaning of the To pattern so that it has the opposite meaning.
16345 It will be considered a match if there are no matches between the
16346 addresses in the To: line and the list of To patterns.
16348 Don't make the mistake of putting the &quot;!&quot; in the data field for
16349 the pattern.
16350 For example, if you type the characters &quot;!frizzle&quot; into the To
16351 pattern, the pattern will look like:
16353 <PRE>
16354  To pattern = !frizzle
16355 </PRE>
16357 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16358 In order to match messages that do not have &quot;frizzle&quot; in
16359 their To field, first type the characters &quot;frizzle&quot; followed
16360 by carriage return for the value of the To pattern, then negate it
16361 by typing the &quot;!&quot; command.
16362 It should end up looking like
16364 <PRE>
16365  ! To pattern = frizzle
16366 </PRE>
16369 You are not limited to using the six standard header patterns that are
16370 normally shown (To, From, Sender, Cc, News, and Subject).
16371 You may add any other header to a Pattern by
16372 using the &quot;eXtraHdr&quot; command to specify a different
16373 message header line; and then the Add or Change command to fill in
16374 a pattern for the new header line, just like you would for a standard header.
16376 A technicality: Since comma is the character used to separate multiple
16377 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16378 you want to include a literal comma in the field.
16379 In other words, if you type a backslash followed by a comma it will
16380 be interpreted as a comma by Alpine, instead of as a separator between
16381 pattern values.
16382 All other backslashes are literal backslashes and should not be escaped.
16384 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16385 for more information on Patterns.
16387 Look <A HREF="h_edit_nav_cmds">here</A>
16388 to see the available Editing and Navigation commands.
16390 &lt;End of help on this topic&gt;
16391 </BODY>
16392 </HTML>
16393 ======= h_config_role_topat =======
16394 <HTML>
16395 <HEAD>
16396 <TITLE>&quot;To:&quot; Pattern Explained</TITLE>
16397 </HEAD>
16398 <BODY>
16399 <H1>&quot;To:&quot; Pattern Explained</H1>
16401 Any text you enter as the &quot;To pattern&quot;
16402 will be compared to the recipients from the To: line of
16403 the message being replied to or forwarded.
16404 (Any other non-blank parts of the Pattern must match, too.)
16405 In the case of the Compose command, this pattern and the other header
16406 patterns are ignored.
16409 You may enter a complete email address, part of an address, or a
16410 list of addresses or partial addresses.
16411 For example:
16414 <PRE>
16415  To pattern = friend@public.com
16416  To pattern = rated.net
16417  To pattern = xxx@adults.com
16418               admin@msn.com
16419               fool@motleyfool.com
16420 </PRE>
16423 Each of those are valid To patterns.
16426 Messages match those patterns if any of the
16427 addresses in the To: line of the message contains the pattern.
16428 If the pattern is a list of patterns
16429 (like the last example above) then it is a match if any of the patterns in
16430 the list match any of the addresses in the To: line.
16431 (It is not possible to specify two addresses that must <EM>BOTH</EM> be
16432 present for a match.
16433 It is only possible to specify that <EM>EITHER</EM> address1 <EM>OR</EM>
16434 address2 must be present.
16435 That is exactly what using a list does.)
16438 Some messages may be &quot;bounced&quot; to you, and will
16439 have a &quot;Resent-To:&quot; header line.
16440 If the message contains a Resent-To: line
16441 and the feature <A HREF="h_config_use_resentto"><!--#echo var="FEAT_use-resent-to-in-rules"--></A> is turned on,
16442 Alpine will look for
16443 matches to your &quot;To patterns&quot; there, and <EM>NOT</EM> in
16444 the original To: line.
16447 When entering a pattern, you may choose an address from your address book
16448 with the &quot;T&quot; command.
16451 It is possible to add a <EM>NOT</EM> to the To Pattern meaning with the
16452 &quot;!&quot; &quot;toggle NOT&quot; command.
16453 This changes the meaning of the To pattern so that it has the opposite meaning.
16454 It will be considered a match if there are no matches between the
16455 addresses in the To: line and the list of To patterns.
16457 Don't make the mistake of putting the &quot;!&quot; in the data field for
16458 the pattern.
16459 For example, if you type the characters &quot;!frizzle&quot; into the To
16460 pattern, the pattern will look like:
16462 <PRE>
16463  To pattern = !frizzle
16464 </PRE>
16466 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16467 In order to match messages that do not have &quot;frizzle&quot; in
16468 their To field, first type the characters &quot;frizzle&quot; followed
16469 by carriage return for the value of the To pattern, then negate it
16470 by typing the &quot;!&quot; command.
16471 It should end up looking like
16473 <PRE>
16474  ! To pattern = frizzle
16475 </PRE>
16478 You are not limited to using the six standard header patterns that are
16479 normally shown (To, From, Sender, Cc, News, and Subject).
16480 You may add any other header to a Pattern by
16481 using the &quot;eXtraHdr&quot; command to specify a different
16482 message header line; and then the Add or Change command to fill in
16483 a pattern for the new header line, just like you would for a standard header.
16485 A technicality: Since comma is the character used to separate multiple
16486 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16487 you want to include a literal comma in the field.
16488 In other words, if you type a backslash followed by a comma it will
16489 be interpreted as a comma by Alpine, instead of as a separator between
16490 pattern values.
16491 All other backslashes are literal backslashes and should not be escaped.
16493 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16494 for more information on Patterns.
16496 Look <A HREF="h_edit_nav_cmds">here</A>
16497 to see the available Editing and Navigation commands.
16499 &lt;End of help on this topic&gt;
16500 </BODY>
16501 </HTML>
16502 ======= h_config_role_frompat =======
16503 <HTML>
16504 <HEAD>
16505 <TITLE>&quot;From:&quot; Pattern Explained</TITLE>
16506 </HEAD>
16507 <BODY>
16508 <H1>&quot;From:&quot; Pattern Explained</H1>
16510 This is just like the &quot;To pattern&quot; except that it is compared with
16511 the address in the From: line of the message
16512 instead of the addresses from the To: line.
16513 See the help for the To pattern for more information on header patterns.
16515 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16516 for more information on Patterns.
16518 Look <A HREF="h_edit_nav_cmds">here</A>
16519 to see the available Editing and Navigation commands.
16521 &lt;End of help on this topic&gt;
16522 </BODY>
16523 </HTML>
16524 ======= h_config_role_senderpat =======
16525 <HTML>
16526 <HEAD>
16527 <TITLE>&quot;Sender:&quot; Pattern Explained</TITLE>
16528 </HEAD>
16529 <BODY>
16530 <H1>&quot;Sender:&quot; Pattern Explained</H1>
16532 This is just like the &quot;To pattern&quot; except that it is compared with
16533 the address from the Sender: line of the message
16534 instead of the addresses from the To: line.
16535 See the help for the To pattern for more information on header patterns.
16537 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16538 for more information on Patterns.
16540 Look <A HREF="h_edit_nav_cmds">here</A>
16541 to see the available Editing and Navigation commands.
16543 &lt;End of help on this topic&gt;
16544 </BODY>
16545 </HTML>
16546 ======= h_config_role_ccpat =======
16547 <HTML>
16548 <HEAD>
16549 <TITLE>&quot;Cc:&quot; Pattern Explained</TITLE>
16550 </HEAD>
16551 <BODY>
16552 <H1>&quot;Cc:&quot; Pattern Explained</H1>
16554 This is just like the &quot;To pattern&quot; except that it is compared with
16555 the addresses from the Cc: line of the message
16556 instead of the addresses from the To: line.
16557 See the help for the To pattern for more information on header patterns.
16559 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16560 for more information on Patterns.
16562 Look <A HREF="h_edit_nav_cmds">here</A>
16563 to see the available Editing and Navigation commands.
16565 &lt;End of help on this topic&gt;
16566 </BODY>
16567 </HTML>
16568 ======= h_config_role_recippat =======
16569 <HTML>
16570 <HEAD>
16571 <TITLE>Recipient Pattern Explained</TITLE>
16572 </HEAD>
16573 <BODY>
16574 <H1>Recipient Pattern Explained</H1>
16576 This is just like the &quot;To pattern&quot; except that it is compared with
16577 the addresses from both the To: line and the Cc: line of the
16578 message instead of just the addresses from the To: line.
16579 In other words, it is considered a match if the pattern matches
16580 <EM>EITHER</EM> an address in the To: line <EM>OR</EM> an address
16581 in the Cc: line.
16582 (Notice that defining the Recipient pattern does not have the same
16583 effect as defining both the To and Cc patterns.
16584 Recipient is To <EM>OR</EM> Cc; not To <EM>AND</EM> Cc.
16585 It is equivalent to having two different rules;
16586 one with a To pattern and the other with the same Cc pattern.)
16588 A technicality: Since comma is the character used to separate multiple
16589 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16590 you want to include a literal comma in the field.
16591 In other words, if you type a backslash followed by a comma it will
16592 be interpreted as a comma by Alpine, instead of as a separator between
16593 pattern values.
16594 All other backslashes are literal backslashes and should not be escaped.
16596 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16597 for more information on Patterns.
16599 Look <A HREF="h_edit_nav_cmds">here</A>
16600 to see the available Editing and Navigation commands.
16602 &lt;End of help on this topic&gt;
16603 </BODY>
16604 </HTML>
16605 ======= h_config_role_particpat =======
16606 <HTML>
16607 <HEAD>
16608 <TITLE>Participant Pattern Explained</TITLE>
16609 </HEAD>
16610 <BODY>
16611 <H1>Participant Pattern Explained</H1>
16613 This is just like the &quot;To pattern&quot; except that it is compared with
16614 the addresses from the From: line, the To: line, and the Cc: line of the
16615 message instead of just the addresses from the To: line.
16616 In other words, it is considered a match if the pattern matches
16617 <EM>EITHER</EM> an address in the From: line, <EM>OR</EM> an address
16618 in the To: line, <EM>OR</EM> an address in the Cc: line.
16619 (Notice that defining the Participant pattern does not have the same
16620 effect as defining all of the From, To, and Cc patterns.
16621 Participant is From <EM>OR</EM> To <EM>OR</EM> Cc; not
16622 From <EM>AND</EM> To <EM>AND</EM> Cc.
16623 It is equivalent to having three different rules;
16624 one with a From pattern, another with the same To pattern, and a third with
16625 the same Cc pattern.)
16627 A technicality: Since comma is the character used to separate multiple
16628 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16629 you want to include a literal comma in the field.
16630 In other words, if you type a backslash followed by a comma it will
16631 be interpreted as a comma by Alpine, instead of as a separator between
16632 pattern values.
16633 All other backslashes are literal backslashes and should not be escaped.
16635 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16636 for more information on Patterns.
16638 Look <A HREF="h_edit_nav_cmds">here</A>
16639 to see the available Editing and Navigation commands.
16641 &lt;End of help on this topic&gt;
16642 </BODY>
16643 </HTML>
16644 ======= h_config_role_newspat =======
16645 <HTML>
16646 <HEAD>
16647 <TITLE>News Pattern Explained</TITLE>
16648 </HEAD>
16649 <BODY>
16650 <H1>News Pattern Explained</H1>
16652 If this pattern is non-blank, then for this rule to be considered a
16653 match, at least one of the newsgroups from
16654 the Newsgroups line of the message must match this pattern.
16655 If this pattern is a list of patterns, then at least one of the
16656 newsgroups must match at least one of the patterns.
16657 (Any other non-blank parts of the Pattern must match, too.)
16659 It is possible to add a <EM>NOT</EM> to the News Pattern meaning with the
16660 &quot;!&quot; &quot;toggle NOT&quot; command.
16661 This changes the meaning of the News pattern so that it has the opposite meaning.
16662 It will be considered a match if there are no matches between the
16663 addresses in the Newsgroups: line and the list of News patterns.
16665 Don't make the mistake of putting the &quot;!&quot; in the data field for
16666 the pattern.
16667 For example, if you type the characters &quot;!frizzle&quot; into the News
16668 pattern, the pattern will look like:
16670 <PRE>
16671  News pattern = !frizzle
16672 </PRE>
16674 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16675 In order to match messages that do not have &quot;frizzle&quot; in
16676 their Newsgroups header, first type the characters &quot;frizzle&quot; followed
16677 by carriage return for the value of the News pattern, then negate it
16678 by typing the &quot;!&quot; command.
16679 It should end up looking like
16681 <PRE>
16682  ! News pattern = frizzle
16683 </PRE>
16685 A technicality: Since comma is the character used to separate multiple
16686 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16687 you want to include a literal comma in the field.
16688 In other words, if you type a backslash followed by a comma it will
16689 be interpreted as a comma by Alpine, instead of as a separator between
16690 pattern values.
16691 All other backslashes are literal backslashes and should not be escaped.
16694 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16695 for more information on Patterns.
16697 Look <A HREF="h_edit_nav_cmds">here</A>
16698 to see the available Editing and Navigation commands.
16700 &lt;End of help on this topic&gt;
16701 </BODY>
16702 </HTML>
16703 ======= h_config_role_subjpat =======
16704 <HTML>
16705 <HEAD>
16706 <TITLE>&quot;Subject:&quot; Pattern Explained</TITLE>
16707 </HEAD>
16708 <BODY>
16709 <H1>&quot;Subject:&quot; Pattern Explained</H1>
16711 This is similar to the other parts of the Pattern.
16712 It is compared with
16713 the contents from the Subject of the message.
16715 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16716 for more information on Patterns.
16718 It is possible to add a <EM>NOT</EM> to the Subject Pattern meaning with the
16719 &quot;!&quot; &quot;toggle NOT&quot; command.
16720 This changes the meaning of the Subject pattern so that it has the opposite meaning.
16721 It will be considered a match if there are no matches between the
16722 text in the Subject: line and the list of Subject patterns.
16725 If you wish to have a header pattern that is not one of the six standard
16726 header patterns, you may add it with the &quot;eXtraHdr&quot; command.
16728 A technicality: Since comma is the character used to separate multiple
16729 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16730 you want to include a literal comma in the field.
16731 In other words, if you type a backslash followed by a comma it will
16732 be interpreted as a comma by Alpine, instead of as a separator between
16733 pattern values.
16734 All other backslashes are literal backslashes and should not be escaped.
16736 Look <A HREF="h_edit_nav_cmds">here</A>
16737 to see the available Editing and Navigation commands.
16739 &lt;End of help on this topic&gt;
16740 </BODY>
16741 </HTML>
16742 ======= h_config_role_alltextpat =======
16743 <HTML>
16744 <HEAD>
16745 <TITLE>AllText Pattern Explained</TITLE>
16746 </HEAD>
16747 <BODY>
16748 <H1>AllText Pattern Explained</H1>
16750 This is similar to the header patterns.
16751 Instead of comparing with text in a particular header field it 
16752 is compared with all of the text in the message header and body.
16754 It is possible to add a <EM>NOT</EM> to the AllText Pattern meaning with the
16755 &quot;!&quot; &quot;toggle NOT&quot; command.
16756 This changes the meaning of the AllText pattern so that it has the opposite meaning.
16757 It will be considered a match if there are no matches between the
16758 text of the message and the list of AllText patterns.
16760 Don't make the mistake of putting the &quot;!&quot; in the data field for
16761 the pattern.
16762 For example, if you type the characters &quot;!frizzle&quot; into the AllText
16763 pattern, the pattern will look like:
16765 <PRE>
16766  AllText pattern = !frizzle
16767 </PRE>
16769 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16770 In order to match messages that do not have &quot;frizzle&quot; in
16771 the text of the message, first type the characters &quot;frizzle&quot; followed
16772 by carriage return for the value of the AllText pattern, then negate it
16773 by typing the &quot;!&quot; command.
16774 It should end up looking like
16776 <PRE>
16777  ! AllText pattern = frizzle
16778 </PRE>
16780 It is possible that you may notice degraded performance when using
16781 AllText Patterns.
16783 A technicality: Since comma is the character used to separate multiple
16784 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16785 you want to include a literal comma in the field.
16786 In other words, if you type a backslash followed by a comma it will
16787 be interpreted as a comma by Alpine, instead of as a separator between
16788 pattern values.
16789 All other backslashes are literal backslashes and should not be escaped.
16791 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16792 for more information on Patterns.
16794 Look <A HREF="h_edit_nav_cmds">here</A>
16795 to see the available Editing and Navigation commands.
16797 &lt;End of help on this topic&gt;
16798 </BODY>
16799 </HTML>
16800 ======= h_config_role_bodytextpat =======
16801 <HTML>
16802 <HEAD>
16803 <TITLE>BodyText Pattern Explained</TITLE>
16804 </HEAD>
16805 <BODY>
16806 <H1>BodyText Pattern Explained</H1>
16808 This is similar to the header patterns.
16809 Instead of comparing with text in a particular header field it 
16810 is compared with all of the text in the message body.
16812 It is possible to add a <EM>NOT</EM> to the BodyText Pattern meaning with the
16813 &quot;!&quot; &quot;toggle NOT&quot; command.
16814 This changes the meaning of the BodyText pattern so that it has the opposite meaning.
16815 It will be considered a match if there are no matches between the
16816 text of the body of the message and the list of BodyText patterns.
16818 Don't make the mistake of putting the &quot;!&quot; in the data field for
16819 the pattern.
16820 For example, if you type the characters &quot;!frizzle&quot; into the BodyText
16821 pattern, the pattern will look like:
16823 <PRE>
16824  BdyText pattern = !frizzle
16825 </PRE>
16827 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16828 In order to match messages that do not have &quot;frizzle&quot; in
16829 their BodyText, first type the characters &quot;frizzle&quot; followed
16830 by carriage return for the value of the BodyText pattern, then negate it
16831 by typing the &quot;!&quot; command.
16832 It should end up looking like
16834 <PRE>
16835  ! BodyText pattern = frizzle
16836 </PRE>
16838 It is possible that you may notice degraded performance when using
16839 BodyText Patterns.
16841 A technicality: Since comma is the character used to separate multiple
16842 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16843 you want to include a literal comma in the field.
16844 In other words, if you type a backslash followed by a comma it will
16845 be interpreted as a comma by Alpine, instead of as a separator between
16846 pattern values.
16847 All other backslashes are literal backslashes and should not be escaped.
16849 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16850 for more information on Patterns.
16852 Look <A HREF="h_edit_nav_cmds">here</A>
16853 to see the available Editing and Navigation commands.
16855 &lt;End of help on this topic&gt;
16856 </BODY>
16857 </HTML>
16858 ======= h_config_role_charsetpat =======
16859 <HTML>
16860 <HEAD>
16861 <TITLE>Character Set Pattern Explained</TITLE>
16862 </HEAD>
16863 <BODY>
16864 <H1>Character Set Pattern Explained</H1>
16866 A message may use one or more character sets.
16867 This part of the Pattern matches messages that make use of
16868 certain specified character sets.
16869 It will be considered a match if a message uses any of the character
16870 sets in the list you give here.
16873 When filling in a value for this field, you may use
16874 the &quot;T&quot; command, which presents you with a large list of
16875 possible character sets to choose from.
16876 You may also just type in the name of a character set, and it need not
16877 be one that Alpine knows about.
16880 Besides actual character set names (for example, ISO-8859-7, KOI8-R, or
16881 GB2312) you may also use some shorthand names that Alpine provides.
16882 These names are more understandable shorthand names for sets of 
16883 character set names.
16884 Two examples are &quot;Cyrillic&quot; and &quot;Greek&quot;.
16885 Selecting one of these shorthand names is equivalent to selecting all of
16886 the character sets that make up the set.
16887 You can see all of these shorthand names and the lists of character sets
16888 they stand for by typing the &quot;T&quot; command.
16891 For the purposes of this Pattern,
16892 Alpine will search through a message for all of the text parts and
16893 collect the character sets declared for each part.
16894 It will also look in the Subject line for a character set used there.
16895 Alpine does not actually look at the text of the message or the text
16896 of the Subject to determine if a declared character set is actually
16897 used, it looks only at the declarations themselves in the MIME part headers
16898 and in the Subject.
16901 It is possible to add a <EM>NOT</EM> to the Character Set Pattern meaning with the
16902 &quot;!&quot; &quot;toggle NOT&quot; command.
16903 This changes the meaning of the Character Set pattern so that
16904 it has the opposite meaning.
16905 It will be considered a match if none of the character sets in the
16906 list are used in a message.
16908 Don't make the mistake of putting the &quot;!&quot; in the data field for
16909 the pattern.
16910 For example, if you type the characters &quot;!GB2312&quot; into the
16911 Character Set pattern, the pattern will look like:
16913 <PRE>
16914  Charset pattern = !GB2312
16915 </PRE>
16917 This means you want to match the 7 character sequence &quot;!GB2312&quot;.
16918 In order to match messages that do not have the
16919 character set &quot;GB2312&quot;
16920 set, first type the characters &quot;GB2312&quot; followed
16921 by carriage return for the value of the Character Set pattern, then negate it
16922 by typing the &quot;!&quot; command.
16923 It should end up looking like
16925 <PRE>
16926  ! Charset pattern = GB2312
16927 </PRE>
16929 A technicality: Since comma is the character used to separate multiple
16930 values in a pattern field, you have to escape comma with a backslash (&#92;) if
16931 you want to include a literal comma in the field.
16932 In other words, if you type a backslash followed by a comma it will
16933 be interpreted as a comma by Alpine, instead of as a separator between
16934 pattern values.
16935 All other backslashes are literal backslashes and should not be escaped.
16937 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
16938 for more information on Patterns.
16940 Look <A HREF="h_edit_nav_cmds">here</A>
16941 to see the available Editing and Navigation commands.
16943 &lt;End of help on this topic&gt;
16944 </BODY>
16945 </HTML>
16946 ======= h_config_role_keywordpat =======
16947 <HTML>
16948 <HEAD>
16949 <TITLE>Keyword Pattern Explained</TITLE>
16950 </HEAD>
16951 <BODY>
16952 <H1>Keyword Pattern Explained</H1>
16954 A folder may have user-defined keywords.
16955 These are similar to the Important flag, which the user may set using the
16956 Flag command.
16957 The difference is that the Important flag is always present for each folder.
16958 User-defined keywords are picked by the user.
16959 You may add new keywords by defining them in the
16960 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
16961 After you have added a potential keyword with the <!--#echo var="VAR_keywords"--> option,
16962 the Flag command may be used to set or clear the keyword on individual messages.
16963 If you have given a keyword a nickname when configuring it,
16964 that nickname may be used instead of the actual keyword.
16967 When filling in a value for this field, it may be easiest to use
16968 the &quot;T&quot; command, which presents you with a list of the keywords
16969 you have defined to choose from.
16972 This part of the Pattern matches messages with certain keywords set.
16973 It will be considered a match if a message has any of the keywords in the
16974 list set.
16975 A keyword that you have not defined using the
16976 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16977 will not be a match.
16980 It is possible to add a <EM>NOT</EM> to the Keyword Pattern meaning with the
16981 &quot;!&quot; &quot;toggle NOT&quot; command.
16982 This changes the meaning of the Keyword pattern so that it has the opposite meaning.
16983 It will be considered a match if none of the keywords in the list are set
16984 for a message.
16985 A keyword that you have not defined using the
16986 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen
16987 will not be a match, so a <EM>NOT</EM> of that keyword does match.
16989 Don't make the mistake of putting the &quot;!&quot; in the data field for
16990 the pattern.
16991 For example, if you type the characters &quot;!frizzle&quot; into the Keyword
16992 pattern, the pattern will look like:
16994 <PRE>
16995  Keyword pattern = !frizzle
16996 </PRE>
16998 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
16999 In order to match messages that do not have the keyword &quot;frizzle&quot;
17000 set, first type the characters &quot;frizzle&quot; followed
17001 by carriage return for the value of the Keyword pattern, then negate it
17002 by typing the &quot;!&quot; command.
17003 It should end up looking like
17005 <PRE>
17006  ! Keyword pattern = frizzle
17007 </PRE>
17009 A technicality: Since comma is the character used to separate multiple
17010 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17011 you want to include a literal comma in the field.
17012 In other words, if you type a backslash followed by a comma it will
17013 be interpreted as a comma by Alpine, instead of as a separator between
17014 pattern values.
17015 All other backslashes are literal backslashes and should not be escaped.
17017 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17018 for more information on Patterns.
17020 Look <A HREF="h_edit_nav_cmds">here</A>
17021 to see the available Editing and Navigation commands.
17023 &lt;End of help on this topic&gt;
17024 </BODY>
17025 </HTML>
17026 ======= h_config_role_arbpat =======
17027 <HTML>
17028 <HEAD>
17029 <TITLE>Extra Header Patterns Explained</TITLE>
17030 </HEAD>
17031 <BODY>
17032 <H1>Extra Header Patterns Explained</H1>
17034 The header patterns that come after the Participant pattern but before the 
17035 AllText pattern are extra header patterns that you have added to a rule's
17036 Pattern. These are just like the other header patterns except that
17037 the contents of the particular header listed on the left hand side will
17038 be used for comparisons.
17040 The &quot;eXtraHdr&quot; command may be used to add more of these
17041 header patterns to the rule you are editing.
17043 The &quot;RemoveHdr&quot; command may be used to delete the highlighted
17044 extra header pattern from the rule you are editing.
17046 It is possible to add a <EM>NOT</EM> to the Extra Header Pattern meaning with the
17047 &quot;!&quot; &quot;toggle NOT&quot; command.
17048 This changes the meaning of the pattern so that it has the opposite meaning.
17049 It will be considered a match if there are no matches between the
17050 text in the header line and the list of patterns.
17052 Don't make the mistake of putting the &quot;!&quot; in the data field for
17053 the pattern.
17054 For example, if you type the characters &quot;!frizzle&quot; into the
17055 pattern, the pattern will look like:
17057 <PRE>
17058  Xyz pattern = !frizzle
17059 </PRE>
17061 This means you want to match the 8 character sequence &quot;!frizzle&quot;.
17062 In order to match messages that do not have &quot;frizzle&quot; in
17063 their Xyz field, first type the characters &quot;frizzle&quot; followed
17064 by carriage return for the value of the pattern, then negate it
17065 by typing the &quot;!&quot; command.
17066 It should end up looking like
17068 <PRE>
17069  ! Xyz pattern = frizzle
17070 </PRE>
17073 A technicality: Since comma is the character used to separate multiple
17074 values in a pattern field, you have to escape comma with a backslash (&#92;) if
17075 you want to include a literal comma in the field.
17076 In other words, if you type a backslash followed by a comma it will
17077 be interpreted as a comma by Alpine, instead of as a separator between
17078 pattern values.
17079 All other backslashes are literal backslashes and should not be escaped.
17081 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17082 for more information on Patterns.
17084 Look <A HREF="h_edit_nav_cmds">here</A>
17085 to see the available Editing and Navigation commands.
17087 &lt;End of help on this topic&gt;
17088 </BODY>
17089 </HTML>
17090 ======= h_config_role_cat_cmd =======
17091 <HTML>
17092 <HEAD>
17093 <TITLE>Categorizer Command Explained</TITLE>
17094 </HEAD>
17095 <BODY>
17096 <H1>Categorizer Command Explained</H1>
17098 This is a command that is run with its standard input set to the message
17099 being checked and its standard output discarded.
17100 The full directory path should be specified.
17101 The command will be run and then its exit status will be checked against
17102 the Exit Status Interval, which defaults to just the value zero.
17103 If the exit status of the command falls in the interval, it is considered
17104 a match, otherwise it is not a match.
17107 This option may actually be a list of commands.
17108 The first one that exists and is executable is used.
17109 That makes it possible to use the same configuration with Unix Alpine and
17110 PC-Alpine.
17113 If none of the commands in the list exists and is executable then the rule
17114 is <EM>not</EM> a match.
17115 If it is possible that the command may not exist, you should be careful
17116 to structure your rules so that nothing destructive
17117 happens when the command does not exist.
17118 For example, you might have a filter that filters away spam when there is
17119 a match but does nothing when there is not a match.
17120 That would cause no harm if the command didn't exist.
17121 However, if you have a filter that filters away spam when there is not
17122 a match and keeps it when there is a match, that would filter everything
17123 if the categorizer command didn't exist.
17125 Here is an <A HREF="h_config_role_cat_cmd_example">example</A>
17126 setup for the bogofilter filter.
17129 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17130 for more information on Patterns.
17132 Look <A HREF="h_edit_nav_cmds">here</A>
17133 to see the available Editing and Navigation commands.
17135 &lt;End of help on this topic&gt;
17136 </BODY>
17137 </HTML>
17138 ======= h_config_role_cat_cmd_example =======
17139 <HTML>
17140 <HEAD>
17141 <TITLE>Categorizer Command Example</TITLE>
17142 </HEAD>
17143 <BODY>
17144 <H1>Categorizer Command Example</H1>
17146 Bogofilter
17147 (<A HREF="http://bogofilter.sourceforge.net/">http://bogofilter.sourceforge.net/</A>)
17148 is a mail filter that attempts to classify mail as spam or
17149 non-spam using statistical analysis of the message content.
17150 When run with no arguments and a message as standard input, it exits with
17151 exit status 0 if it thinks a message is spam and 1 if it thinks
17152 it is not spam.
17153 To use bogofilter as your Categorizer Command you would simply set Command to
17154 the pathname of the bogofilter program.
17155 For example,
17157 <CENTER><SAMP>Command = /usr/local/bin/bogofilter</SAMP></CENTER>
17159 Exit status of zero is what you are interested in, so you'd set the
17160 Exit Status Interval to
17162 <CENTER><SAMP>Exit Status Interval = (0,0)</SAMP></CENTER>
17165 In order to prevent downloading an entire huge message to check for spam, you
17166 might want to set the Character Limit to a few thousand characters (the
17167 assumption being that the spam will reveal itself in those characters)
17169 <CENTER><SAMP>Character Limit = 50000</SAMP></CENTER>
17172 You would probably use bogofilter in an Alpine Filter Rule, and have the action
17173 be to move the message to a spam folder.
17174 It would usually be wise to also check the &quot;Message is Recent&quot;
17175 part of the rule so that messages are only checked when they first arrive,
17176 and to restrict the Current Folder Type to just your INBOX.
17177 The reason for checking only Recent messages is to save the time it takes
17178 to run bogofilter on each message.
17179 As an experiment, you might start out by using this in an Indexcolor Rule
17180 instead of a Filter Rule.
17181 In that case, you probably wouldn't check the Recent checkbox.
17183 The use described above assumes that you are somehow maintaining bogofilter's
17184 database of words associated with spam and non-spam messages.
17185 One way to start your database would be to select a bunch of spam messages
17186 in Alpine (you might Save spam messages to a special folder or use Alpine's
17187 Select command to select several) and then Apply
17188 (<A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>)
17189 a pipe command to the spam messages.
17190 For example, you could have a shell script or an alias
17191 called <EM>this_is_spam</EM>, which would simply be the command
17193 <CENTER><SAMP>bogofilter -s</SAMP></CENTER>
17196 It is probably best to use the pipe command's Raw Text, With Delimiter,
17197 and Free Output options,
17198 which are at the bottom of the screen when you type the pipe command.
17199 That's because bogofilter expects the raw message as input, and uses
17200 the Delimiters to tell when a new message starts.
17201 You would not need to use a separate pipe for each message, because
17202 bogofilter can handle multiple messages at once.
17204 Similarly, you would select a group of non-spam messages
17205 and run them through a <EM>this_is_nonspam</EM> script
17206 that was something like
17208 <CENTER><SAMP>bogofilter -n</SAMP></CENTER>
17211 For the more adventurous, the next step might be to automate the upkeep of
17212 the bogofilter database.
17213 It might make more sense to have bogofilter be part of the delivery process,
17214 but it is also possible to do it entirely from within Alpine.
17215 Instead of using just plain &quot;bogofilter&quot; as the Categorizer Command,
17216 the &quot;-u&quot; argument will cause bogofilter to update the database.
17218 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
17220 You'd want a couple more aliases or shell scripts called something like
17221 <EM>change_to_spam</EM>
17223 <CENTER><SAMP>bogofilter -Ns</SAMP></CENTER>
17226 <EM>change_to_nonspam</EM>
17228 <CENTER><SAMP>bogofilter -Sn</SAMP></CENTER>
17230 When you run across a message in your INBOX that should have been
17231 classified as spam you would pipe it to the change_to_spam script, and
17232 when you run across a message in your spam folder that should have been
17233 left in your INBOX you would pipe it through change_to_nonspam.
17236 There is a technical problem with this approach.
17237 Alpine may check your filters more than once.
17238 In particular, every time you start Alpine the filters will be checked for
17239 each message.
17240 Also, if you have any filters that depend on message state (New, Deleted, etc.)
17241 then Alpine will recheck for matches in messages that have changed state
17242 at the time you close the folder and before expunging.
17243 This is usually ok.
17244 However, in this case it is a problem because the command
17246 <CENTER><SAMP>Command = /usr/local/bin/bogofilter -u</SAMP></CENTER>
17248 has the side effect of updating the database.
17249 So you run the risk of updating the database multiple times for a single
17250 message instead of updating it just once per message.
17251 There are some ways to work around this problem.
17252 What you need is a way to mark the message after you have run the filter.
17253 One way to mark messages is with the use of a keyword (say &quot;Bogo&quot;).
17254 Besides having the filter move the message to a spam folder, also have it
17255 set the Bogo keyword.
17256 (Note that you will have to set up the &quot;Bogo&quot; keyword in the
17257 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in Setup/Config.)
17258 This rule can only set the Bogo keyword for the messages that it matches.
17259 You will also need to add a second rule right after this one that
17260 matches all the messages that don't have the Bogo keyword set
17261 (put the keyword in the Keyword pattern and toggle
17262 the Not with the ! command)
17263 and takes the action of setting it.
17264 Then change the &quot;bogofilter -u&quot; rule so that it won't be a match
17265 (and so it won't re-run the bogofilter command) if the keyword is already
17266 set.
17268 What you will end up with is a rule that runs &quot;bogofilter -u&quot;
17269 on all messages that don't have the Bogo keyword set.
17270 This will have the side effect of inserting that message in the bogofilter
17271 database, match or not.
17272 If this rule matches (it is spam), the Bogo keyword will be set and
17273 the message will be moved to a spam folder.
17274 If it does not match, the
17275 following rule will mark the message by turning on the keyword.
17276 This second rule should be a non-terminating
17277 (<A HREF="h_config_filt_opts_nonterm">Dont-Stop-Even-if-Rule-Matches</A>)
17278 rule so that it doesn't stop the filtering process before the rest of
17279 your rules are consulted.
17282 In summary, the first rule is something like
17283 <PRE>
17284   Nickname          = bogofilter -u rule
17285   Current Folder Type =
17286                (*) Specific
17287                    Folder = INBOX
17289   ! Keyword pattern = Bogo
17291   External Categorizer Commands =
17292        Command              = /usr/local/bin/bogofilter -u
17293        Exit Status Interval = (0,0)
17294        Character Limit      = <No Value Set: using "-1">  (optionally set this)
17296   Filter Action =
17297        (*) Move
17298            Folder = spam
17299   
17300   Set These Keywords   = Bogo
17301 </PRE>
17303 and the following rule is
17304 <PRE>
17305   Nickname          = Set Bogo Keyword
17306   Current Folder Type =
17307                (*) Specific
17308                    Folder = INBOX
17310   ! Keyword pattern = Bogo
17312   Filter Action =
17313        (*) Just Set Message Status
17315   Set These Keywords   = Bogo
17317   Features =
17318       [X]  dont-stop-even-if-rule-matches
17319 </PRE>
17321 If it is possible for you to insert bogofilter in the delivery process instead
17322 of having it called from Alpine you could prevent having to wait
17323 for the bogofilter processing while you read your mail.
17324 You would have bogofilter add a header to the message at the time of delivery
17325 that identified it as spam or nonspam.
17326 With this method, you could avoid using a Categorizer Command while running Alpine,
17327 and just match on the header instead.
17328 You might still want to use the scripts mentioned above to initialize the
17329 database or to re-classify wrongly classified messages.
17332 Finally, it isn't for the faint-hearted,
17333 but it is also possible to run bogofilter from PC-Alpine.
17334 You can install Cygwin from
17335 <A HREF="http://www.cygwin.com/">http://www.cygwin.com/</A> and
17336 then compile bogofilter in the cygwin environment, and run it from
17337 within PC-Alpine.
17338 You would end up with a Categorizer command that looked something like
17340 <CENTER><SAMP>Command = C:&#92;cygwin&#92;bin&#92;bogofilter.exe -u</SAMP></CENTER>
17342 Note that the &quot;.exe&quot; extension is explicit,
17343 and that the bogofilter.exe executable should be in the same directory
17344 as cygwin1.dll.
17347 &lt;End of help on this topic&gt;
17348 </BODY>
17349 </HTML>
17350 ======= h_config_role_cat_status =======
17351 <HTML>
17352 <HEAD>
17353 <TITLE>Exit Status Interval Explained</TITLE>
17354 </HEAD>
17355 <BODY>
17356 <H1>Exit Status Interval Explained</H1>
17358 The categorizer command is run and the result is the exit status of
17359 that command.
17360 If that exit status falls in the Exit Status Interval
17361 then it is considered a match, otherwise it is not a match.
17362 Of course for the entire rule to match, it must also be checked against
17363 the other defined parts of the Pattern.
17365 The Exit Status Interval defaults to the single value 0 (zero).
17366 If you define it, it should be set to something like:
17368 <CENTER><SAMP>(min_exit_value,max_exit_value)</SAMP></CENTER>
17370 where &quot;min_exit_value&quot; and &quot;max_exit_value&quot; are integers.
17371 The special values &quot;INF&quot; and &quot;-INF&quot; may be used for large
17372 positive and negative integers.
17374 Actually, a list of intervals may be used if you wish.
17375 A list would look like
17377 <CENTER><SAMP>(min_exit_value1,max_exit_value1),(min_exit_value2,max_exit_value2),...</SAMP></CENTER>
17379 When there is an Exit Status Interval defined, it is a match if the exit status
17380 of the categorizer command is contained in any of the intervals.
17381 The intervals include both endpoints.
17383 The default interval is
17385 <CENTER><SAMP>(0,0)</SAMP></CENTER>
17387 and it matches only if the command exits with exit status equal to zero.
17390 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17391 for more information on Patterns.
17393 Look <A HREF="h_edit_nav_cmds">here</A>
17394 to see the available Editing and Navigation commands.
17396 &lt;End of help on this topic&gt;
17397 </BODY>
17398 </HTML>
17399 ======= h_config_role_cat_limit =======
17400 <HTML>
17401 <HEAD>
17402 <TITLE>Character Limit Explained</TITLE>
17403 </HEAD>
17404 <BODY>
17405 <H1>Character Limit Explained</H1>
17407 Setting this option makes it possible to limit how much of the message
17408 is made available to the categorizer command as input.
17409 The default value (-1) means that the entire message is fed to the
17410 command.
17411 A value of 0 (zero) means that only the headers of the message are
17412 made available.
17413 A positive integer means that the headers plus that many characters from
17414 the body of the message are passed to the categorizer.
17417 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17418 for more information on Patterns.
17420 Look <A HREF="h_edit_nav_cmds">here</A>
17421 to see the available Editing and Navigation commands.
17423 &lt;End of help on this topic&gt;
17424 </BODY>
17425 </HTML>
17426 ======= h_config_role_age =======
17427 <HTML>
17428 <HEAD>
17429 <TITLE>Age Interval Explained</TITLE>
17430 </HEAD>
17431 <BODY>
17432 <H1>Age Interval Explained</H1>
17434 The Age Interval, if defined, is part of the Pattern.
17435 If you use this, it should be set to something like:
17437 <CENTER><SAMP>(min_age,max_age)</SAMP></CENTER>
17439 where &quot;min_age&quot; and &quot;max_age&quot; are non-negative integers.
17440 The special value &quot;INF&quot; may be used for the max value.
17441 It represents infinity.
17443 In rare cases it may be useful to use the more general form of the value,
17444 which is a comma-separated list of intervals.
17445 It would look something like:
17447 <CENTER><SAMP>(min_age1,max_age1),(min_age2,max_age2),...</SAMP></CENTER>
17449 When there is an Age Interval defined, it is a match if the age, in days, of
17450 the message is contained in the interval.
17451 The interval includes both endpoints.
17452 If the option is set to a list of intervals then it is a match if the
17453 age of the message is contained in any of the intervals.
17455 Even though this option is called Age, it isn't actually
17456 the <EM>age</EM> of the message.
17457 Instead, it is how many days ago the message arrived in one of your folders.
17458 If the current time is a little past midnight, then a message that arrived
17459 just before midnight arrived yesterday, even though the message is only
17460 a few minutes old.
17461 By default, the date being used is not the date in the Date
17462 header of the message.
17463 It is the date that the message arrived in one of your folders.
17464 When you Save a message from one folder to another that arrival date
17465 is preserved.
17466 If you would like to use the date in the Date header that is possible.
17467 Turn on the option
17468 <A HREF="h_config_filt_opts_sentdate">&quot;Use-Date-Header-For-Age&quot;</A>
17469 near the bottom of the rule definition.
17471 A value of 0 is today, 1 is yesterday, 2 is the day before yesterday, and so on.
17472 The age interval
17474 <CENTER><SAMP>(2,2)</SAMP></CENTER>
17476 matches all messages that arrived on the day before yesterday.
17477 The interval
17479 <CENTER><SAMP>(180,INF)</SAMP></CENTER>
17481 matches all messages that arrived at least 180 days before today.
17482 The interval
17484 <CENTER><SAMP>(0,1)</SAMP></CENTER>
17486 matches all messages that arrived today or yesterday.
17489 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17490 for more information on Patterns.
17492 Look <A HREF="h_edit_nav_cmds">here</A>
17493 to see the available Editing and Navigation commands.
17495 &lt;End of help on this topic&gt;
17496 </BODY>
17497 </HTML>
17498 ======= h_config_role_size =======
17499 <HTML>
17500 <HEAD>
17501 <TITLE>Size Interval Explained</TITLE>
17502 </HEAD>
17503 <BODY>
17504 <H1>Size Interval Explained</H1>
17506 The Size Interval, if defined, is part of the Pattern.
17507 If you use this, it should be set to something like:
17509 <CENTER><SAMP>(min_size,max_size)</SAMP></CENTER>
17511 where &quot;min_size&quot; and &quot;max_size&quot; are non-negative integers.
17512 The special value &quot;INF&quot; may be used for the max value.
17513 It represents infinity.
17515 In rare cases it may be useful to use the more general form of the value,
17516 which is a comma-separated list of intervals.
17517 It would look something like:
17519 <CENTER><SAMP>(min_size1,max_size1),(min_size2,max_size2),...</SAMP></CENTER>
17521 When there is a Size Interval defined, it is a match if the size of
17522 the message is contained in the interval.
17523 The interval includes both endpoints.
17524 If the option is set to a list of intervals then it is a match if the
17525 size of the message is contained in any of the intervals.
17527 The size interval
17529 <CENTER><SAMP>(10000,50000)</SAMP></CENTER>
17531 matches all messages with sizes greater than or equal to 10000, and less
17532 than or equal to 50000.
17533 The interval
17535 <CENTER><SAMP>(100000,INF)</SAMP></CENTER>
17537 matches all messages with sizes greater than or equal to 100000.
17540 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17541 for more information on Patterns.
17543 Look <A HREF="h_edit_nav_cmds">here</A>
17544 to see the available Editing and Navigation commands.
17546 &lt;End of help on this topic&gt;
17547 </BODY>
17548 </HTML>
17549 ======= h_config_role_scorei =======
17550 <HTML>
17551 <HEAD>
17552 <TITLE>Score Interval Explained</TITLE>
17553 </HEAD>
17554 <BODY>
17555 <H1>Score Interval Explained</H1>
17557 The Score Interval, if defined, is part of the Pattern.
17558 If you use this, it should be set to something like:
17560 <CENTER><SAMP>(min_score,max_score)</SAMP></CENTER>
17562 where &quot;min_score&quot; and &quot;max_score&quot; are integers between
17563 -32000 and 32000.
17564 The special values &quot;-INF&quot; and &quot;INF&quot; may be used for
17565 the min and max values.
17566 These represent negative and positive infinity.
17568 Actually, the value may be a list of intervals rather than just a
17569 single interval if that is useful.
17570 The elements of the list are separated by commas like:
17572 <CENTER><SAMP>(min_score1,max_score1),(min_score2,max_score2),...</SAMP></CENTER>
17574 When there is a Score Interval defined, it is a match if the score for
17575 the message is contained in any of the intervals.
17576 The intervals include both endpoints.
17577 The score for a message is calculated by looking at every scoring rule
17578 defined and adding up the Score Values for the rules that match the message.
17579 Scoring rules are created using the
17580 <A HREF="h_rules_score">&quot;SETUP SCORING&quot;</A> screen.
17583 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17584 for more information on Patterns.
17586 Look <A HREF="h_edit_nav_cmds">here</A>
17587 to see the available Editing and Navigation commands.
17589 &lt;End of help on this topic&gt;
17590 </BODY>
17591 </HTML>
17592 ======= h_config_role_fldr_type =======
17593 <HTML>
17594 <HEAD>
17595 <TITLE>Current Folder Type Explained</TITLE>
17596 </HEAD>
17597 <BODY>
17598 <H1>Current Folder Type Explained</H1>
17600 The Current Folder Type is part of the role's Pattern.
17601 It refers to the type of the currently open folder, which is the folder
17602 you were last looking at from the MESSAGE INDEX or MESSAGE TEXT screen.
17603 In order for a role to be considered a match, the current folder must
17604 be of the type you set here.
17605 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17606 all what you might think.
17608 If the Current Folder Type for a role's Pattern is set to &quot;News&quot;, for
17609 example, then
17610 that role will only be a match if the current folder is a newsgroup and
17611 the rest of the Pattern matches.
17612 The value &quot;Specific&quot; may be used when you want to limit the match
17613 to a specific folder (not just a specific type of folder), or to a list of
17614 specific folders.
17616 In order to match a specific folder you Select the &quot;Specific&quot;
17617 button <EM>AND</EM> fill in
17618 the name (or list of names) of
17619 the folder in the &quot;Folder List&quot; field.
17620 If the current folder is any of the folders in the list, that is considered
17621 a match.
17622 The name of each folder in the list may be either &quot;INBOX&quot;,
17623 the technical specification
17624 of the folder (like what appears in your configuration file) or, if the
17625 folder is one of your incoming folders, it may be the nickname you've given
17626 the folder.
17627 Here are a couple samples of specific folder names:
17629 <CENTER><SAMP>{monet.art.example.com/user=vincent}mail/art-class</SAMP></CENTER>
17631 <CENTER><SAMP>{news.example.com/nntp/user=peter}#news.comp.mail.pine</SAMP></CENTER>
17633 Observe that in order for an external folder (IMAP, POP, News) to be a match,
17634 you must also add the /user= option in the definition of the incoming folder.
17636 The easiest way to fill in the &quot;Folder List&quot; field is to use
17637 the &quot;T&quot; command that is available when the &quot;Folder List&quot; line is
17638 highlighted, or to use the &quot;Take&quot; command with the configuration
17639 feature
17640 <A HREF="h_config_enable_role_take">&quot;<!--#echo var="FEAT_enable-rules-under-take"-->&quot;</A>
17641 turned on.
17642 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17643 Current Folder Type is set to &quot;Specific&quot;, and any value that
17644 &quot;Folder List&quot; has is ignored unless the type
17645 is set to &quot;Specific&quot;.
17647 When reading a newsgroup, there may be a performance penalty
17648 incurred when collecting the information necessary to check a Pattern.
17649 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17651 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17652 for more information on Patterns.
17654 Look <A HREF="h_edit_nav_cmds">here</A>
17655 to see the available Editing and Navigation commands.
17657 &lt;End of help on this topic&gt;
17658 </BODY>
17659 </HTML>
17660 ======= h_config_filt_rule_type =======
17661 <HTML>
17662 <HEAD>
17663 <TITLE>Filter Action Explained</TITLE>
17664 </HEAD>
17665 <BODY>
17666 <H1>Filter Action Explained</H1>
17668 The Filter Action specifies the action to be taken when the Pattern is a
17669 match.
17670 It may be set to &quot;Delete&quot; &quot;Move&quot;, or
17671 &quot;Just Set Message Status&quot;.
17673 If it is set to &quot;Delete&quot;, then the message that matches the
17674 Pattern will be deleted from the open folder.
17676 If it is set to &quot;Move&quot;, then the name of the folder to which
17677 the matching message should be moved is given in the &quot;Folder List&quot; field on the
17678 next line of the screen.
17679 A list of folders separated by commas may be given, in which case the
17680 message will be copied to all of the folders in the list before it is
17681 deleted.
17683 If it is set to neither of those two values (it is set to the value
17684 labeled &quot;Just Set Message Status&quot;) then the message status
17685 setting will happen
17686 but the message will not be deleted or moved.
17688 If you are Moving a message you may also set Message Status if you wish.
17690 The easiest way to fill in the &quot;Folder List&quot; field is to use
17691 the T command that is available when the &quot;Folder List&quot; line is
17692 highlighted.
17693 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17694 Filter Action is set to &quot;Move&quot;, and any value that
17695 &quot;Folder List&quot; has is ignored unless the type
17696 is set to &quot;Move&quot;.
17698 There are a few tokens that may be used in the names in the Folder List.
17699 They are all related to the date on which the filtering is taking place.
17700 The tokens are words surrounded by underscores.
17701 For example, if you want your filter to move messages to a folder named
17702 <P><CENTER><SAMP>abc-year-mon</SAMP></CENTER><P>
17703 you could specify the folder as
17704 <P><CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER><P>
17705 which would result in a file named something like
17706 <P><CENTER><SAMP>abc-2004-oct</SAMP></CENTER><P>
17708 <P><CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER><P>
17709 which would result in a file named something like
17710 <P><CENTER><SAMP>abc-04-10</SAMP></CENTER><P>
17711 The available tokens are listed
17712 <A HREF="h_index_tokens">here</A>.
17714 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17715 for more information on Patterns.
17717 Look <A HREF="h_edit_nav_cmds">here</A>
17718 to see the available Editing and Navigation commands.
17720 &lt;End of help on this topic&gt;
17721 </BODY>
17722 </HTML>
17723 ======= h_config_score_fldr_type =======
17724 <HTML>
17725 <HEAD>
17726 <TITLE>Current Folder Type Explained</TITLE>
17727 </HEAD>
17728 <BODY>
17729 <H1>Current Folder Type Explained</H1>
17731 The Current Folder Type is part of the scoring rule's Pattern.
17732 It refers to the type of the folder that
17733 the message being scored is in.
17734 In order for a rule to be considered a match, the current folder must
17735 be of the type you set here.
17736 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17737 all what you might think.
17739 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17740 example, then
17741 that Pattern will only match if the current folder is a newsgroup and
17742 the rest of the Pattern matches.
17743 The value &quot;Specific&quot; may be used when you want to limit the match
17744 to a specific folder (not just a specific type of folder), or to a list of
17745 specific folders.
17747 In order to match a specific folder you Select the &quot;Specific&quot;
17748 button <EM>AND</EM> fill in
17749 the name (or list of names) of
17750 the folder in the &quot;Folder List&quot; field.
17751 If the current folder is any of the folders in the list, that is considered
17752 a match.
17753 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17754 of the folder (like what appears in your configuration file) or, if the
17755 folder is one of your incoming folders, it may be the nickname you've given
17756 the folder.
17757 Here are a couple samples of specific folder names:
17759 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17761 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17763 The easiest way to fill in the &quot;Folder List&quot; field is to use
17764 the T command that is available when the &quot;Folder List&quot; line is
17765 highlighted.
17766 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17767 Current Folder Type is set to &quot;Specific&quot;, and any value that
17768 &quot;Folder List&quot; has is ignored unless the type
17769 is set to &quot;Specific&quot;.
17771 When reading a newsgroup, there may be a performance penalty
17772 incurred when collecting the information necessary to check a Pattern.
17773 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17774 For example, if you have Index Line Coloring rules that have Score Intervals
17775 defined then the scores for all the visible messages will need to be calculated.
17776 If some of your Scoring rules have 
17777 a Current Folder Type of
17778 &quot;Any&quot; or &quot;News&quot; this may cause the MESSAGE INDEX
17779 screen to draw more slowly when in a newsgroup.
17781 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17782 for more information on Patterns.
17784 Look <A HREF="h_edit_nav_cmds">here</A>
17785 to see the available Editing and Navigation commands.
17787 &lt;End of help on this topic&gt;
17788 </BODY>
17789 </HTML>
17790 ======= h_config_other_fldr_type =======
17791 <HTML>
17792 <HEAD>
17793 <TITLE>Current Folder Type Explained</TITLE>
17794 </HEAD>
17795 <BODY>
17796 <H1>Current Folder Type Explained</H1>
17798 The Current Folder Type is part of the rule's Pattern.
17799 It refers to the type of the folder being viewed.
17800 In order for a rule to be considered a match, the current folder must
17801 be of the type you set here.
17802 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17803 all what you might think.
17805 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17806 example, then
17807 that Pattern will only match if the current folder is a newsgroup.
17808 The value &quot;Specific&quot; may be used when you want to limit the match
17809 to a specific folder (not just a specific type of folder), or to a list of
17810 specific folders.
17812 In order to match a specific folder you Select the &quot;Specific&quot;
17813 button <EM>AND</EM> fill in
17814 the name (or list of names) of
17815 the folder in the &quot;Folder List&quot; field.
17816 If the current folder is any of the folders in the list, that is considered
17817 a match.
17818 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17819 of the folder (like what appears in your configuration file) or, if the
17820 folder is one of your incoming folders, it may be the nickname you've given
17821 the folder.
17822 Here are a couple samples of specific folder names:
17824 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17826 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17828 The easiest way to fill in the &quot;Folder List&quot; field is to use
17829 the T command that is available when the &quot;Folder List&quot; line is
17830 highlighted.
17831 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17832 Current Folder Type is set to &quot;Specific&quot;, and any value that
17833 &quot;Folder List&quot; has is ignored unless the type
17834 is set to &quot;Specific&quot;.
17836 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17837 for more information on Patterns.
17839 Look <A HREF="h_edit_nav_cmds">here</A>
17840 to see the available Editing and Navigation commands.
17842 &lt;End of help on this topic&gt;
17843 </BODY>
17844 </HTML>
17845 ======= h_config_incol_fldr_type =======
17846 <HTML>
17847 <HEAD>
17848 <TITLE>Current Folder Type Explained</TITLE>
17849 </HEAD>
17850 <BODY>
17851 <H1>Current Folder Type Explained</H1>
17853 The Current Folder Type is part of the Line Coloring rule's Pattern.
17854 It refers to the type of the folder for which the MESSAGE INDEX is
17855 being viewed.
17856 In order for a rule to be considered a match, the current folder must
17857 be of the type you set here.
17858 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17859 all what you might think.
17861 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17862 example, then
17863 that Pattern will only match if the current folder is a newsgroup and
17864 the rest of the Pattern matches.
17865 The value &quot;Specific&quot; may be used when you want to limit the match
17866 to a specific folder (not just a specific type of folder), or to a list of
17867 specific folders.
17869 In order to match a specific folder you Select the &quot;Specific&quot;
17870 button <EM>AND</EM> fill in
17871 the name (or list of names) of
17872 the folder in the &quot;Folder List&quot; field.
17873 If the current folder is any of the folders in the list, that is considered
17874 a match.
17875 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17876 of the folder (like what appears in your configuration file) or, if the
17877 folder is one of your incoming folders, it may be the nickname you've given
17878 the folder.
17879 Here are a couple samples of specific folder names:
17881 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17883 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17885 The easiest way to fill in the &quot;Folder List&quot; field is to use
17886 the T command that is available when the &quot;Folder List&quot; line is
17887 highlighted.
17888 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17889 Current Folder Type is set to &quot;Specific&quot;, and any value that
17890 &quot;Folder List&quot; has is ignored unless the type
17891 is set to &quot;Specific&quot;.
17893 When reading a newsgroup, there may be a performance penalty
17894 incurred when collecting the information necessary to check a Pattern.
17895 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17896 For example, a rule with a non-Normal Index Line Color
17897 and a Current Folder Type of
17898 &quot;Any&quot; or &quot;News&quot; may cause the MESSAGE INDEX
17899 screen to draw more slowly when in a newsgroup.
17901 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17902 for more information on Patterns.
17904 Look <A HREF="h_edit_nav_cmds">here</A>
17905 to see the available Editing and Navigation commands.
17907 &lt;End of help on this topic&gt;
17908 </BODY>
17909 </HTML>
17910 ======= h_config_filt_fldr_type =======
17911 <HTML>
17912 <HEAD>
17913 <TITLE>Current Folder Type Explained</TITLE>
17914 </HEAD>
17915 <BODY>
17916 <H1>Current Folder Type Explained</H1>
17918 The Current Folder Type is part of the Filtering rule's Pattern.
17919 It refers to the type of the folder for which the filtering is being done.
17920 In order for a rule to be considered a match, the current folder must
17921 be of the type you set here.
17922 The three types &quot;Any&quot;, &quot;News&quot;, and &quot;Email&quot; are
17923 all what you might think.
17925 If the Current Folder Type for a Pattern is set to &quot;News&quot;, for
17926 example, then
17927 that Pattern will only match if the current folder is a newsgroup and
17928 the rest of the Pattern matches.
17929 The value &quot;Specific&quot; may be used when you want to limit the match
17930 to a specific folder (not just a specific type of folder), or to a list of
17931 specific folders.
17933 In order to match a specific folder you Select the &quot;Specific&quot;
17934 button <EM>AND</EM> fill in
17935 the name (or list of names) of
17936 the folder in the &quot;Folder List&quot; field.
17937 If the current folder is any of the folders in the list, that is considered
17938 a match.
17939 The name of each folder in the list may be either &quot;INBOX&quot;, the technical specification
17940 of the folder (like what appears in your configuration file) or, if the
17941 folder is one of your incoming folders, it may be the nickname you've given
17942 the folder.
17943 Here are a couple samples of specific folder names:
17945 <CENTER><SAMP>{monet.art.example.com}mail/art-class</SAMP></CENTER>
17947 <CENTER><SAMP>{news.example.com/nntp}#news.comp.mail.pine</SAMP></CENTER>
17949 The easiest way to fill in the &quot;Folder List&quot; field is to use
17950 the T command that is available when the &quot;Folder List&quot; line is
17951 highlighted.
17952 Note that you won't be able to edit the &quot;Folder List&quot; line unless the
17953 Current Folder Type is set to &quot;Specific&quot;, and any value that
17954 &quot;Folder List&quot; has is ignored unless the type
17955 is set to &quot;Specific&quot;.
17957 When reading a newsgroup, there may be a performance penalty
17958 incurred when collecting the information necessary to check a Pattern.
17959 For this reason, the default Current Folder Type is set to &quot;Email&quot;.
17960 For example, a rule with a Current Folder Type of either
17961 &quot;Any&quot; or &quot;News&quot; may cause the filtering to happen
17962 more slowly when opening a newsgroup.
17964 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17965 for more information on Patterns.
17967 Look <A HREF="h_edit_nav_cmds">here</A>
17968 to see the available Editing and Navigation commands.
17970 &lt;End of help on this topic&gt;
17971 </BODY>
17972 </HTML>
17973 ======= h_config_role_stat_imp =======
17974 <HTML>
17975 <HEAD>
17976 <TITLE>Message Important Status Explained</TITLE>
17977 </HEAD>
17978 <BODY>
17979 <H1>Message Important Status Explained</H1>
17981 This part of the Pattern may have one of three possible values.
17982 The default value is &quot;Don't care&quot;, which matches any message.
17983 The other two values are &quot;Yes&quot;, which means the message must be
17984 flagged &quot;Important&quot; in order to be a match; or &quot;No&quot;, which
17985 means the message must <EM>not</EM> be flagged &quot;Important&quot; in order
17986 to be a match.
17988 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
17989 for more information on Patterns.
17991 Look <A HREF="h_edit_nav_cmds">here</A>
17992 to see the available Editing and Navigation commands.
17994 &lt;End of help on this topic&gt;
17995 </BODY>
17996 </HTML>
17997 ======= h_config_role_stat_new =======
17998 <HTML>
17999 <HEAD>
18000 <TITLE>Message New Status Explained</TITLE>
18001 </HEAD>
18002 <BODY>
18003 <H1>Message New Status Explained</H1>
18005 This part of the Pattern may have one of three possible values.
18006 The default value is &quot;Don't care&quot;, which matches any message.
18007 The other two values are &quot;Yes&quot;, which means the message must be
18008 &quot;New&quot; in order to be a match; or &quot;No&quot;, which
18009 means the message must <EM>not</EM> be &quot;New&quot; in order
18010 to be a match.
18011 &quot;New&quot; is the same as <EM>Unseen</EM> and not &quot;New&quot; is the
18012 same as <EM>Seen</EM>.
18014 The nomenclature for New and Recent is a bit confusing:
18016 New means that the message is Unseen.
18017 It could have been in your mailbox for a long time but if you haven't looked
18018 at it, it is still considered New.
18019 That matches the default Alpine index display that shows an N for such a
18020 message.
18022 Recent means that the message was added to this folder since the last time
18023 you opened the folder.
18024 Alpine also shows an N by default for these types of messages.
18025 If you were to run two copies of Alpine that opened a folder one right after
18026 the other, a message would only show up as Recent in (at most) the first
18027 Alpine session.
18029 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18030 for more information on Patterns.
18032 Look <A HREF="h_edit_nav_cmds">here</A>
18033 to see the available Editing and Navigation commands.
18035 &lt;End of help on this topic&gt;
18036 </BODY>
18037 </HTML>
18038 ======= h_config_role_stat_recent =======
18039 <HTML>
18040 <HEAD>
18041 <TITLE>Message Recent Status Explained</TITLE>
18042 </HEAD>
18043 <BODY>
18044 <H1>Message Recent Status Explained</H1>
18046 This part of the Pattern may have one of three possible values.
18047 The default value is &quot;Don't care&quot;, which matches any message.
18048 The other two values are &quot;Yes&quot;, which means the message must be
18049 &quot;Recent&quot; in order to be a match; or &quot;No&quot;, which
18050 means the message must <EM>not</EM> be &quot;Recent&quot; in order
18051 to be a match.
18052 &quot;Recent&quot; means that the message was added to the folder since
18053 the last time the folder was opened.
18054 If more than one mail client has the folder opened, the message will
18055 appear to be &quot;Recent&quot; to only one of the clients.
18057 The nomenclature for New and Recent is a bit confusing:
18059 New means that the message is Unseen.
18060 It could have been in your mailbox for a long time but if you haven't looked
18061 at it, it is still considered New.
18062 That matches the default Alpine index display that shows an N for such a
18063 message.
18065 Recent means that the message was added to this folder since the last time
18066 you opened the folder.
18067 Alpine also shows an N by default for these types of messages.
18068 If you were to run two copies of Alpine that opened a folder one right after
18069 the other, a message would only show up as Recent in (at most) the first
18070 Alpine session.
18072 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18073 for more information on Patterns.
18075 Look <A HREF="h_edit_nav_cmds">here</A>
18076 to see the available Editing and Navigation commands.
18078 &lt;End of help on this topic&gt;
18079 </BODY>
18080 </HTML>
18081 ======= h_config_role_stat_del =======
18082 <HTML>
18083 <HEAD>
18084 <TITLE>Message Deleted Status Explained</TITLE>
18085 </HEAD>
18086 <BODY>
18087 <H1>Message Deleted Status Explained</H1>
18089 This part of the Pattern may have one of three possible values.
18090 The default value is &quot;Don't care&quot;, which matches any message.
18091 The other two values are &quot;Yes&quot;, which means the message must be
18092 marked &quot;Deleted&quot; in order to be a match; or &quot;No&quot;, which
18093 means the message must <EM>not</EM> be marked &quot;Deleted&quot; in order
18094 to be a match.
18096 If you are thinking of using this part of the Pattern as a way to prevent
18097 messages from being filtered more than once in a Filter Pattern,
18098 take a look at the Filter Option
18099 <A HREF="h_config_filt_opts_notdel">&quot;Move-Only-if-Not-Deleted&quot;</A>
18100 instead.
18101 It should work better than using this field since it will hide the filtered
18102 messages even if they are already Deleted.
18103 That option is at the bottom of the Filter configuration screen.
18105 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18106 for more information on Patterns.
18108 Look <A HREF="h_edit_nav_cmds">here</A>
18109 to see the available Editing and Navigation commands.
18111 &lt;End of help on this topic&gt;
18112 </BODY>
18113 </HTML>
18114 ======= h_config_role_stat_ans =======
18115 <HTML>
18116 <HEAD>
18117 <TITLE>Message Answered Status Explained</TITLE>
18118 </HEAD>
18119 <BODY>
18120 <H1>Message Answered Status Explained</H1>
18122 This part of the Pattern may have one of three possible values.
18123 The default value is &quot;Don't care&quot;, which matches any message.
18124 The other two values are &quot;Yes&quot;, which means the message must be
18125 marked &quot;Answered&quot; in order to be a match; or &quot;No&quot;, which
18126 means the message must <EM>not</EM> be marked &quot;Answered&quot; in order
18127 to be a match.
18129 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18130 for more information on Patterns.
18132 Look <A HREF="h_edit_nav_cmds">here</A>
18133 to see the available Editing and Navigation commands.
18135 &lt;End of help on this topic&gt;
18136 </BODY>
18137 </HTML>
18138 ======= h_config_role_abookfrom =======
18139 <HTML>
18140 <HEAD>
18141 <TITLE>Address in Address Book Explained</TITLE>
18142 </HEAD>
18143 <BODY>
18144 <H1>Address in Address Book Explained</H1>
18146 This option gives you a way to match messages that contain an address
18147 that is in one of your address books.
18148 Only the simple entries in your address books are searched.
18149 Address book distribution lists are ignored!
18151 This part of the Pattern may have one of five possible values.
18152 The default value is &quot;Don't care&quot;, which matches any message.
18153 The value &quot;Yes, in any address book&quot; means at least one of the addresses
18154 from the message must be in at least one of your
18155 address books in order to be a match.
18156 The value &quot;No, not in any address book&quot;
18157 means none of the addresses may
18158 be in any of your address books in order to be a match.
18160 The values &quot;Yes, in specific address books&quot; and
18161 &quot;No, not in any of specific address books&quot; are similar but instead
18162 of depending on all address books you are allowed to give a list of address
18163 books to look in.
18164 Usually this would be a single address book but it may be a
18165 list of address books as well.
18166 For each of these &quot;specific&quot; address book options you Select which
18167 of the Specific options you want (Yes or No) <EM>AND</EM> fill in the
18168 name (or list of names) of the address book in the
18169 &quot;Abook List&quot; field.
18170 The names to be used are those that appear in the ADDRESS BOOK LIST screen.
18171 The easiest way to fill in the Abook List field it to use
18172 the &quot;T&quot; command that is available when the &quot;Abook List&quot;
18173 line is highlighted.
18174 Note that you won't be able to edit the &quot;Abook List&quot; line unless the
18175 option is set to one of the two &quot;Specific&quot;, values.
18177 The addresses from the message that are checked for are determined by the
18178 setting you have for &quot;Types of addresses to check for in address book&quot;.
18179 If you set this to &quot;From&quot; the From address from the message will
18180 be looked up in the address book.
18181 If you set it to &quot;To&quot; instead then the To addresses will be used.
18182 If any of the To addresses are in the address book then it is considered
18183 a match for &quot;Yes&quot; or not a match for &quot;No&quot;.
18184 You could set it to both From and To, in which case all of the From and To
18185 addresses are used.
18186 The &quot;Reply-To&quot; and &quot;Sender&quot; cases are a little unusual.
18187 Due to deficiencies in our tools, Reply-To uses the Reply-To address if it
18188 exists or the From address if there is no Reply-To address.
18189 Same for the Sender address.
18191 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18192 for more information on Patterns.
18194 Look <A HREF="h_edit_nav_cmds">here</A>
18195 to see the available Editing and Navigation commands.
18197 &lt;End of help on this topic&gt;
18198 </BODY>
18199 </HTML>
18200 ======= h_config_inabook_from =======
18201 <HTML>
18202 <HEAD>
18203 <TITLE>From</TITLE>
18204 </HEAD>
18205 <BODY>
18206 <H1>From</H1>
18208 Setting the From line will cause the address from the From header line
18209 of the message to be checked for in the address book.
18211 &lt;End of help on this topic&gt;
18212 </BODY>
18213 </HTML>
18214 ======= h_config_inabook_replyto =======
18215 <HTML>
18216 <HEAD>
18217 <TITLE>Reply-To</TITLE>
18218 </HEAD>
18219 <BODY>
18220 <H1>Reply-To</H1>
18222 Setting the Reply-To line will cause the address from the Reply-To header line
18223 of the message to be checked for in the address book.
18224 However, if there is no Reply-To header line in the message the From header
18225 line will be used instead.
18226 We understand this is dumb but we don't have an easy way around it.
18228 &lt;End of help on this topic&gt;
18229 </BODY>
18230 </HTML>
18231 ======= h_config_inabook_sender =======
18232 <HTML>
18233 <HEAD>
18234 <TITLE>Sender</TITLE>
18235 </HEAD>
18236 <BODY>
18237 <H1>Sender</H1>
18239 Setting the Sender line will cause the address from the Sender header line
18240 of the message to be checked for in the address book.
18241 However, if there is no Sender header line in the message the From header
18242 line will be used instead.
18243 We understand this is dumb but we don't have an easy way around it.
18245 &lt;End of help on this topic&gt;
18246 </BODY>
18247 </HTML>
18248 ======= h_config_inabook_to =======
18249 <HTML>
18250 <HEAD>
18251 <TITLE>To</TITLE>
18252 </HEAD>
18253 <BODY>
18254 <H1>To</H1>
18256 Setting the To line will cause the address from the To header line
18257 of the message to be checked for in the address book.
18259 &lt;End of help on this topic&gt;
18260 </BODY>
18261 </HTML>
18262 ======= h_config_inabook_cc =======
18263 <HTML>
18264 <HEAD>
18265 <TITLE>CC</TITLE>
18266 </HEAD>
18267 <BODY>
18268 <H1>CC</H1>
18270 Setting the CC line will cause the address from the CC header line
18271 of the message to be checked for in the address book.
18273 &lt;End of help on this topic&gt;
18274 </BODY>
18275 </HTML>
18276 ======= h_config_role_stat_8bitsubj =======
18277 <HTML>
18278 <HEAD>
18279 <TITLE>Raw 8-bit in Subject Explained</TITLE>
18280 </HEAD>
18281 <BODY>
18282 <H1>Raw 8-bit in Subject Explained</H1>
18284 It seems that lots of unwanted email contains unencoded 8-bit characters
18285 in the Subject.
18286 Normally, characters with the 8th bit set are not allowed in the Subject
18287 header unless they are MIME-encoded.
18288 This option gives you a way to match messages that have Subjects that
18289 contain unencoded 8-bit characters.
18291 This part of the Pattern may have one of three possible values.
18292 The default value is &quot;Don't care&quot;, which matches any message.
18293 The other two values are &quot;Yes&quot;, which means the Subject of
18294 the message must contain unencoded 8-bit characters (characters with the
18295 most significant bit set)
18296 in order to be a match; or &quot;No&quot;, which
18297 means the Subject must <EM>not</EM>
18298 contain unencoded 8-bit characters in order to be a match.
18300 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18301 for more information on Patterns.
18303 Look <A HREF="h_edit_nav_cmds">here</A>
18304 to see the available Editing and Navigation commands.
18306 &lt;End of help on this topic&gt;
18307 </BODY>
18308 </HTML>
18309 ======= h_config_role_bom =======
18310 <HTML>
18311 <HEAD>
18312 <TITLE>Beginning of Month</TITLE>
18313 </HEAD>
18314 <BODY>
18315 <H1>Beginning of Month</H1>
18317 This option gives you a limited ability to take different actions depending on whether
18318 this is the first time Alpine has been run this month or not.
18319 Though it would be nice to have such an option available, this is not the
18320 same as whether or not this is the first time a paricular folder has been
18321 opened this month.
18322 If you want some action (probably Filtering) to take place in a folder each
18323 month, then you will need to be sure that the folder is opened during the
18324 first Alpine session of the month in order for this option to be helpful.
18326 This part of the Pattern may have one of three possible values.
18327 The default value is &quot;Don't care&quot;, which matches any message.
18328 The other two values are &quot;Yes&quot;, which means this is the first
18329 time Alpine has been run this month;
18330 or &quot;No&quot;, which
18331 means this is not the first time Alpine has been run this month.
18333 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18334 for more information on Patterns.
18336 Here are some technical details.
18337 The way that Alpine decides if it is the beginning of the month or not is
18338 to compare today's date with the date stored in the
18339 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18340 variable in the config file.
18341 If the month of today's date is later than the month stored in the variable,
18342 then this is considered to be the first time you have run Alpine this month, and
18343 that turns the Beginning of the Month option on.
18345 Look <A HREF="h_edit_nav_cmds">here</A>
18346 to see the available Editing and Navigation commands.
18348 &lt;End of help on this topic&gt;
18349 </BODY>
18350 </HTML>
18351 ======= h_config_role_boy =======
18352 <HTML>
18353 <HEAD>
18354 <TITLE>Beginning of Year</TITLE>
18355 </HEAD>
18356 <BODY>
18357 <H1>Beginning of Year</H1>
18359 This option gives you a limited ability to take different actions depending on whether
18360 this is the first time Alpine has been run this year or not.
18361 Though it would be nice to have such an option available, this is not the
18362 same as whether or not this is the first time a paricular folder has been
18363 opened this year.
18364 If you want some action (probably Filtering) to take place in a folder each
18365 year, then you will need to be sure that the folder is opened during the
18366 first Alpine session of the year in order for this option to be helpful.
18368 This part of the Pattern may have one of three possible values.
18369 The default value is &quot;Don't care&quot;, which matches any message.
18370 The other two values are &quot;Yes&quot;, which means this is the first
18371 time Alpine has been run this year;
18372 or &quot;No&quot;, which
18373 means this is not the first time Alpine has been run this year.
18375 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
18376 for more information on Patterns.
18378 Here are some technical details.
18379 The way that Alpine decides if it is the beginning of the year or not is
18380 to compare today's date with the date stored in the
18381 <A HREF="h_config_prune_date"><!--#echo var="VAR_last-time-prune-questioned"--></A>
18382 variable in the config file.
18383 If the year of today's date is later than the year stored in the variable,
18384 then this is considered to be the first time you have run Alpine this year, and
18385 that turns the Beginning of the Year option on.
18387 Look <A HREF="h_edit_nav_cmds">here</A>
18388 to see the available Editing and Navigation commands.
18390 &lt;End of help on this topic&gt;
18391 </BODY>
18392 </HTML>
18393 ======= h_config_role_inick =======
18394 <HTML>
18395 <HEAD>
18396 <TITLE>Initialize Values From Role Explained</TITLE>
18397 </HEAD>
18398 <BODY>
18399 <H1>Initialize Values From Role Explained</H1>
18401 This is a power user feature.
18402 You will usually want to leave this field empty.
18403 The value of this field is the nickname of another one of your roles.
18404 The Action values from that other role
18405 are used as the initial values of the Action items for this role.
18406 If you put something in any of the action fields for this role, that will
18407 override whatever was in the corresponding field of the initializer role.
18409 You might use this field if the &quot;Action&quot; part of one of your roles
18410 is something you want to use in more than one role.
18411 Instead of filling in those action values again for each role, you
18412 may give the nickname of the role where the values are filled in.
18413 It's just a shortcut way to define Role Actions.
18415 Here's an example to help explain how this works.
18416 Suppose you have a role with nickname &quot;role1&quot; and role1 has
18417 (among other things)
18419 <CENTER><SAMP>Set Reply-To = The Pres &lt;president@example.com&gt;</SAMP></CENTER>
18421 set.
18422 If in &quot;role2&quot; you set &quot;Initialize settings using role&quot; to
18423 &quot;role1&quot;, then role2 will inherit the Set Reply-To value
18424 from role1 by default (and any of the other inheritable action values
18425 that are set).
18426 So if role2 had
18428 <CENTER><SAMP>Set Reply-To = &lt;No Value Set&gt;</SAMP></CENTER>
18430 defined, the Reply-To used with role2 would be &quot;The Pres &lt;president@example.com&gt;&quot;
18431 However, if role2 had
18433 <CENTER><SAMP>Set Reply-To = VP &lt;vicepresident@example.com&gt;</SAMP></CENTER>
18435 defined, then the Reply-To used with role2 would be &quot;VP &lt;vicepresident@example.com&gt;&quot; instead.
18437 If you wish,
18438 you may choose a nickname from your list of roles by using the
18439 &quot;T&quot; command.
18440 If the role you are using to initialize also has a role it initializes from,
18441 then that initialization happens first.
18442 That is, inheritance works as expected with the grandparent and
18443 great-grandparent (and so on) roles having the expected effect.
18445 Look <A HREF="h_edit_nav_cmds">here</A>
18446 to see the available Editing and Navigation commands.
18448 &lt;End of help on this topic&gt;
18449 </BODY>
18450 </HTML>
18451 ======= h_config_role_setfrom =======
18452 <HTML>
18453 <HEAD>
18454 <TITLE>Set From Explained</TITLE>
18455 </HEAD>
18456 <BODY>
18457 <H1>Set From Explained</H1>
18459 This describes part of the action to be taken if the Pattern for this
18460 role is a match.
18461 This field consists of a single address that will be used as the From
18462 address on the message you are sending.
18463 This should be a fully-qualified address like
18465 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18467 or just
18469 <CENTER><SAMP>user@domain</SAMP></CENTER>
18471 If you wish,
18472 you may choose an address from your address book with the
18473 &quot;T&quot; command.
18475 If this is left blank, then your normal From address will be used.
18477 You may also find it useful to add the changed From address to the
18478 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
18479 configuration option.
18481 Look <A HREF="h_edit_nav_cmds">here</A>
18482 to see the available Editing and Navigation commands.
18484 &lt;End of help on this topic&gt;
18485 </BODY>
18486 </HTML>
18487 ======= h_config_role_setreplyto =======
18488 <HTML>
18489 <HEAD>
18490 <TITLE>Set Reply-To Explained</TITLE>
18491 </HEAD>
18492 <BODY>
18493 <H1>Set Reply-To Explained</H1>
18495 This describes part of the action to be taken if the Pattern for this
18496 role is a match.
18497 This field consists of a single address that will be used as the Reply-To
18498 address on the message you are sending.
18499 This may be a fully-qualified address like
18501 <CENTER><SAMP>Full Name &lt;user@domain&gt;</SAMP></CENTER>
18503 or just
18505 <CENTER><SAMP>user@domain</SAMP></CENTER>
18507 If you wish,
18508 you may choose an address from your address book with the
18509 &quot;T&quot; command.
18511 If this is left blank, then there won't be a Reply-To address unless
18512 you have configured one specially with the
18513 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>"
18514 configuration option.
18516 Look <A HREF="h_edit_nav_cmds">here</A>
18517 to see the available Editing and Navigation commands.
18519 &lt;End of help on this topic&gt;
18520 </BODY>
18521 </HTML>
18522 ======= h_config_role_setfcc =======
18523 <HTML>
18524 <HEAD>
18525 <TITLE>Set Fcc Explained</TITLE>
18526 </HEAD>
18527 <BODY>
18528 <H1>Set Fcc Explained</H1>
18530 This describes part of the action to be taken if the Pattern for this
18531 role is a match.
18532 This field consists of a single folder name that will be used in
18533 the Fcc field of the message you are sending.
18534 You may put anything here that you would normally type into the Fcc
18535 field from the composer.
18537 In addition, an fcc of &quot;&quot; (two double quotation marks) means
18538 no Fcc.
18540 A blank field here means that Alpine will use its normal rules for deciding
18541 the default value of the Fcc field.
18542 For many roles, perhaps most, it may make more sense for you to use the
18543 other Alpine facilities for setting the Fcc.
18544 In particular, if you want the Fcc to depend on who you are sending the
18545 message to then the <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A>
18546 is probably more useful.
18547 In that case, you would want to leave the Fcc field here blank.
18548 However, if you have a role that depends on who the message you are replying
18549 to was From, or what address that message was sent to;
18550 then it might make sense to set the Fcc for that role here.
18552 If you wish,
18553 you may choose a folder from your folder collections by using the
18554 &quot;T&quot; command.
18556 Look <A HREF="h_edit_nav_cmds">here</A>
18557 to see the available Editing and Navigation commands.
18559 &lt;End of help on this topic&gt;
18560 </BODY>
18561 </HTML>
18562 ======= h_config_role_usesmtp =======
18563 <HTML>
18564 <HEAD>
18565 <TITLE>Use SMTP Server Explained</TITLE>
18566 </HEAD>
18567 <BODY>
18568 <H1>Use SMTP Server Explained</H1>
18570 This describes part of the action to be taken if the Pattern for this
18571 role is a match.
18572 If this field has a value, then it will be used as the SMTP server
18573 to send mail when this role is being used (unless the SMTP server variable
18574 is set in the system-wide fixed configuration file).
18575 It has the same semantics as the
18576 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18577 variable in the Setup/Config screen.
18579 If you are using this to post from home when you are at home and from
18580 work when you are at work you need to be careful about postponing messages.
18581 When you postpone a composition that was using a role with this variable
18582 set, the SMTP server list will be saved
18583 with the postponed composition.
18584 It cannot be changed later.
18585 Because of this, you may want to make this a list of SMTP servers
18586 with the preferred server at the front of the list and alternate servers
18587 later in the list.
18588 In your &quot;Home&quot; role you would put the home SMTP server first and
18589 the work SMTP server last.
18590 In your &quot;Work&quot; role you would put the work SMTP server first and
18591 the home SMTP server last.
18592 Then if you start a composition as &quot;Work&quot;, postpone
18593 it, and then later resume it from home the work SMTP server will fail but
18594 the home SMTP server later in the list will succeed.
18596 You may be able to simplify things by making the regular
18597 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
18598 variable in the Setup/Config screen a list instead of using roles
18599 to set the SMTP server.
18602 Look <A HREF="h_edit_nav_cmds">here</A>
18603 to see the available Editing and Navigation commands.
18605 &lt;End of help on this topic&gt;
18606 </BODY>
18607 </HTML>
18608 ======= h_config_role_usenntp =======
18609 <HTML>
18610 <HEAD>
18611 <TITLE>Use NNTP Server Explained</TITLE>
18612 </HEAD>
18613 <BODY>
18614 <H1>Use NNTP Server Explained</H1>
18616 This describes part of the action to be taken if the Pattern for this
18617 role is a match.
18618 If this field has a value, then it will be used as the NNTP server
18619 to post to newsgroups when this role is being used (unless the NNTP server
18620 variable
18621 is set in the system-wide fixed configuration file).
18622 It has the same semantics as the
18623 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18624 variable in the Setup/Config screen.
18626 This role setting can facilitate posting to the right nntp server for someone
18627 who reads news from various news sources.  The feature
18628 <A HREF="h_config_predict_nntp_server">&quot;<!--#echo var="FEAT_predict-nntp-server"-->&quot;</A>
18629 allows for setting the correct <!--#echo var="VAR_nntp-server"--> without having to individually
18630 set a role for that <!--#echo var="VAR_nntp-server"-->, but for greater flexibility, setting
18631 nntp servers for roles may be more desirable for some people.
18633 If you are using this to post from home when you are at home and from
18634 work when you are at work you need to be careful about postponing messages.
18635 When you postpone a composition that was using a role with this variable
18636 set, the NNTP server list will be saved
18637 with the postponed composition.
18638 It cannot be changed later.
18639 Because of this, you may want to make this a list of NNTP servers
18640 with the preferred server at the front of the list and alternate servers
18641 later in the list.
18642 In your &quot;Home&quot; role you would put the home NNTP server first and
18643 the work NNTP server last.
18644 In your &quot;Work&quot; role you would put the work NNTP server first and
18645 the home NNTP server last.
18646 Then if you start a composition as &quot;Work&quot;, postpone
18647 it, and then later resume it from home the work NNTP server will fail but
18648 the home NNTP server later in the list will succeed.
18650 You may be able to simplify things by making the regular
18651 <A HREF="h_config_nntp_server">&quot;<!--#echo var="VAR_nntp-server"-->&quot;</A>
18652 variable in the Setup/Config screen a list instead of using roles
18653 to set the NNTP server.
18656 Look <A HREF="h_edit_nav_cmds">here</A>
18657 to see the available Editing and Navigation commands.
18659 &lt;End of help on this topic&gt;
18660 </BODY>
18661 </HTML>
18662 ======= h_config_role_setotherhdr =======
18663 <HTML>
18664 <HEAD>
18665 <TITLE>Set Other Headers Explained</TITLE>
18666 </HEAD>
18667 <BODY>
18668 <H1>Set Other Headers Explained</H1>
18670 This describes part of the action to be taken if the Pattern for this
18671 role is a match.
18672 This field gives you a way to set values for headers besides
18673 &quot;From&quot; and &quot;Reply-To&quot;.
18674 If you want to set either of those, use the specific
18675 &quot;Set From&quot; and &quot;Set Reply-To&quot; settings above.
18677 This field is similar to the
18678 "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" option.
18679 Each header you specify here must include the header tag 
18680 (&quot;To:&quot;, &quot;Approved:&quot;, etc.)
18681 and may optionally include a value for that header.
18682 In order to see these headers when you compose using this role you 
18683 must use the rich header
18684 <!--chtml if pinemode="function_key"-->(F5)
18685 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
18686 Here's an example that shows how you might set the To address.
18688 <CENTER><SAMP>Set Other Hdrs = To: Full Name &lt;user@domain&gt;</SAMP></CENTER>
18690 Headers set in this way are different from headers set with the
18691 <!--#echo var="VAR_customized-hdrs"--> option in that the value you give for a header here
18692 will replace any value that already exists.
18693 For example, if you are Replying to a message there will already be at
18694 least one address in the To header (the address you are Replying to).
18695 However, if you Reply using a role that sets the To header, that role's
18696 To header value will be used instead.
18698 Limitation: Because commas are used to separate the list of
18699 Other Headers, it is not possible to have the value of a
18700 header contain a comma;
18701 nor is there currently an &quot;escape&quot; mechanism provided
18702 to make this work.
18704 Look <A HREF="h_edit_nav_cmds">here</A>
18705 to see the available Editing and Navigation commands.
18707 &lt;End of help on this topic&gt;
18708 </BODY>
18709 </HTML>
18710 ======= h_config_role_setlitsig =======
18711 <HTML>
18712 <HEAD>
18713 <TITLE>Set Literal Signature Explained</TITLE>
18714 </HEAD>
18715 <BODY>
18716 <H1>Set Literal Signature Explained</H1>
18718 This describes part of the action to be taken if the Pattern for this
18719 role is a match.
18720 This field contains the actual text for your signature, as opposed to
18721 the name of a file containing your signature.
18722 If this is defined it takes precedence over any value set in the
18723 &quot;Set Signature&quot; field.
18725 This is simply a different way to store the signature.
18726 The signature is stored inside your Alpine configuration file instead of in
18727 a separate file.
18728 Tokens work the same way they do with
18729 <A HREF="h_config_role_setsig">Set Signature</A>, so refer to the
18730 help text there for more information.
18733 The two character sequence &#92;n (backslash followed by
18734 the character n) will be used to signify a line-break in your signature.
18735 You don't have to enter the &#92;n, but it will be visible in the
18736 CHANGE THIS ROLE RULE window after you are done editing the signature.
18738 Look <A HREF="h_edit_nav_cmds">here</A>
18739 to see the available Editing and Navigation commands.
18741 &lt;End of help on this topic&gt;
18742 </BODY>
18743 </HTML>
18744 ======= h_config_role_setsig =======
18745 <HTML>
18746 <HEAD>
18747 <TITLE>Set Signature Explained</TITLE>
18748 </HEAD>
18749 <BODY>
18750 <H1>Set Signature Explained</H1>
18752 This describes part of the action to be taken if the Pattern for this
18753 role is a match.
18755 If either the default <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A>
18756 option from Setup/Config
18757 or the &quot;Set LiteralSig&quot; option for this role are defined,
18758 then this option will be ignored.
18759 You can tell that that is the case because the value of this
18760 option will show up as
18762 <CENTER><SAMP>&lt;Ignored: using LiteralSig instead&gt;</SAMP></CENTER>
18764 You may either use all Literal Signatures (signatures stored in your
18765 configuration file) throughout Alpine, or all signature files.
18766 You can't mix the two.
18768 This field consists of a filename that will be used as the signature
18769 file when using this role.
18771 If the filename is followed by a vertical bar (|) then instead
18772 of reading the contents of the file the file is assumed to be a
18773 program that will produce the text to be used on its standard output.
18774 The program can't have any arguments and doesn't receive any input from Alpine,
18775 but the rest of the processing works as if the contents came from a file.
18777 Instead of storing the data in a local file, the
18778 signature data may be stored remotely in an IMAP folder.
18779 In order to do this, 
18780 you must use a remote name for the signature.
18781 A remote signature name might look like:
18783 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/sig3</SAMP></CENTER>
18786 The syntax used here is the same as the syntax used for a remote
18787 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18788 Note that you may not access an existing signature file remotely,
18789 you have to create a new <EM>folder</EM> that contains the signature data.
18790 If the name you use here for the signature data is a remote name, then when
18791 you edit the file using the &quot;F&quot; command the data will
18792 be saved remotely in the folder.
18793 You aren't required to do anything special to create the folder, it
18794 gets created if you use a remote name.
18797 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18798 the name of the file) you have specified.
18799 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18801 Besides containing regular text, a signature file may also
18802 contain (or a signature program may produce) tokens that are replaced with text
18803 that depends on the message you are replying to or forwarding.
18804 The tokens all look like _word_ (a word surrounded by underscores).
18805 For example, if the token
18807 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18809 is included in the text of the signature file, then when you reply to
18810 or forward a message, the token will be replaced with the actual date
18811 the message you are replying to or forwarding was sent.
18813 If you use a role that has a signature file for a plain composition
18814 (that is, not a reply or forward) then there is no original message, so
18815 any tokens that depend on the message will be replaced with nothing.
18816 So if you want a signature file to be useful for new compositions it
18817 shouldn't include any of the tokens that depend on the message being
18818 replied to or forwarded.
18820 The list of available tokens is
18821 <A HREF="h_index_tokens">here</A>.
18823 Actually, for the adventurous, there is a way to conditionally include text based
18824 on whether or not a token would result in specific replacement text.
18825 For example, you could include some text based on whether or not
18826 the _NEWS_ token would result in any newsgroups if it was used.
18827 It's explained in detail
18828 <A HREF="h_reply_token_conditionals">here</A>.
18830 In the very unlikely event that you want to include a literal token in
18831 a signature file, you must precede it with a backslash character.
18832 For example, to include the literal text _DATE_ you must actually use
18833 &#92;_DATE_.
18834 It is not possible to have a literal backslash followed by an expanded token.
18836 A blank field here means that Alpine will use its normal rules for deciding
18837 which file (if any) to use for the signature file.
18839 An alternate method for storing the signature is available in
18840 <A HREF="h_config_role_setlitsig">Set Literal Signature</A>.
18842 Look <A HREF="h_edit_nav_cmds">here</A>
18843 to see the available Editing and Navigation commands.
18845 &lt;End of help on this topic&gt;
18846 </BODY>
18847 </HTML>
18848 ======= h_config_role_settempl =======
18849 <HTML>
18850 <HEAD>
18851 <TITLE>Set Template Explained</TITLE>
18852 </HEAD>
18853 <BODY>
18854 <H1>Set Template Explained</H1>
18856 This describes part of the action to be taken if the Pattern for this
18857 role is a match.
18858 This field consists of a filename that will be used as the template
18859 file when using this role.
18860 The template file is a file that is included at the top of the message you
18861 are composing.
18863 If the filename is followed by a vertical bar (|) then instead
18864 of reading the contents of the file the file is assumed to be a
18865 program that will produce the text to be used on its standard output.
18866 The program can't have any arguments and doesn't receive any input from Alpine,
18867 but the rest of the processing works as if the contents came from a file.
18869 Instead of storing the data in a local file, the
18870 template may be stored remotely in an IMAP folder.
18871 In order to do this, 
18872 you must use a remote name for the template.
18873 A remote template name might look like:
18875 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/templ3</SAMP></CENTER>
18878 The syntax used here is the same as the syntax used for a remote
18879 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>.
18880 Note that you may not access an existing template file remotely,
18881 you have to create a new <EM>folder</EM> that contains the template data.
18882 If the name you use here for the template is a remote name, then when
18883 you edit the file using the &quot;F&quot; command the data will
18884 be saved remotely in the folder.
18885 You aren't required to do anything special to create the folder, it
18886 gets created if you use a remote name.
18888 If you type &quot;F&quot; you may edit the contents of the file (as opposed to
18889 the name of the file) you have specified.
18890 If you type &quot;T&quot; you may use a browser to choose an existing filename.
18892 Besides containing regular text, the template file may also
18893 contain (or a template file program may produce) tokens that are replaced with text
18894 that depends on the message you are replying to or forwarding.
18895 The tokens all look like _word_ (a word surrounded by underscores).
18896 For example, if the token
18898 <CENTER><SAMP>_DATE_</SAMP></CENTER>
18900 is included in the text of the template file, then when you reply to
18901 or forward a message, the token will be replaced with the actual date
18902 the message you are replying to or forwarding was sent.
18904 If you use a role that has a template file for a plain composition
18905 (that is, not a reply or forward) then there is no original message, so
18906 any tokens that depend on the message will be replaced with nothing.
18907 So if you want a template file to be useful for new compositions it
18908 shouldn't include any of the tokens that depend on the message being
18909 replied to or forwarded.
18911 The list of available tokens is
18912 <A HREF="h_index_tokens">here</A>.
18914 Actually, for the adventurous, there is a way to conditionally include text based
18915 on whether or not a token would result in specific replacement text.
18916 For example, you could include some text based on whether or not
18917 the _NEWS_ token would result in any newsgroups if it was used.
18918 It's explained in detail
18919 <A HREF="h_reply_token_conditionals">here</A>.
18921 In the very unlikely event that you want to include a literal token in
18922 a template file, you must precede it with a backslash character.
18923 For example, to include the literal text _DATE_ you must actually use
18924 &#92;_DATE_.
18925 It is not possible to have a literal backslash followed by an expanded token.
18927 A blank template field means that Alpine will not use a template file when
18928 this role is being used.
18930 Look <A HREF="h_edit_nav_cmds">here</A>
18931 to see the available Editing and Navigation commands.
18933 &lt;End of help on this topic&gt;
18934 </BODY>
18935 </HTML>
18936 ======= h_config_filt_stat_imp =======
18937 <HTML>
18938 <HEAD>
18939 <TITLE>Set Important Status Explained</TITLE>
18940 </HEAD>
18941 <BODY>
18942 <H1>Set Important Status Explained</H1>
18944 This describes part of the action to be taken if the Pattern for this
18945 filter is a match.
18946 If set to &quot;Don't change it&quot; then this does nothing.
18947 If set to &quot;Set this state&quot; then the Important flag is set
18948 for the matching message.
18949 If set to &quot;Clear this state&quot; then the Important flag is cleared
18950 for the matching message.
18951 The important flag usually causes an asterisk to show up in the MESSAGE
18952 INDEX.
18953 It may also be useful when selecting a set of messages
18954 with the Select command.
18956 Look <A HREF="h_edit_nav_cmds">here</A>
18957 to see the available Editing and Navigation commands.
18959 &lt;End of help on this topic&gt;
18960 </BODY>
18961 </HTML>
18962 ======= h_config_filt_stat_new =======
18963 <HTML>
18964 <HEAD>
18965 <TITLE>Set New Status Explained</TITLE>
18966 </HEAD>
18967 <BODY>
18968 <H1>Set New Status Explained</H1>
18970 This describes part of the action to be taken if the Pattern for this
18971 filter is a match.
18972 If set to &quot;Don't change it&quot; then this does nothing.
18973 If set to &quot;Set this state&quot; then the
18974 matching message is marked New.
18975 If set to &quot;Clear this state&quot; then the
18976 matching message is marked Seen.
18978 Look <A HREF="h_edit_nav_cmds">here</A>
18979 to see the available Editing and Navigation commands.
18981 &lt;End of help on this topic&gt;
18982 </BODY>
18983 </HTML>
18984 ======= h_config_filt_stat_ans =======
18985 <HTML>
18986 <HEAD>
18987 <TITLE>Set Answered Status Explained</TITLE>
18988 </HEAD>
18989 <BODY>
18990 <H1>Set Answered Status Explained</H1>
18992 This describes part of the action to be taken if the Pattern for this
18993 filter is a match.
18994 If set to &quot;Don't change it&quot; then this does nothing.
18995 If set to &quot;Set this state&quot; then the Answered flag is set
18996 for the matching message.
18997 If set to &quot;Clear this state&quot; then the Answered flag is cleared
18998 for the matching message.
19000 Look <A HREF="h_edit_nav_cmds">here</A>
19001 to see the available Editing and Navigation commands.
19003 &lt;End of help on this topic&gt;
19004 </BODY>
19005 </HTML>
19006 ======= h_config_filt_stat_del =======
19007 <HTML>
19008 <HEAD>
19009 <TITLE>Set Deleted Status Explained</TITLE>
19010 </HEAD>
19011 <BODY>
19012 <H1>Set Deleted Status Explained</H1>
19014 This describes part of the action to be taken if the Pattern for this
19015 filter is a match.
19016 If set to &quot;Don't change it&quot; then this does nothing.
19017 If set to &quot;Set this state&quot; then the
19018 matching message is marked Deleted.
19019 If set to &quot;Clear this state&quot; then the
19020 matching message is marked UnDeleted.
19022 You should not use this option unless you are prepared to have matching
19023 messages expunged from the folder permanently.
19024 For example, if you type the Expunge command, this filter is applied
19025 before the expunge, so matching messages will be marked Deleted and then
19026 will be permanently expunged from the folder.
19027 However, since the index isn't redrawn in between the time that the message
19028 is marked Deleted and the time that you are asked to expunge, the only
19029 indication that you are expunging the message comes in the number of messages
19030 being expunged.
19031 The same thing may happen when you close a folder.
19032 It is also possible that an expunge not initiated by you will
19033 delete matching messages.
19035 Look <A HREF="h_edit_nav_cmds">here</A>
19036 to see the available Editing and Navigation commands.
19038 &lt;End of help on this topic&gt;
19039 </BODY>
19040 </HTML>
19041 ======= h_config_role_scoreval =======
19042 <HTML>
19043 <HEAD>
19044 <TITLE>Score Value Explained</TITLE>
19045 </HEAD>
19046 <BODY>
19047 <H1>Score Value Explained</H1>
19049 A message's score is the sum of the Score Values from all of the Scoring rules
19050 with Patterns that match the message.
19051 The value you give here is the Score Value associated with this rule.
19052 A Score Value is an integer between -100 and 100, with the default
19053 value of zero.
19055 Alternatively, if the
19056 <A HREF="h_config_role_scorehdrtok">&quot;Score From Header&quot;</A>
19057 field is defined
19058 (on the line right below the &quot;Score Value&quot; field)
19059 then the &quot;Score Value&quot; is ignored and
19060 the &quot;Score From Header&quot; field is used instead.
19062 Look <A HREF="h_edit_nav_cmds">here</A>
19063 to see the available Editing and Navigation commands.
19065 &lt;End of help on this topic&gt;
19066 </BODY>
19067 </HTML>
19068 ======= h_config_role_scorehdrtok =======
19069 <HTML>
19070 <HEAD>
19071 <TITLE>Score Value From Header Explained</TITLE>
19072 </HEAD>
19073 <BODY>
19074 <H1>Score Value From Header Explained</H1>
19076 This option provides a way to use a number that appears in the headers of your
19077 messages as the message's score, or as a component of that score.
19078 If this field is defined then it is used instead of the &quot;Score Value&quot;.
19079 The idea behind this option is that there may be a score embedded in the
19080 headers of messages that has already been calculated outside of Alpine.
19081 For example, messages delivered to you may contain an &quot;X-Spam&quot; header and
19082 somewhere in that header there is a score.
19084 The value for this option is the name of the header followed by parentheses
19085 with two arguments inside:
19087 <CENTER><SAMP>HeaderName(field_number,field_separators)</SAMP></CENTER>
19089 No space is allowed between the comma and the start of the field_separators.
19090 It would be interpreted as the first separator if it was there.
19091 Field 0 is the whole line, Field 1 is the data up to the first separator, Field 2
19092 starts after that and goes to the second separator, and so on.
19093 It's easier to explain with examples.
19095 <CENTER><SAMP>X-Spam(2,&quot;&nbsp;&quot;)</SAMP></CENTER>
19097 In the above example the header that is used is the &quot;X-Spam&quot; header.
19098 The value of that header (the part after the colon and the space) is split
19099 into fields separated by spaces.
19101 <CENTER><SAMP>Field1 &lt;space&gt; Field2 &lt;space&gt; Field3 ...</SAMP></CENTER>
19103 The second field is selected and converted to an integer. It only makes sense
19104 if Field2 really is an integer.
19106 Here's an example of a SpamAssassin header.
19107 The exact look of the header will vary, but if your incoming mail
19108 contains headers that look like the following
19110 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
19112 you might want to use the hits value as a score.
19113 Since the score is an integer value you can't make use of the decimal part of
19114 the number, but
19115 you might split off the hits=10 part as a score by using the characters &quot;=&quot;
19116 and &quot;.&quot; as your separators.
19118 <CENTER><SAMP>X-Spam-Status(2,&quot;=.&quot;)</SAMP></CENTER>
19120 The first field starts with the Y in Yes and goes until the &quot;=&quot; after
19121 hits.
19122 The second field is &quot;10&quot; so the score value would be 10.
19124 Another example we've seen has headers that look like
19126 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
19128 Because there are two equals before the 7% the value
19130 <CENTER><SAMP>X-Spam(3,&quot;=%&quot;)</SAMP></CENTER>
19132 should capture the probability as the score.
19134 The Score From Header scoring value actually works just like the
19135 regular Score Value in that the rest of the pattern has to match before
19136 it is used and the scores from all the different scoring rules that
19137 match for a particular message are added together.
19138 When using the Score From Header method it may (or may not) make sense to
19139 use only a single scoring rule with a pattern that matches every message.
19141 Look <A HREF="h_edit_nav_cmds">here</A>
19142 to see the available Editing and Navigation commands.
19144 &lt;End of help on this topic&gt;
19145 </BODY>
19146 </HTML>
19147 ======= h_config_role_replyuse =======
19148 <HTML>
19149 <HEAD>
19150 <TITLE>Reply Use Explained</TITLE>
19151 </HEAD>
19152 <BODY>
19153 <H1>Reply Use Explained</H1>
19155 This option determines how this particular role will be used when Replying
19156 to a message.
19157 There are three possible values for this option.
19158 The value &quot;Never&quot;
19159 means that this role will not be a candidate for use when Replying.
19160 The role's Pattern will not be checked for a match, however the role will
19161 be available to be manually switched to if there is a confirmation prompt.
19164 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
19165 mean that you do want to consider this role when Replying.
19166 For either of these settings, the role's Pattern will be compared with
19167 the message being replied to.
19168 If there is a match then this role will either be used without confirmation
19169 or will be the default when confirmation is asked for, depending on
19170 which of the two options is selected.
19171 If confirmation is requested, you will also have a chance to
19172 manually change the role to any one of your other roles.
19175 You won't be prompted for confirmation if none of your role Patterns
19176 match the message being replied to.
19177 This is independent of the value of the current option.
19178 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19179 feature may be used to change this behavior.
19181 &lt;End of help on this topic&gt;
19182 </BODY>
19183 </HTML>
19184 ======= h_config_role_forwarduse =======
19185 <HTML>
19186 <HEAD>
19187 <TITLE>Forward Use Explained</TITLE>
19188 </HEAD>
19189 <BODY>
19190 <H1>Forward Use Explained</H1>
19192 This option determines how this particular role will be used when Forwarding
19193 a message.
19194 There are three possible values for this option.
19195 The value &quot;Never&quot;
19196 means that this role will not be a candidate for use when Forwarding.
19197 The role's Pattern will not be checked for a match, however the role will
19198 be available to be manually switched to if there is a confirmation prompt.
19201 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
19202 mean that you do want to consider this role when Forwarding.
19203 For either of these settings, the role's Pattern will be compared with
19204 the message being forwarded.
19205 If there is a match then this role will either be used without confirmation
19206 or will be the default when confirmation is asked for, depending on
19207 which of the two options is selected.
19208 If confirmation is requested, you will also have a chance to
19209 manually change the role to any one of your other roles.
19212 You won't be prompted for confirmation if none of your role Patterns
19213 match the message being forwarded.
19214 This is independent of the value of the current option.
19215 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19216 feature may be used to change this behavior.
19218 &lt;End of help on this topic&gt;
19219 </BODY>
19220 </HTML>
19221 ======= h_config_role_composeuse =======
19222 <HTML>
19223 <HEAD>
19224 <TITLE>Compose Use Explained</TITLE>
19225 </HEAD>
19226 <BODY>
19227 <H1>Compose Use Explained</H1>
19229 This option determines how this particular role will be used when Composing
19230 a new message using the &quot;Compose&quot; command.
19231 This does not affect what happens when using the &quot;Role&quot; command
19232 to compose a new message.
19233 The &quot;Role&quot; command allows you to select a role from all of the
19234 roles you have defined, regardless of what Uses you've assigned to those
19235 roles.
19238 There are three possible values for this option.
19239 The value &quot;Never&quot;
19240 means that this role will not be a candidate for use when Composing.
19241 The role's Current Folder Type will not be checked for a match, however the role
19242 will be available to be manually switched to if there is a confirmation prompt.
19245 The options &quot;With confirmation&quot; and &quot;Without confirmation&quot;
19246 mean that you do want to consider this role when Composing.
19247 For either of these settings,
19248 the role's Current Folder Type will be checked (since there is no message
19249 to compare with, the rest of the Pattern is considered a match).
19250 If there is a match then this role will either be used without confirmation
19251 or will be the default when confirmation is asked for, depending on
19252 which of the two options is selected.
19253 If confirmation is requested, you will also have a chance to
19254 manually change the role to any one of your other roles.
19257 When using the Compose command the role checking is a little different
19258 because there is no message being replied to or forwarded.
19259 Because of this the Current Folder Type is checked but the header pattern
19260 fields, the AllText pattern, the BodyText pattern, and the Score Interval are all ignored.
19261 A role is considered to be a match if it is a candidate for Compose Use and
19262 its Current Folder Type matches the currently open folder.
19263 This could be useful if you want to set a role based on the folder you
19264 are reading, or the type of folder you are reading.
19267 You won't be prompted for confirmation if none of your role Patterns
19268 are a match.
19269 This is independent of the value of the current option.
19270 The <A HREF="h_config_confirm_role"><!--#echo var="FEAT_confirm-role-even-for-default"--></A>
19271 feature may be used to change this behavior.
19273 &lt;End of help on this topic&gt;
19274 </BODY>
19275 </HTML>
19276 ======= h_config_filter_folder =======
19277 <HTML>
19278 <HEAD>
19279 <TITLE>Filter Folder Explained</TITLE>
19280 </HEAD>
19281 <BODY>
19282 <H1>Filter Folder Explained</H1>
19284 When the Filter Action is set to &quot;Move&quot;,
19285 the folder or folders specified here will be used to store messages matching
19286 the provided pattern.
19289 If you set the Filter Action to &quot;Move&quot; you must give a folder name
19290 here.
19293 If you wish,
19294 you may choose a folder from your folder collections by using the
19295 &quot;T&quot; command.
19297 Besides regular text, the folder name may also contain
19298 tokens that are replaced with text representing the current date
19299 when you run Alpine.
19300 For example, if the folder name you use is
19302 <CENTER><SAMP>abc-_CURYEAR_-_CURMONTHABBREV_</SAMP></CENTER>
19304 that is replaced with something like
19306 <CENTER><SAMP>abc-2004-oct</SAMP></CENTER>
19310 <CENTER><SAMP>abc-_CURYEAR2DIGIT_-_CURMONTH2DIGIT_</SAMP></CENTER>
19312 becomes
19314 <CENTER><SAMP>abc-04-10</SAMP></CENTER>
19316 The token names must be surrounded by underscores in order to be recognized
19317 as tokens.
19318 The tokens that may be used are those that are derived from the current date.
19319 They're listed near the bottom of the list of tokens give
19320 <A HREF="h_index_tokens">here</A>.
19322 Look &quot;<A HREF="h_rule_patterns">here</A>&quot;
19323 for more information on Patterns.
19325 Look <A HREF="h_edit_nav_cmds">here</A>
19326 to see the available Editing and Navigation commands.
19328 &lt;End of help on this topic&gt;
19329 </BODY>
19330 </HTML>
19331 ======= h_config_filter_kw_set =======
19332 <HTML>
19333 <HEAD>
19334 <TITLE>Set These Keywords Explained</TITLE>
19335 </HEAD>
19336 <BODY>
19337 <H1>Set These Keywords Explained</H1>
19339 This describes part of the action to be taken if the Pattern for this
19340 filter is a match.
19341 Read a little about keywords in the help text for the
19342 <A HREF="h_common_flag">Flag</A> command.
19343 This option is a list of keywords that will be Set when there is a match.
19344 If you wish, you may choose keywords from the list of keywords you have
19345 defined with the &quot;T&quot; command.
19346 You may add new keywords by defining them in the
19347 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19348 If you have given a keyword a nickname when configuring it,
19349 that nickname may be used instead of the actual keyword.
19352 Look <A HREF="h_edit_nav_cmds">here</A>
19353 to see the available Editing and Navigation commands.
19355 &lt;End of help on this topic&gt;
19356 </BODY>
19357 </HTML>
19358 ======= h_config_filter_kw_clr =======
19359 <HTML>
19360 <HEAD>
19361 <TITLE>Clear These Keywords Explained</TITLE>
19362 </HEAD>
19363 <BODY>
19364 <H1>Clear These Keywords Explained</H1>
19366 This describes part of the action to be taken if the Pattern for this
19367 filter is a match.
19368 Read a little about keywords in the help text for the
19369 <A HREF="h_common_flag">Flag</A> command.
19370 This option is a list of keywords that will be Cleared when there is a match.
19371 If you wish, you may choose keywords from the list of keywords you have
19372 defined with the &quot;T&quot; command.
19373 You may add new keywords by defining them in the
19374 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
19375 If you have given a keyword a nickname when configuring it,
19376 that nickname may be used instead of the actual keyword.
19379 Look <A HREF="h_edit_nav_cmds">here</A>
19380 to see the available Editing and Navigation commands.
19382 &lt;End of help on this topic&gt;
19383 </BODY>
19384 </HTML>
19385 ======= h_index_tokens =======
19386 <HTML>
19387 <HEAD>
19388 <TITLE>Tokens for Index and Replying</TITLE>
19389 </HEAD>
19390 <BODY>
19392 This set of special tokens may be used in the
19393 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option,
19394 in the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
19395 in signature files,
19396 in template files used in
19397 <A HREF="h_rules_roles">&quot;roles&quot;</A>, and in the folder name
19398 that is the target of a Filter Rule.
19399 Some of them aren't available in all situations.
19401 The tokens are used as they appear below for the &quot;<!--#echo var="VAR_index-format"-->&quot;
19402 option, but they must be surrounded by underscores for the
19403 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option, in signature and template files,
19404 and in the target of Filter Rules.
19408 <H1><EM>Tokens Available for all Cases (except Filter Rules)</EM></H1>
19410 <DL>
19411 <DT>SUBJECT</DT>
19412 <DD>
19413 This token represents the Subject the sender gave the message.
19414 Alternatives for use in the index screen are SHORTSUBJECT,
19415 SUBJKEY, SHORTSUBJKEY, SUBJKEYINIT, SHORTSUBJKEYINIT, SUBJECTTEXT, 
19416 SUBJKEYTEXT, and SUBJKEYINITTEXT.
19417 You may color the subject text in the MESSAGE INDEX screen differently by using the
19418 <A HREF="h_config_index_subject_color">Index Subject Color</A> and the
19419 <A HREF="h_config_index_opening_color">Index Opening Color</A>
19420 options available from
19421 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19422 </DD>
19424 <DT>FROM</DT>
19425 <DD>
19426 This token represents the personal name (or email address if the name
19427 is unavailable) of the person specified in the message's &quot;From:&quot;
19428 header field.
19429 You may color the from text in the MESSAGE INDEX screen differently by using the
19430 <A HREF="h_config_index_from_color">Index From Color</A>
19431 option available from
19432 the <A HREF="h_color_setup">Setup Kolor</A> screen.
19433 </DD>
19435 <DT>ADDRESS</DT>
19436 <DD>
19437 This is similar to the &quot;FROM&quot; token, only it is always the
19438 email address, never the personal name.
19439 For example, &quot;mailbox@domain&quot;.
19440 </DD>
19442 <DT>MAILBOX</DT>
19443 <DD>
19444 This is the same as the &quot;ADDRESS&quot; except that the 
19445 domain part of the address is left off.
19446 For example, &quot;mailbox&quot;.
19447 </DD>
19449 <DT>SENDER</DT>
19450 <DD>
19451 This token represents the personal name (or email address) of the person
19452 listed in the message's &quot;Sender:&quot; header field.
19453 </DD>
19455 <DT>TO</DT>
19456 <DD>
19457 This token represents the personal names (or email addresses if the names
19458 are unavailable) of the persons specified in the
19459 message's &quot;To:&quot; header field.
19460 </DD>
19462 <DT>NEWSANDTO</DT>
19463 <DD>
19464 This token represents the newsgroups from the
19465 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19466 the personal names (or email addresses if the names
19467 are unavailable) of the persons specified in the
19468 message's &quot;To:&quot; header field.
19469 </DD>
19471 <DT>TOANDNEWS</DT>
19472 <DD>
19473 Same as &quot;NEWSANDTO&quot; except in the opposite order.
19474 </DD>
19476 <DT>NEWS</DT>
19477 <DD>
19478 This token represents the newsgroups from the
19479 message's &quot;Newsgroups:&quot; header field.
19480 </DD>
19482 <DT>CC</DT>
19483 <DD>
19484 This token represents the personal names (or email addresses if the names
19485 are unavailable) of the persons specified in the
19486 message's &quot;Cc:&quot; header field.
19487 </DD>
19489 <DT>RECIPS</DT>
19490 <DD>
19491 This token represents the personal names (or email addresses if the names
19492 are unavailable) of the persons specified in both the
19493 message's &quot;To:&quot; header field and
19494 the message's &quot;Cc:&quot; header field.
19495 </DD>
19497 <DT>NEWSANDRECIPS</DT>
19498 <DD>
19499 This token represents the newsgroups from the
19500 message's &quot;Newsgroups:&quot; header field <EM>and</EM>
19501 the personal names (or email addresses if the names
19502 are unavailable) of the persons specified in the
19503 message's &quot;To:&quot; and &quot;Cc:&quot; header fields.
19504 </DD>
19506 <DT>RECIPSANDNEWS</DT>
19507 <DD>
19508 Same as &quot;NEWSANDRECIPS&quot; except in the opposite order.
19509 </DD>
19511 <DT>INIT</DT>
19512 <DD>
19513 This token represents the initials from the personal name
19514 of the person specified in the message's &quot;From:&quot;
19515 header field.
19516 If there is no personal name, it is blank.
19517 </DD>
19519 <DT>DATE</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 has the format MMM DD. For example, &quot;Oct 23&quot;.
19524 The feature
19525 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>,
19526 which adjusts for the timezone the message was sent from,
19527 may have an effect on the value of this token as well as the values of
19528 all of the other DATE or TIME tokens.
19529 Some of the DATE and TIME tokens are displayed in a locale-specific
19530 way unless the option
19531 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is set.
19532 </DD>
19534 <DT>SMARTDATE</DT>
19535 <DD>
19536 This token represents the date on which the message was sent, according
19537 to the &quot;Date&quot; header field.
19538 It is &quot;Today&quot; if the message was sent today,
19539 &quot;Yesterday&quot; for yesterday,
19540 &quot;Wednesday&quot; if it was last Wednesday, and so on. If the
19541 message is from last year and is more than six months old it includes the year, as well.
19542 See the SMARTDATE alternatives below, as well.
19543 </DD>
19545 <DT>SMARTTIME</DT>
19546 <DD>
19547 This token represents the most relevant elements of the date on which
19548 the message was sent (according to the &quot;Date&quot; header field),
19549 in a compact form. If the message was sent today, only the time is used
19550 (e.g. &quot;9:22am&quot;, &quot;10:07pm&quot;); if it was sent during
19551 the past week, the day of the week and the hour are used
19552 (e.g. &quot;Wed09am&quot;, &quot;Thu10pm&quot;); other dates are
19553 given as date, month, and year (e.g. &quot;23Aug00&quot;,
19554 &quot;9Apr98&quot;).
19555 </DD>
19557 <DT>SMARTTIME24</DT>
19558 <DD>
19559 This token has the structure &quot;day hour:minute&quot;
19560 (e.g. &quot;Sun 19:03&quot;) for messages dated less than a week
19561 from the current date, or &quot;month day&quot; (e.g.
19562 &quot;Nov 23&quot;) for messages dated less than 6 months
19563 ago, or &quot;day/month/year&quot; (e.g &quot;06/Jan/16&quot;)
19564 for messages dated more than 6 months ago. It uses 9 characters
19565 of the width of the screen, and it left aligned.
19566 </DD>
19568 <DT>SMARTDATETIME</DT>
19569 <DD>
19570 This is a combination of SMARTDATE and SMARTTIME.
19571 It is SMARTDATE unless the SMARTDATE value is &quot;Today&quot;, in which
19572 case it is SMARTTIME.
19573 See the SMARTDATETIME alternatives below, as well.
19574 </DD>
19576 <DT>DATEISO</DT>
19577 <DD>
19578 This token represents the date on which the message was sent, according
19579 to the &quot;Date&quot; header field.
19580 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
19581 </DD>
19583 <DT>SHORTDATEISO</DT>
19584 <DD>
19585 This token represents the date on which the message was sent, according
19586 to the &quot;Date&quot; header field.
19587 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
19588 </DD>
19590 <DT>SHORTDATE1</DT>
19591 <DD>
19592 This token represents the date on which the message was sent, according
19593 to the &quot;Date&quot; header field.
19594 It has the format MM/DD/YY. For example, &quot;10/23/98&quot;.
19595 </DD>
19597 <DT>SHORTDATE2</DT>
19598 <DD>
19599 This token represents the date on which the message was sent, according
19600 to the &quot;Date&quot; header field.
19601 It has the format DD/MM/YY. For example, &quot;23/10/98&quot;.
19602 </DD>
19604 <DT>SHORTDATE3</DT>
19605 <DD>
19606 This token represents the date on which the message was sent, according
19607 to the &quot;Date&quot; header field.
19608 It has the format DD.MM.YY. For example, &quot;23.10.98&quot;.
19609 </DD>
19611 <DT>SHORTDATE4</DT>
19612 <DD>
19613 This token represents the date on which the message was sent, according
19614 to the &quot;Date&quot; header field.
19615 It has the format YY.MM.DD. For example, &quot;98.10.23&quot;.
19616 </DD>
19618 <DT>LONGDATE</DT>
19619 <DD>
19620 This token represents the date on which the message was sent, according
19621 to the &quot;Date&quot; header field.
19622 It has the format MMM DD, YYYY. For example, &quot;Oct 23, 1998&quot;.
19623 </DD>
19625 <DT>SMARTDATE alternatives</DT>
19626 <DD>
19627 There are several versions of SMARTDATE that are all the same except
19628 for the way they format dates far in the past.
19629 SMARTDATE formats the date using the information from your locale settings
19630 to format the date string. It may end up formatting dates so that they look
19631 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19632 The feature
19633 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19634 may have an effect on the values of these tokens.
19635 If you want more control you may use one of the following.
19636   <DL>
19637   <DT>SMARTDATE</DT> <DD>If the option
19638 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19639 then this will be locale specific. Control this with the
19640 LC_TIME locale setting on a UNIX system. On Windows
19641 the Regional Options control panel may be used to set the Short date
19642 format. At the programming level, the strftime routine is what Alpine
19643 uses to print the date.
19644 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19645 to SMARTDATES1.</DD>
19646   <DT>SMARTDATEISO</DT> <DD>DATEISO format. See text above.</DD>
19647   <DT>SMARTDATESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19648   <DT>SMARTDATES1</DT> <DD>SHORTDATE1 format.</DD>
19649   <DT>SMARTDATES2</DT> <DD>SHORTDATE2 format.</DD>
19650   <DT>SMARTDATES3</DT> <DD>SHORTDATE3 format.</DD>
19651   <DT>SMARTDATES4</DT> <DD>SHORTDATE4 format.</DD>
19652   </DL>
19653 </DD>
19655 <DT>SMARTDATETIME alternatives</DT>
19656 <DD>
19657 There are several versions of SMARTDATETIME that are all very similar.
19658 The ones that end in 24 use a 24-hour clock for Today's messages instead
19659 of a 12-hour clock.
19660 The other variation is
19661 for the way they format dates far in the past.
19662 SMARTDATETIME and SMARTDATETIME24 format the date using the information from your locale settings
19663 to format the date string. It may end up formatting dates so that they look
19664 like DATEISO tokens, or SHORTDATE2 tokens, or something else entirely.
19665 The feature
19666 <A HREF="h_config_dates_to_local"><!--#echo var="FEAT_convert-dates-to-localtime"--></A>
19667 may have an effect on the values of these tokens.
19668 The possible choices are:
19669   <DL>
19670   <DT>SMARTDATETIME</DT> <DD>If the option
19671 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A> is not set
19672 then this will be locale specific. Control this with the
19673 LC_TIME locale setting on a UNIX system. On Windows
19674 the Regional Options control panel may be used to set the Short date
19675 format. At the programming level, the strftime routine is what Alpine
19676 uses to print the date.
19677 If the <!--#echo var="FEAT_disable-index-locale-dates"--> option is set then this is equivalent
19678 to SMARTDATETIMES1.</DD>
19679   <DT>SMARTDATETIME24</DT> <DD>Use TIME24 for Today</DD>
19680   <DT>SMARTDATETIMEISO</DT> <DD>DATEISO format. See text above.</DD>
19681   <DT>SMARTDATETIMEISO24</DT> <DD>Use TIME24 for Today</DD>
19682   <DT>SMARTDATETIMESHORTISO</DT> <DD>SHORTDATEISO format.</DD>
19683   <DT>SMARTDATETIMESHORTISO24</DT> <DD>Use TIME24 for Today</DD>
19684   <DT>SMARTDATETIMES1</DT> <DD>SHORTDATE1 format.</DD>
19685   <DT>SMARTDATETIMES124</DT> <DD>Use TIME24 for Today</DD>
19686   <DT>SMARTDATETIMES2</DT> <DD>SHORTDATE2 format.</DD>
19687   <DT>SMARTDATETIMES224</DT> <DD>Use TIME24 for Today</DD>
19688   <DT>SMARTDATETIMES3</DT> <DD>SHORTDATE3 format.</DD>
19689   <DT>SMARTDATETIMES324</DT> <DD>Use TIME24 for Today</DD>
19690   <DT>SMARTDATETIMES4</DT> <DD>SHORTDATE4 format.</DD>
19691   <DT>SMARTDATETIMES424</DT> <DD>Use TIME24 for Today</DD>
19692   </DL>
19693 </DD>
19695 <DT>DAYDATE</DT>
19696 <DD>
19697 This token represents the date on which the message was sent, according
19698 to the &quot;Date&quot; header field.
19699 It looks like &quot;Sat, 23 Oct 1998&quot;.
19700 This token is never converted in any locale-specific way.
19701 </DD>
19703 <DT>PREFDATE</DT>
19704 <DD>
19705 This token represents the date on which the message was sent, according
19706 to the &quot;Date&quot; header field.
19707 It is your operating system's idea of the preferred date representation for the current locale.
19708 Internally it uses the %x version of the date from the strftime routine.
19709 </DD>
19711 <DT>PREFTIME</DT>
19712 <DD>
19713 This token represents the time at which the message was sent, according
19714 to the &quot;Date&quot; header field.
19715 It is the preferred time representation for the current locale.
19716 Internally it uses the %X version of the time from the strftime routine.
19717 </DD>
19719 <DT>PREFDATETIME</DT>
19720 <DD>
19721 This token represents the date and time at which the message was sent, according
19722 to the &quot;Date&quot; header field.
19723 It is the preferred date and time representation for the current locale.
19724 Internally it uses the %c version of the time from the strftime routine.
19725 </DD>
19727 <DT>DAY</DT>
19728 <DD>
19729 This token represents the day of the month on which the message was sent,
19730 according to the &quot;Date&quot; header field.
19731 For example, &quot;23&quot; or &quot;9&quot;.
19732 </DD>
19734 <DT>DAY2DIGIT</DT>
19735 <DD>
19736 This token represents the day of the month on which the message was sent,
19737 according to the &quot;Date&quot; header field.
19738 For example, &quot;23&quot; or &quot;09&quot;.
19739 It is always 2 digits.
19740 </DD>
19742 <DT>DAYORDINAL</DT>
19743 <DD>
19744 This token represents the ordinal number that is the day of
19745 the month on which the message was sent,
19746 according to the &quot;Date&quot; header field.
19747 For example, &quot;23rd&quot; or &quot;9th&quot;.
19748 </DD>
19750 <DT>DAYOFWEEK</DT>
19751 <DD>
19752 This token represents the day of the week on which the message was sent,
19753 according to the &quot;Date&quot; header field.
19754 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
19755 </DD>
19757 <DT>DAYOFWEEKABBREV</DT>
19758 <DD>
19759 This token represents the day of the week on which the message was sent,
19760 according to the &quot;Date&quot; header field.
19761 For example, &quot;Sun&quot; or &quot;Wed&quot;.
19762 </DD>
19764 <DT>MONTHABBREV</DT>
19765 <DD>
19766 This token represents the month the message was sent, according
19767 to the &quot;Date&quot; header field.
19768 For example, &quot;Oct&quot;.
19769 </DD>
19771 <DT>MONTHLONG</DT>
19772 <DD>
19773 This token represents the month in which the message was sent, according
19774 to the &quot;Date&quot; header field.
19775 For example, &quot;October&quot;.
19776 </DD>
19778 <DT>MONTH</DT>
19779 <DD>
19780 This token represents the month in which the message was sent, according
19781 to the &quot;Date&quot; header field.
19782 For example, &quot;10&quot; or &quot;9&quot;.
19783 </DD>
19785 <DT>MONTH2DIGIT</DT>
19786 <DD>
19787 This token represents the month in which the message was sent, according
19788 to the &quot;Date&quot; header field.
19789 For example, &quot;10&quot; or &quot;09&quot;.
19790 It is always 2 digits.
19791 </DD>
19793 <DT>YEAR</DT>
19794 <DD>
19795 This token represents the year the message was sent, according
19796 to the &quot;Date&quot; header field.
19797 For example, &quot;1998&quot; or &quot;2001&quot;.
19798 </DD>
19800 <DT>YEAR2DIGIT</DT>
19801 <DD>
19802 This token represents the year the message was sent, according
19803 to the &quot;Date&quot; header field.
19804 For example, &quot;98&quot; or &quot;01&quot;.
19805 It is always 2 digits.
19806 </DD>
19808 <DT>TIME24</DT>
19809 <DD>
19810 This token represents the time at which the message was sent, according
19811 to the &quot;Date&quot; header field.
19812 There is no adjustment made for different time zones, so you'll get
19813 the time the message was sent according to the time zone the sender
19814 was in.
19815 It has the format HH:MM. For example, &quot;17:28&quot;.
19816 </DD>
19818 <DT>TIME12</DT>
19819 <DD>
19820 This token represents the time at which the message was sent, according
19821 to the &quot;Date&quot; header field.
19822 This time is for a 12 hour clock.
19823 It has the format HH:MMpm.
19824 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
19825 </DD>
19827 <DT>TIMEZONE</DT>
19828 <DD>
19829 This token represents the numeric timezone from
19830 the &quot;Date&quot; header field.
19831 It has the format [+-]HHMM. For example, &quot;-0800&quot;.
19832 </DD>
19834 </DL>
19837 <H1><EM>Tokens Available Only for <!--#echo var="VAR_index-format"--></EM></H1>
19839 <DL>
19840 <DT>MSGNO</DT>
19841 <DD>
19842 This token represents the message's current position in the folder that,
19843 of course, may change as the folder is sorted or new mail arrives.
19844 </DD>
19846 <DT>STATUS</DT>
19847 <DD>
19848 This token represents a three character wide field displaying various
19849 aspects of the message's state.
19850 The first character is either blank,
19851 a '*' for message marked Important, or a '+' indicating a message
19852 addressed directly to you (as opposed to your having received it via a
19853 mailing list, for example).
19854 When the feature
19855 &quot;<A HREF="h_config_mark_for_cc"><!--#echo var="FEAT_mark-for-cc"--></A>&quot;
19856 is set, if the first character would have been
19857 blank then it will instead be a '-' if the message is cc'd to you.
19858 The second character is typically blank,
19859 though the arrow cursor may occupy it if either the 
19860 &quot;<A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>&quot;
19861 or the
19862 &quot;<A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A>&quot; feature
19863 is set (or you actually are on a slow link).
19864 The third character is either '<A HREF="h_flag_deleted">D</A>' (Deleted),
19865 '<A HREF="h_flag_answered">A</A>' (Answered),
19866 '<A HREF="h_flag_forwarded">F</A>' (Forwarded),
19867 '<A HREF="h_flag_new">N</A>' (New), or blank.
19869 If you are using a threaded view of the index and this message is at the
19870 top of a collapsed portion of a thread,
19871 then this token refers to all of the messages in the collapsed portion of
19872 the thread instead of just the top message.
19873 The first character will be a '*' if <EM>any</EM> of the messages in the thread
19874 are marked Important, else a '+' if any of the messages are addressed
19875 to you, else a '-' if any of the messages are cc'd to you.
19876 The third character will be a 'D' if <EM>all</EM> of the messages
19877 in the collapsed thread are marked deleted,
19878 an 'A' if <EM>all</EM> of the messages
19879 in the collapsed thread are marked answered,
19880 it will be an 'N' if any of
19881 the messages are undeleted and unseen, and it will be blank otherwise.
19882 </DD>
19884 <DT>FULLSTATUS</DT>
19885 <DD>
19886 This token represents a less abbreviated alternative
19887 to the &quot;STATUS&quot; token.
19888 It is six characters wide.
19889 The first character is '+', '-', or blank, the
19890 second blank, the third either '*' or blank, the fourth
19891 '<A HREF="h_flag_new">N</A>' or blank,
19892 the fifth '<A HREF="h_flag_answered">A</A>'
19893 or blank, and the sixth character is
19894 either '<A HREF="h_flag_deleted">D</A>' or
19895 blank.
19897 If you are using a threaded view of the index and this message is at the
19898 top of a collapsed portion of a thread,
19899 then this token refers to all of the messages in the collapsed portion of
19900 the thread instead of just the top message.
19901 The first character is '+', '-', or blank depending on whether <EM>any</EM>
19902 of the messages in the collapsed thread are addressed to you or cc'd to you.
19903 The third character will be '*' if any of the messages are marked
19904 Important.
19905 The fourth character will be 'N' if all of the messages in the thread
19906 are New, else 'n' if some of the messages in the thread are New, else blank.
19907 The fifth character will be 'A' or 'a' or blank, and the sixth character
19908 will be 'D' or 'd' or blank.
19909 </DD>
19911 <DT>IMAPSTATUS</DT>
19912 <DD>
19913 This token represents an even less abbreviated alternative to the
19914 &quot;STATUS&quot; token.
19915 It differs from &quot;FULLSTATUS&quot; in only the fourth character, which is
19916 an 'N' if the message is new to this folder since the last time
19917 it was opened <EM>and</EM> it has not been viewed, an 'R' (Recent) if the message
19918 is new to the folder and has been viewed, a 'U' (Unseen) if the message is not 
19919 new to the folder since it was last opened <EM>but</EM> has not been
19920 viewed, or a blank if the message has been in the folder since it was
19921 last opened and has been viewed.
19923 If you are using a threaded view of the index and this message is at the
19924 top of a collapsed portion of a thread,
19925 then the fourth character will be
19926 'N' if all of the messages in the thread are unseen and recent;
19927 else 'n' if some of the messages in the thread are unseen and recent;
19928 else 'U' if all of the messages in the thread are unseen and not recent;
19929 else 'u' if some of the messages in the thread are unseen and not recent;
19930 else 'R' if all of the messages in the thread are seen and recent;
19931 else 'r' if some of the messages in the thread are seen and recent;
19932 else blank.
19933 </DD>
19935 <DT>SHORTIMAPSTATUS</DT>
19936 <DD>
19937 This is the same as the last four of the six characters of IMAPSTATUS,
19938 so the '+' To Me information will be missing.
19939 </DD>
19941 <DT>SIZE</DT>
19942 <DD>
19943 This token represents the total size, in bytes, of the message.
19944 If a &quot;K&quot; (Kilobyte)
19945 follows the number, the size is approximately 1,000
19946 times that many bytes (rounded to the nearest 1,000).
19947 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19948 1,000,000 times that many bytes.
19949 Commas are not used in this field.
19950 This field is seven characters wide, including the enclosing parentheses.
19951 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19952 The progression of sizes used looks like:
19955 <CENTER><SAMP>0 1 ... 9999 10K ... 999K 1.0M ... 99.9M 100M ... 2000M</SAMP></CENTER>
19957 </DD>
19959 <DT>SIZECOMMA</DT>
19960 <DD>
19961 This token represents the total size, in bytes, of the message.
19962 If a &quot;K&quot; (Kilobyte)
19963 follows the number, the size is approximately 1,000
19964 times that many bytes (rounded to the nearest 1,000).
19965 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19966 1,000,000 times that many bytes.
19967 Commas are used if the number shown is 1,000 or greater.
19968 The SIZECOMMA field is one character wider than the SIZE field.
19969 Sizes are rounded when &quot;K&quot; or &quot;M&quot; is present.
19970 The progression of sizes used looks like:
19973 <CENTER><SAMP>0 1 ... 99,999 100K ... 9,999K 10.0M ... 999.9M 1,000M ... 2,000M</SAMP></CENTER>
19975 </DD>
19977 <DT>KSIZE</DT>
19978 <DD>
19979 This token represents the total size of the message, expressed in
19980 kilobytes or megabytes, as most appropriate.
19981 These are 1,024 byte kilobytes and 1,024 x 1,024 byte megabytes.
19982 The progression of sizes used looks like:
19985 <CENTER><SAMP>0K 1K ... 1023K 1.0M ... 99.9M 100M ... 2047M</SAMP></CENTER>
19987 </DD>
19989 <DT>SIZENARROW</DT>
19990 <DD>
19991 This token represents the total size, in bytes, of the message.
19992 If a &quot;K&quot; (Kilobyte)
19993 follows the number, the size is approximately 1,000
19994 times that many bytes.
19995 If an &quot;M&quot; (Megabyte) follows the number, the size is approximately
19996 1,000,000 times that many bytes.
19997 If a &quot;G&quot; (Gigabyte) follows the number, the size is approximately
19998 1,000,000,000 times that many bytes.
19999 This field uses only five characters of screen width, including the enclosing
20000 parentheses.
20001 The progression of sizes used looks like:
20004 <CENTER><SAMP>0 1 ... 999 1K ... 99K .1M ... .9M 1M ... 99M .1G ... .9G 1G 2G</SAMP></CENTER>
20006 </DD>
20008 <DT>DESCRIPSIZE</DT>
20009 <DD>
20010 This token is intended to represent a more useful description of the
20011 message than just its size, but it isn't very useful at this point.
20012 The plus sign in this view means there are attachments.
20013 Note that including this token in
20014 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
20015 display a little while Alpine collects the necessary information.
20016 </DD>
20018 <DT>SHORTSUBJECT</DT> 
20019 <DD> This token is the same as SUBJECT, but removes 
20020 text between &quot;[&quot; and &quot;]&quot;. Typically text enclosed 
20021 between these characters corresponds to mailing list names, and may be 
20022 unnecessary or unwanted in some instances. 
20023 </DD>
20025 <DT>SUBJKEY</DT>
20026 <DD>
20027 This token is the same as the SUBJECT token unless keywords are set for
20028 the message.
20029 In that case, a list of keywords enclosed in braces will be prepended to
20030 the subject of the message.
20031 Only those keywords that you have defined in your
20032 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
20033 in Setup/Config are considered in the list.
20034 In other words, keywords that have been set by some other means, perhaps
20035 by another email program, won't show up unless included in
20036 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
20037 Having this set in the <!--#echo var="VAR_index-format"--> will also cause the keywords to be
20038 prepended to the subject in the MESSAGE TEXT screen.
20039 If you have given a keyword a nickname
20040 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
20041 instead of the actual keyword.
20042 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
20043 option may be used to modify this token slightly.
20044 It is also possible to color keywords in the index using the
20045 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20046 </DD>
20048 <DT>SHORTSUBJKEY</DT>
20049 <DD> This token is the same as SUBJKEY, but it is based on
20050 SHORTSUBJECT, instead of in SUBJECT.
20051 </DD>
20053 <DT>SUBJKEYINIT</DT>
20054 <DD>
20055 This token is the same as the SUBJKEY token except that instead of
20056 prepending a list of keywords to the subject, a list of first initials
20057 of keywords will be prepended instead.
20058 For example, if a message has the keywords <EM>Work</EM> and <EM>Now</EM>
20059 set (or Work and Now are the Alpine nicknames of keywords that are set)
20060 then the SUBJKEY token would cause a result like
20062 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
20064 whereas the SUBJKEYINIT token would give
20066 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
20068 Only those keywords that you have defined in your
20069 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
20070 in Setup/Config are considered in the list.
20071 In other words, keywords that have been set by some other means, perhaps
20072 by another email program, won't show up unless included in
20073 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
20074 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
20075 option may be used to modify this token slightly.
20076 It is also possible to color keywords in the index using the
20077 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20078 </DD>
20080 <DT>SHORTSUBJKEYINIT</DT>
20081 <DD> This token is the same as SUBJKEYINIT, but it is based on
20082 SHORTSUBJECT, instead of in SUBJECT.
20083 </DD>
20085 <DT>SUBJECTTEXT</DT>
20086 <DD>
20087 Same as SUBJECT but if there is room in the Subject field for more text,
20088 the opening part of the text of the message is displayed after the subject.
20089 The time needed to fetch the text may cause a performance problem
20090 which can, of course, be avoided by using the SUBJECT version of
20091 the Subject instead.
20092 You may color this opening text differently by using the
20093 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
20094 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20095 You may adjust the characters that are displayed between the Subject and the
20096 opening text with the option
20097 <A HREF="h_config_opening_sep"><!--#echo var="VAR_opening-text-separator-chars"--></A>.
20098 </DD>
20100 <DT>SUBJKEYTEXT</DT>
20101 <DD>
20102 Same as SUBJKEY but with the opening message text.
20103 </DD>
20105 <DT>OPENINGTEXT</DT>
20106 <DD>
20107 This is similar to SUBJECTTEXT.
20108 Instead of combining the Subject and the opening text in a single
20109 field in the index screen this token allows you to allocate a
20110 separate column just for the opening text of the message.
20111 The time needed to fetch this text may cause a performance problem.
20112 You may color this opening text differently by using the
20113 <A HREF="h_config_index_opening_color">Index Opening Color</A> option available from
20114 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20115 </DD>
20117 <DT>OPENINGTEXTNQ</DT>
20118 <DD>
20119 This is very similar to OPENINGTEXT.
20120 The NQ stands for No Quotes.
20121 The only difference is that quoted text (lines beginning with &gt;) is deleted.
20122 For some messages this may be confusing.
20123 For example, a message might have a line preceding some quoted
20124 text that reads something like &quot;On May 8th person A said.&quot;
20125 That no longer makes sense after the quoted text is deleted and it
20126 will appear that person A said whatever the text after the quote
20127 is, even though that is really person B talking.
20128 </DD>
20130 <DT>SUBJKEYINITTEXT</DT>
20131 <DD>
20132 Same as SUBJKEYINIT but with the opening message text.
20133 </DD>
20135 <DT>KEY</DT>
20136 <DD>
20137 This is a space-delimited list of keywords that are set for the message.
20138 Only those keywords that you have defined in your
20139 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option
20140 in Setup/Config are considered in the list.
20141 In other words, keywords that have been set by some other means, perhaps
20142 by another email program, won't show up unless included in
20143 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>.
20144 If you have given a keyword a nickname
20145 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), that nickname is displayed
20146 instead of the actual keyword.
20147 It is also possible to color keywords in the index using the
20148 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20149 This token defaults to an arbitrary width of 5.
20150 You should set it to whatever width suits you using something
20151 like KEY(17) in the <!--#echo var="VAR_index-format"-->.
20152 </DD>
20154 <DT>KEYINIT</DT>
20155 <DD>
20156 This is a list of keyword initials that are set for the message.
20157 If you have given a keyword a nickname
20158 (<A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>), the initial of that nickname
20159 is displayed instead of the initial of the actual keyword.
20160 It is also possible to color keyword initials in the index using the
20161 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
20162 This token defaults to an arbitrary width of 2.
20163 You should set it to whatever width suits you using something
20164 like KEYINIT(3) in the <!--#echo var="VAR_index-format"-->.
20165 </DD>
20167 <DT>PRIORITY</DT>
20168 <DD>
20169 The X-Priority header is a non-standard header that is used in a
20170 somewhat standard way by many mail programs.
20171 Alpine expects the value of this header to be a digit with a value
20172 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
20173 Since this priority is something that the sender sets it is only an indication
20174 of the priority that the sender attaches to the mail and it is therefore almost
20175 totally unreliable for use as a filtering criterion.
20176 This token will display the numeric value of the priority if it is between
20177 1 and 5.
20178 It will be suppressed (blank) if the value is 3, which is normal priority.
20179 This token may be colored with the
20180 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20181 </DD>
20183 <DT>PRIORITYALPHA</DT>
20184 <DD>
20185 This is a more verbose interpretation of the X-Priority field.
20186 Once again nothing is displayed unless the value of the field
20187 is 1, 2, 4, or 5.
20188 The values displayed for those values are:
20190 <TABLE>
20191 <TR> <TD>1</TD> <TD>Highest</TD> </TR>
20192 <TR> <TD>2</TD> <TD>High</TD> </TR>
20193 <TR> <TD>4</TD> <TD>Low</TD> </TR>
20194 <TR> <TD>5</TD> <TD>Lowest</TD> </TR>
20195 </TABLE>
20197 This token may be colored with the
20198 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20199 </DD>
20201 <DT>PRIORITY!</DT>
20202 <DD>
20203 This is a one character, non-numeric version of the X-Priority field.
20204 If the value of the X-Priority header is 1 or 2 an exclamation
20205 point is displayed.
20206 If the value is 4 or 5 a &quot;v&quot; (think down arrow) is displayed.
20207 This token may be colored with the
20208 <A HREF="h_config_index_pri_color">Index Priority Symbol Colors</A>.
20209 </DD>
20211 <DT>ATT</DT>
20212 <DD>
20213 This is a one column wide field that represents the number of attachments
20214 a message has. It will be blank if there are no attachments, a single
20215 digit for one to nine attachments, or an asterisk for more than nine.
20216 Note that including this token in
20217 the &quot;<!--#echo var="VAR_index-format"-->&quot; could slow down the
20218 display a little while Alpine collects the necessary information.
20219 </DD>
20221 <DT>FROMORTO</DT>
20222 <DD>
20223 This token represents <EM>either</EM> the personal name (or email address) of
20224 the person listed in the message's &quot;From:&quot; header
20225 field, <EM>or</EM>, if that address is yours or one of your
20226 <A HREF="h_config_alt_addresses">alternate addresses</A>,
20227 the first person specified in the
20228 message's &quot;To:&quot; header field
20229 with the prefix &quot;To: &quot; prepended.
20230 If the from address is yours and there is also no &quot;To&quot; address,
20231 Alpine will use the address on the &quot;Cc&quot; line.
20232 If there is no address there, either, Alpine will look for a newsgroup name
20233 from the &quot;Newsgroups&quot; header field and put
20234 that after the &quot;To: &quot; prefix.
20235 </DD>
20237 <DT>FROMORTONOTNEWS</DT>
20238 <DD>
20239 This is almost the same as <EM>FROMORTO</EM>.
20240 The difference is that newsgroups aren't considered.
20241 When a message is from you, doesn't have a To or Cc, and does have
20242 a Newsgroups header; this token will be your name instead of the name
20243 of the newsgroup (like it would be with FROMORTO).
20244 </DD>
20246 <DT>TEXT</DT>
20247 <DD>
20248 This is a different sort of token.
20249 It allows you to display a label within each index line.
20250 It will be the same fixed text for each line.
20251 It is different from all the other tokens in that there is no space column
20252 displayed after this token.
20253 Instead, it is butted up against the following field.
20254 It also has a different syntax.
20255 The text to display is given following a colon after the
20256 word &quot;TEXT&quot;.
20257 For example,
20259 <CENTER><SAMP>TEXT:abc=</SAMP></CENTER>
20261 would insert the literal text &quot;abc=&quot; (without the quotes)
20262 into the index display line.
20263 You must quote the text if it includes space characters, like
20265 <CENTER><SAMP>TEXT:&quot;abc&nbsp;=&nbsp;&quot;</SAMP></CENTER>
20267 </DD>
20269 <DT>HEADER</DT>
20270 <DD>
20271 This allows you to display the text from a particular header line in the
20272 message.
20273 The syntax for this token is substantially different from all the others
20274 in order that you might be able to display a portion of the text following
20275 a particular header.
20276 The header name you are interested in is given following a colon
20277 after the word &quot;HEADER&quot;.
20278 For example,
20280 <CENTER><SAMP>HEADER:X-Spam</SAMP></CENTER>
20282 would display the text of the X-Spam header, if any.
20283 Like for other index tokens a width field may (and probably should)
20284 follow this.
20286 <CENTER><SAMP>HEADER:X-Spam(10)</SAMP></CENTER>
20288 displays the first ten characters of the X-Spam header.
20289 Unlike other index tokens, the syntax for HEADER is more flexible.
20290 An optional second argument comes after a comma inside the parentheses.
20291 It specifies the &quot;field&quot; number.
20292 By default, the field separator is a space character.
20293 No extra space characters are allowed in the argument list.
20295 <CENTER><SAMP>HEADER:X-Spam(10,2)</SAMP></CENTER>
20297 would display the second field, left-justified, in a 10 character
20298 wide field.
20299 The second field would consist of all the text after the first space
20300 up to the next space or the end of the header.
20301 The default field number is zero, which stands for the entire line.
20302 There is also an optional third argument that is a list of field
20303 separators. It defaults to a space character.
20304 The example
20306 <CENTER><SAMP>HEADER:X-Spam(10,2,:%&nbsp;)</SAMP></CENTER>
20308 would cause the field separators to be any of colon, percent,
20309 or space (there is a space character between the percent and the
20310 right parenthesis).
20311 The first field runs from the start of the header value up to the first
20312 colon, percent, or space; the second goes from there to the next; and so on.
20313 In order to use a comma character as a field separator you must escape
20314 it by preceding it with a backslash (&#92;).
20315 The same is true of the backslash character itself.
20316 There is one further optional argument.
20317 It is an R or an L to specify right or left adjustment of the text
20318 within the field.
20319 The default is to left justify, however if you are displaying numbers
20320 you might prefer to right justify.
20322 Here's an example of a SpamAssassin header.
20323 The exact look of the header will vary, but if your incoming mail
20324 contains headers that look like the following
20326 <CENTER><SAMP>X-Spam-Status: Yes, hits=10.6 tagged_above=-999.0 required=7.0 tests=BAYE...</SAMP></CENTER>
20328 you might want to display the hits value.
20329 The first field starts with the Y in Yes.
20330 To get what you're interested in you might use &quot;=&quot; and
20331 space as the field separators and display the third field, like
20333 <CENTER><SAMP>HEADER:X-Spam-Status(4,3,=&nbsp;)</SAMP></CENTER>
20335 or maybe you would break at the dot instead
20337 <CENTER><SAMP>HEADER:X-Spam-Status(2,2,=.,R)</SAMP></CENTER>
20339 Another example we've seen has headers that look like
20341 <CENTER><SAMP>X-Spam: Gauge=IIIIIII, Probability=7%, Report=...</SAMP></CENTER>
20343 Because there are two equals and a comma before the 7% and a comma
20344 after it, the token
20346 <CENTER><SAMP>HEADER:X-Spam(3,4,=&#92;,,R)</SAMP></CENTER>
20348 should display the probability (for example 7% or 83%) right justified
20349 in a 3-wide field.
20350 </DD>
20352 <DT>ARROW</DT>
20353 <DD>
20354 This gives an alternative way to display the current message in the
20355 MESSAGE INDEX screen.
20356 Usually the current message is indicated by the line being shown in
20357 reverse video.
20358 Instead, if the ARROW token is included in your <!--#echo var="VAR_index-format"-->,
20359 the current line will include an &quot;arrow&quot; that
20360 looks like
20362 <CENTER><SAMP>-&gt;</SAMP></CENTER>
20364 in the ARROW token's field.
20365 For all of the non-current messages, the ARROW field will be filled
20366 with blanks.
20367 If you use the fixed-field width feature the length of the &quot;arrow&quot;
20368 may be adjusted.
20369 The arrow will be drawn as width-1 dashes followed by a greater than sign.
20370 For example, if you use ARROW(3) you will get
20372 <CENTER><SAMP>--&gt;</SAMP></CENTER>
20374 and ARROW(1) will give you just
20376 <CENTER><SAMP>&gt;</SAMP></CENTER>
20378 It is also possible to set the color of the ARROW field.
20379 By default (and for non-current messages) the arrow is colored the same
20380 as the index line it is part of.
20381 You may set it to be another color with the 
20382 <A HREF="h_config_index_arrow_color">Index Arrow Color</A> option available from
20383 the <A HREF="h_color_setup">Setup Kolor</A> screen.
20384 </DD>
20386 <DT>SCORE</DT>
20387 <DD>
20388 This gives the
20389 <a href="h_rules_score">score</a>
20390 of each message.
20391 This will be six columns wide to accomodate the widest possible score.
20392 You will probably want to use the <!--#echo var="VAR_index-format"--> fixed-field width feature
20393 to limit the width of the field to the widest score that
20394 you use (e.g. SCORE(3) if your scores are always between 0 and 999).
20395 If you have not defined any score rules the scores will all be zero.
20396 If any of your score rules contain AllText or BodyText patterns
20397 then including SCORE in the <!--#echo var="VAR_index-format"-->
20398 may slow down the display of the MESSAGE INDEX screen.
20399 </DD>
20400 </DL>
20403 <H1><EM>Tokens Available for all but <!--#echo var="VAR_index-format"--></EM></H1>
20405 <DL>
20406 <DT>CURNEWS</DT>
20407 <DD>
20408 This token represents the current newsgroup if there is one.
20409 For example, &quot;comp.mail.pine&quot;.
20410 </DD>
20412 <DT>MSGID</DT>
20413 <DD>
20414 This token represents the message ID of the message.
20415 This token does not work with Filter Rule folder names.
20416 </DD>
20418 <DT>CURDATE</DT>
20419 <DD>
20420 This token represents the current date.
20421 It has the format MMM DD. For example, &quot;Oct 23&quot;.
20422 </DD>
20424 <DT>CURDATEISO</DT>
20425 <DD>
20426 This token represents the current date.
20427 It has the format YYYY-MM-DD. For example, &quot;1998-10-23&quot;.
20428 </DD>
20430 <DT>CURDATEISOS</DT>
20431 <DD>
20432 This token represents the current date.
20433 It has the format YY-MM-DD. For example, &quot;98-10-23&quot;.
20434 </DD>
20436 <DT>CURPREFDATE</DT>
20437 <DD>
20438 This token represents the current date.
20439 It is your operating system's idea of the preferred date representation for the current locale.
20440 Internally it uses the %x version of the date from the strftime routine.
20441 </DD>
20443 <DT>CURPREFTIME</DT>
20444 <DD>
20445 This token represents the current time.
20446 It is the preferred time representation for the current locale.
20447 Internally it uses the %X version of the time from the strftime routine.
20448 </DD>
20450 <DT>CURPREFDATETIME</DT>
20451 <DD>
20452 This token represents the current date and time.
20453 It is the preferred date and time representation for the current locale.
20454 Internally it uses the %c version of the time from the strftime routine.
20455 </DD>
20457 <DT>CURTIME24</DT>
20458 <DD>
20459 This token represents the current time.
20460 It has the format HH:MM. For example, &quot;17:28&quot;.
20461 </DD>
20463 <DT>CURTIME12</DT>
20464 <DD>
20465 This token represents the current time.
20466 This time is for a 12 hour clock.
20467 It has the format HH:MMpm.
20468 For example, &quot;5:28pm&quot; or &quot;11:13am&quot;.
20469 </DD>
20471 <DT>CURDAY</DT>
20472 <DD>
20473 This token represents the current day of the month.
20474 For example, &quot;23&quot; or &quot;9&quot;.
20475 </DD>
20477 <DT>CURDAY2DIGIT</DT>
20478 <DD>
20479 This token represents the current day of the month.
20480 For example, &quot;23&quot; or &quot;09&quot;.
20481 It is always 2 digits.
20482 </DD>
20484 <DT>CURDAYOFWEEK</DT>
20485 <DD>
20486 This token represents the current day of the week.
20487 For example, &quot;Sunday&quot; or &quot;Wednesday&quot;.
20488 </DD>
20490 <DT>CURDAYOFWEEKABBREV</DT>
20491 <DD>
20492 This token represents the current day of the week.
20493 For example, &quot;Sun&quot; or &quot;Wed&quot;.
20494 </DD>
20496 <DT>CURMONTH</DT>
20497 <DD>
20498 This token represents the current month.
20499 For example, &quot;10&quot; or &quot;9&quot;.
20500 </DD>
20502 <DT>CURMONTH2DIGIT</DT>
20503 <DD>
20504 This token represents the current month.
20505 For example, &quot;10&quot; or &quot;09&quot;.
20506 It is always 2 digits.
20507 </DD>
20509 <DT>CURMONTHLONG</DT>
20510 <DD>
20511 This token represents the current month.
20512 For example, &quot;October&quot;.
20513 </DD>
20515 <DT>CURMONTHABBREV</DT>
20516 <DD>
20517 This token represents the current month.
20518 For example, &quot;Oct&quot;.
20519 </DD>
20521 <DT>CURYEAR</DT>
20522 <DD>
20523 This token represents the current year.
20524 For example, &quot;1998&quot; or &quot;2001&quot;.
20525 </DD>
20527 <DT>CURYEAR2DIGIT</DT>
20528 <DD>
20529 This token represents the current year.
20530 For example, &quot;98&quot; or &quot;01&quot;.
20531 It is always 2 digits.
20532 </DD>
20534 <DT>LASTMONTH</DT>
20535 <DD>
20536 This token represents last month.
20537 For example, if this is November (the 11th month),
20538 it is equal to &quot;10&quot; or if this is October (the 10th month),
20539 it is &quot;9&quot;.
20540 It is possible that this and the other tokens beginning with LASTMONTH
20541 below could be useful when used with a Filtering Rule that
20542 has the &quot;Beginning of Month&quot; option set.
20543 </DD>
20545 <DT>LASTMONTH2DIGIT</DT>
20546 <DD>
20547 This token represents last month.
20548 For example, if this is November (the 11th month),
20549 it is equal to &quot;10&quot; or if this is October (the 10th month),
20550 it is &quot;09&quot;.
20551 It is always 2 digits.
20552 </DD>
20554 <DT>LASTMONTHLONG</DT>
20555 <DD>
20556 This token represents last month.
20557 For example, if this is November the value is &quot;October&quot;.
20558 </DD>
20560 <DT>LASTMONTHABBREV</DT>
20561 <DD>
20562 This token represents last month.
20563 For example, if this is November the value is &quot;Oct&quot;.
20564 </DD>
20566 <DT>LASTMONTHYEAR</DT>
20567 <DD>
20568 This token represents what the year was a month ago.
20569 For example, if this is October, 1998, it is &quot;1998&quot;.
20570 If this is January, 1998, it is &quot;1997&quot;.
20571 </DD>
20573 <DT>LASTMONTHYEAR2DIGIT</DT>
20574 <DD>
20575 This token represents what the year was a month ago.
20576 For example, if this is October, 1998, it is &quot;98&quot;.
20577 If this is January, 1998, it is &quot;97&quot;.
20578 </DD>
20580 <DT>LASTYEAR</DT>
20581 <DD>
20582 This token represents last year.
20583 For example, if this is 1998, it equals &quot;1997&quot;.
20584 It is possible that this
20585 could be useful when used with a Filtering Rule that
20586 has the &quot;Beginning of Year&quot; option set.
20587 </DD>
20589 <DT>LASTYEAR2DIGIT</DT>
20590 <DD>
20591 This token represents last year.
20592 For example, if this is 1998, it equals &quot;97&quot;.
20593 It is always 2 digits.
20594 </DD>
20596 <DT>ROLENICK</DT>
20597 <DD>
20598 This token represents the nickname of the
20599 role currently being used.  If no role is being used,
20600 then no text will be printed for this token.
20601 This token does not work with Filter Rule folder names.
20602 </DD>
20603 </DL>
20606 <H1><EM>Token Available Only for <!--#echo var="VAR_reply-leadin"--></EM></H1>
20607 See the help for the
20608 <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option
20609 to see why you might want to use this.
20610 Since the <!--#echo var="VAR_reply-leadin"--> contains free text this token
20611 must be surrounded by underscores when used.
20613 <DL>
20614 <DT>NEWLINE</DT>
20615 <DD>
20616 This is an end of line marker.
20617 </DD>
20618 </DL>
20621 <H1><EM>Token Available Only for Templates and Signatures</EM></H1>
20623 <DL>
20624 <DT>CURSORPOS</DT>
20625 <DD>
20626 This token is different from the others.
20627 When it is replaced it is replaced with nothing, but it sets an Alpine
20628 internal variable that tells the composer to start with the cursor
20629 positioned at the position where this token was.
20630 If both the template file and the signature file contain
20631 a &quot;CURSORPOS&quot; token, then the position in the template file
20632 is used.
20633 If there is a template file and neither it nor the signature file contains
20634 a &quot;CURSORPOS&quot; token, then the cursor is positioned
20635 after the end of the contents of the
20636 template file when the composer starts up.
20637 </DD>
20638 </DL>
20641 &lt;End of help on this topic&gt;
20642 </BODY>
20643 </HTML>
20644 ======= h_reply_token_conditionals =======
20645 <HTML>
20646 <HEAD>
20647 <TITLE>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</TITLE>
20648 </HEAD>
20649 <BODY>
20650 <H1>Conditional Inclusion of Text for <!--#echo var="VAR_reply-leadin"-->, Signatures, and Templates</H1>
20652 Conditional text inclusion may be used with
20653 the <A HREF="h_config_reply_intro">&quot;<!--#echo var="VAR_reply-leadin"-->&quot;</A> option,
20654 in signature files, and in template files used in
20655 <A HREF="h_rules_roles">&quot;roles&quot;</A>.
20656 It may <EM>not</EM> be used with the
20657 <A HREF="h_config_index_format">&quot;<!--#echo var="VAR_index-format"-->&quot;</A> option.
20660 There is a limited if-else capability for including text.
20661 The if-else condition is based
20662 on whether or not a given token would result in replacement text you
20663 specify.
20664 The syntax of this conditional inclusion is
20666 <CENTER><SAMP>_token_(match_this, if_matched [ , if_not_matched ] )</SAMP></CENTER>
20668 The left parenthesis must follow the underscore immediately, with no
20669 intervening space.
20670 It means the token is expanded and the results of that expansion are
20671 compared against the &quot;match_this&quot; argument.
20672 If there is an exact match, then the &quot;if_matched&quot; text is used
20673 as the replacement text.
20674 Otherwise, the &quot;if_not_matched&quot; text is used.
20675 One of the most useful values for the &quot;match_this&quot; argument is
20676 the empty string, &quot;&quot;.
20677 In that case the expansion is compared against the empty string.
20679 Here's an example to make it clearer.
20680 This text could be included in one of your template files:
20682 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;I'm replying to email&quot;, &quot;I'm replying to news&quot;)</SAMP></CENTER>
20684 If that is included in a template file that you are using while replying
20685 to a message (because you chose to use the role it was part of),
20686 and that message has a newsgroup header and a newsgroup in that header,
20687 then the text
20689 <CENTER><SAMP>I'm replying to news</SAMP></CENTER>
20691 will be included in the message you are about to compose.
20692 On the other hand, if the message you are replying to does not have
20693 a newsgroup, then the text
20695 <CENTER><SAMP>I'm replying to email</SAMP></CENTER>
20697 would be included instead.
20698 This would also work in signature files and in
20699 the &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option.
20700 If the &quot;match_this&quot;, &quot;if_matched&quot;,
20701 or &quot;if_not_matched&quot; arguments contain
20702 spaces, parentheses, or commas;
20703 they have to be quoted with double quotation marks (like in the example
20704 above).
20705 If you want to include a literal quote (&quot;) in the text you must escape the
20706 quote by preceding it with a backslash (&#92;) character.
20707 If you want to include a literal backslash character you must escape it
20708 by preceding it with another backslash.
20710 The comma followed by &quot;if_not_matched&quot; is optional.
20711 If there is no &quot;if_not_matched&quot;
20712 present then no text is included if the not_matched case is true.
20713 Here's another example:
20715 <CENTER><SAMP>_NEWS_(&quot;&quot;, &quot;&quot;, &quot;This msg was seen in group: _NEWS_.&quot;)</SAMP></CENTER>
20717 Here you can see that tokens may appear in the arguments.
20718 The same is true for tokens with the conditional parentheses.
20719 They may appear in arguments,
20720 though you do have to be careful to get the quoting and escaping of
20721 nested double quotes correct.
20722 If this was in the signature file being used and you were replying to a message
20723 sent to comp.mail.pine the resulting text would be:
20725 <CENTER><SAMP>This msg was seen in group: comp.mail.pine.</SAMP></CENTER>
20727 If you were replying to a message that wasn't sent to any newsgroup the
20728 resulting text would be a single blank line.
20729 The reason you'd get a blank line is because the end of the line is
20730 outside of the conditional, so is always included.
20731 If you wanted to get rid of that blank line you could do so by moving
20732 the end of line inside the conditional.
20733 In other words, it's ok to have multi-line
20734 &quot;if_matched&quot; or &quot;if_not_matched&quot; arguments in your
20735 template file.
20736 The text just continues until the next double quotation, even if it's not
20737 on the same line.
20739 Here's an example for use in the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;:
20741 <CENTER><SAMP>On _DAYDATE_, _FROM__CURNEWS_(&quot;&quot;, &quot;&quot;, &quot;seen in _CURNEWS_,&quot;) wrote</SAMP></CENTER>
20743 If this was in your <!--#echo var="VAR_reply-leadin"--> and you were replying to a message
20744 while reading the newsgroup comp.mail.pine the resulting text would be:
20746 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone, seen in comp.mail.pine, wrote:</SAMP></CENTER>
20748 If you were replying to a message while reading an email folder instead
20749 of a newsgroup the resulting leadin text would be
20751 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
20753 Here's one more (contrived) example illustrating a matching argument
20754 that is not the empty string.
20756 <CENTER><SAMP>_SMARTDATE_("Today", _SMARTDATE_, "On _DATE_") _FROM_ wrote:</SAMP></CENTER>
20758 If this was the value of your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; option and you
20759 were replying to
20760 a message that was sent today, then the value of the &quot;<!--#echo var="VAR_reply-leadin"-->&quot;
20761 would be
20763 <CENTER><SAMP>Today Fred Flintstone wrote:</SAMP></CENTER>
20765 But if you were replying to a message sent on Oct. 27 (and that wasn't
20766 today) you would get
20768 <CENTER><SAMP>On Oct 27 Fred Flintstone wrote:</SAMP></CENTER>
20771 &lt;End of help on this topic&gt;
20772 </BODY>
20773 </HTML>
20774 ======= h_composer_cntxt_nick =======
20775 <HTML>
20776 <HEAD>
20777 <TITLE>Collection Nickname Explained</TITLE>
20778 </HEAD>
20779 <BODY>
20780 <H1>Collection Edit Help -- Nickname Field</H1>
20782 This field is provided so you can add a short nickname to use when
20783 referring to this collection within Alpine.  Spaces are allowed, and
20784 you don't need to use double-quotes.  However, the double-quote
20785 character is not allowed.
20787 Look <A HREF="h_edit_nav_cmds">here</A>
20788 to see the available Editing and Navigation commands.
20790 &lt;End of help on this topic&gt;
20791 </BODY>
20792 </HTML>
20793 ======= h_folder_server_syntax =======
20794 <HTML>
20795 <HEAD>
20796 <TITLE>Server Name Syntax</TITLE>
20797 </HEAD>
20798 <BODY>
20799 <H1>Server Name Syntax</H1>
20801 This help describes the syntax that may be used for server names
20802 that may be associated with remote folders or SMTP servers.
20805 A server name is the hostname of the server.
20806 It's a good idea to use the host's fully-qualified network name.
20809 <CENTER><SAMP>foo.example.com</SAMP></CENTER>
20812 However, IP addresses are allowed if surrounded
20813 with square-brackets.
20816 <CENTER><SAMP>[127.0.0.1]</SAMP></CENTER>
20819 An optional network port number may be supplied by appending
20820 a colon (:) followed by the port number
20821 to the server name.
20822 By default, the IMAP port number, 143, is used.
20825 <CENTER><SAMP>foo.example.com:port</SAMP></CENTER>
20828 Besides server name and optional port number, various other optional
20829 parameters may be supplied that alter Alpine's interaction with the server.
20830 A parameter is supplied by appending a slash (/) character followed by
20831 the parameter's name and,
20832 depending on the particular parameter, the value assigned to that
20833 name, to the server name (and optional port number).
20834 Parameter names are <EM>not</EM> case sensitive.
20835 Currently supported parameters include:
20837 <DL>
20839 <DT>User</DT>
20840 <DD>This parameter requires an associated value, and is intended to
20841 provide the username identifier with which to establish the server
20842 connection.
20843 If your SMTP server offers SMTP AUTH authentication, adding this 
20844 parameter to the
20845 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
20846 option will cause Alpine to attempt to authenticate to the server using the
20847 supplied username.
20848 Similarly, if your NNTP server offers NNTP &quot;AUTHINFO SASL&quot;
20849 or &quot;AUTHINFO USER&quot; authentication, adding this parameter to the
20850 <A HREF="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></A>
20851 option (or to the server name for any folder collection using NNTP)
20852 will cause Alpine to attempt
20853 to authenticate to the server using the supplied username.
20854 An example might be:
20857 <CENTER><SAMP>/user=katie</SAMP></CENTER>
20860 </DD>
20862 <DT>TLS</DT>
20863 <DD>
20864 Normally, when a new connection is made an attempt is made to 
20865 negotiate a secure (encrypted) session using Transport Layer Security (TLS).
20866 If that fails then a non-encrypted connection will be attempted instead.
20867 This is a unary parameter indicating communication with the server must 
20868 take place over a TLS connection. If the attempt to use TLS fails then
20869 this parameter will cause the connection to fail instead of falling
20870 back to an unsecure connection.
20873 <CENTER><SAMP>/tls</SAMP></CENTER>
20876 </DD>
20878 <DT>SSL</DT>
20879 <DD>
20880 This is a unary parameter indicating communication with the server should 
20881 take place over a Secure Socket Layer connection.  The server must support
20882 this method, and be prepared to accept connections on the appropriate
20883 port (993 by default).
20884 Alpine must be linked with an SSL library for this option to be operational.
20885 Using this option will make Alpine try to connect to the server using the
20886 most secure encrypted SSL connection that both your version of Alpine and the
20887 server support.
20890 <CENTER><SAMP>/ssl</SAMP></CENTER>
20893 </DD>
20895 <DT>TLS1</DT>
20896 <DD>
20897 This parameter indicates that the connection to the server will be made
20898 over the SSL port, but using the TLSv1 protocol, instead of the usual
20899 SSLv3 or SSLv2 protocols.
20900 Alpine must be linked with an SSL library for this option to be operational.
20903 <CENTER><SAMP>/tls1</SAMP></CENTER>
20905 </DD>
20907 <DT>TLS1_1</DT>
20908 <DD>
20909 This parameter indicates that the connection to the server will be made
20910 over the SSL port, but using the TLSv1.1 protocol.
20911 Alpine must be linked with an SSL library that supports this encryption
20912 protocol for this option to be operational.
20915 <CENTER><SAMP>/tls1_1</SAMP></CENTER>
20917 </DD>
20919 <DT>TLS1_2</DT>
20920 <DD>
20921 This parameter indicates that the connection to the server will be made
20922 over the SSL port, but using the TLSv1.2 protocol.
20923 Alpine must be linked with an SSL library that supports this encryption
20924 protocol for this option to be operational.
20927 <CENTER><SAMP>/tls1_2</SAMP></CENTER>
20929 </DD>
20931 <DT>TLS1_3</DT>
20932 <DD>
20933 This parameter indicates that the connection to the server will be made
20934 over the SSL port, but using the TLSv1.3 protocol.
20935 Alpine must be linked with an SSL library that supports this encryption
20936 protocol for this option to be operational.
20939 <CENTER><SAMP>/tls1_3</SAMP></CENTER>
20941 </DD>
20943 <DT>NoValidate-Cert</DT>
20944 <DD>Do not validate certificates (for TLS or SSL connections) from the server.
20945 This is needed if the server uses self-signed certificates or if Alpine
20946 cannot validate the certificate for some other known reason. You should avoid
20947 using this option, and instead install the certificate of the server, so you
20948 are not a victim of a cracker-in-the-middle attack.
20950 </DD>
20952 <DT>Anonymous</DT>
20953 <DD>This is a unary parameter (that means it does not have a value)
20954 indicating that the connection be logged in as
20955 &quot;anonymous&quot; rather than a specific user.
20956 Not all servers offer anonymous
20957 access; those which do generally only offer read-only access to certain
20958 &quot;public&quot; folders.
20961 <CENTER><SAMP>/anonymous</SAMP></CENTER>
20964 </DD>
20966 <DT>Secure</DT>
20967 <DD>This is a unary parameter indicating that the connection use the
20968 most secure authentication method mutually supported by Alpine and the
20969 server.
20970 Alpine is capable of authenticating connections to 
20971 the server using several methods.
20972 By default, Alpine will attempt each
20973 method until either a connection is established or the
20974 list of methods is exhausted.
20975 This parameter causes Alpine to instead fail 
20976 the connection if the first (generally most &quot;secure&quot;) method fails.
20979 <CENTER><SAMP>/secure</SAMP></CENTER>
20982 </DD>
20984 <DT>Submit</DT>
20985 <DD>This is a unary parameter for use with the
20986 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A> option.
20987 It indicates that the connection should be made to the Submit server
20988 (<A HREF="http://www.ietf.org/rfc/rfc2476.txt">RFC 3676</A>)
20989 (port 587) instead of the SMTP port (25).
20990 At the time this help was written the submit option was equivalent to
20991 specifying port 587.
20994 <CENTER><SAMP>/submit</SAMP></CENTER>
20998 <CENTER><SAMP>host:587</SAMP></CENTER>
21001 </DD>
21003 <DT>Debug</DT>
21004 <DD>This is a unary parameter indicating that the connection be established
21005 in a verbose mode.  Basically, it causes Alpine to log the communication with
21006 the server in Alpine's debug file.
21007 Normally, the pine -d command-line flag would be used instead.
21009 </DD>
21011 <DT>NoRsh</DT>
21012 <DD>By default, Alpine attempts to login using &quot;rsh&quot;,
21013 the UNIX remote shell program.
21014 Including &quot;NoRsh&quot; will cause connections to this server to skip
21015 the &quot;rsh&quot; attempt.
21016 This might be useful to avoid long timeouts caused by rsh firewalls, for
21017 example.
21019 </DD>
21021 <DT>Loser</DT>
21022 <DD>This option makes sense only for IMAP servers that do not perform
21023 a SEARCH command correctly. If your filtering rules
21024 fail to filter some messages, that should have been filtered, then this
21025 option will make Alpine download all data necessary data to perform that 
21026 search. There is a performance penalty when using this option. Downloading 
21027 the data to perfom the search will take longer than requesting the IMAP
21028 server to perform the filtering, but the filtering will be done correctly.
21030 </DD>
21033 <DT>Service</DT>
21034 <DD>This parameter requires an associated value.  The default value is
21035 &quot;IMAP&quot; which indicates communication with the server based
21036 on the IMAP4rev1 protocol (defined in RFC 3501 -- see 
21037 <A HREF="http://www.imap.org/docs/rfc3501.html">http://www.imap.org/docs/rfc3501.html</A>).</DD>
21039 Other service values include:
21040  <DL>
21041  <DT>NNTP</DT>
21042  <DD>This value indicates communication with the server takes place via
21043 the Network News Transfer Protocol.  Use this to define a collection
21044 of newsgroups on a remote news server.  So
21047 <CENTER><SAMP>/service=NNTP</SAMP></CENTER>
21049 or just
21051 <CENTER><SAMP>/NNTP</SAMP></CENTER>
21054 is the way to specify NNTP access.
21056  </DD>
21058  <DT>POP3</DT>
21059  <DD>This value indicates communication with the server takes place via the
21060 Post Office Protocol 3 protocol.
21063 <CENTER><SAMP>/service=POP3</SAMP></CENTER>
21065 or just
21067 <CENTER><SAMP>/POP3</SAMP></CENTER>
21070 Note that there are several important issues
21071 to consider when selecting this option:
21072 <OL>
21073  <LI> POP3 provides access to only your INBOX.  In other words,
21074 secondary folders such as your &quot;saved-messages&quot; are inaccessible.
21075  <LI> Alpine's implementation of POP3 does not follow the traditional POP
21076 model and will leave your mail on the server. Refer to the
21077 <A HREF="h_maildrop">Mail Drop</A> functionality for a possible way around this problem.
21078  <LI> See the discussion about new-mail checking in <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
21079 </OL>
21080 </DD>
21081 </DL>
21082 </DL>
21085 Note that it is possible to include more than one parameter in a server
21086 specification by concatenating the parameters. For example:
21089 <CENTER><SAMP>foo.example.com:port/user=katie/novalidate-cert/debug</SAMP></CENTER>
21093 &lt;End of help on this topic&gt;
21094 </BODY>
21095 </HTML>
21096 ======= h_composer_cntxt_server =======
21097 <HTML>
21098 <HEAD>
21099 <TITLE>Collection Server: Explained</TITLE>
21100 </HEAD>
21101 <BODY>
21102 <H1>Collection Edit Help -- Server Field</H1>
21104 This collection's &quot;Server:&quot; definition indicates the
21105 hostname of the server providing access to the folders in this
21106 collection.
21107 The syntax of this server name is the same as for other server names used
21108 in remote folder names in
21109 Alpine and is described
21110 <A HREF="h_folder_server_syntax">here</A>.
21113 &lt;End of help on this topic&gt;
21114 </BODY>
21115 </HTML>
21116 ======= h_composer_cntxt_path =======
21117 <HTML>
21118 <HEAD>
21119 <TITLE>Collection Path: Explained</TITLE>
21120 </HEAD>
21121 <BODY>
21122 <H1>Collection Edit Help -- Path Field</H1>
21124 The collection's &quot;Path:&quot; definition indicates the location
21125 of the folders in this collection.  If the path or any of its components
21126 do not exist, Alpine will prompt you for their creation when exiting the
21127 Add/Change screen.
21129 <P> 
21130 By default the path is interpreted as defining a section of your personal
21131 folder area.  This area and how you specify it are defined by the
21132 server, if one is specified in the collection, or, typically, the home
21133 directory if no server is defined.
21136 To define a collection outside the default &quot;area&quot;, prefix
21137 the path with the &quot;namespace&quot; to use when interpreting the
21138 given path.  If a namespace is specified, the Path begins with the
21139 sharp, &quot;#&quot;, character followed by the name of the namespace
21140 and then the namespace's path-element-delimiter.  Aside from the
21141 path's format, namespaces can also imply access rights, content
21142 policy, audience, location, and, occasionally, access methods.
21145 Each server exports its own set (possibly of size one) of 
21146 namespaces.  Hence, it's likely communication with your server's
21147 administrator will be required for specific configurations.  Some of
21148 the more common namespaces, however, include:
21150 <DL>
21151 <DT>#news.</DT>
21152 <DD>This specifies a set of folders in the newsgroup namespace.  Newsgroup
21153 names are hierarchically defined with each level delimited by a period.
21154 </DD>
21155 <DT>#public/</DT>
21156 <DD>This specifies a folder area that the server may export to the general
21157 public.
21158 </DD>
21159 <DT>#shared/</DT>
21160 <DD>This specifies a folder area that the folder may export to groups
21161 of users.
21162 </DD>
21163 <DT>#ftp/</DT>
21164 <DD>This specifies a folder area that is the same as that it may have 
21165 exported via the &quot;File Transfer Protocol&quot;.
21166 </DD>
21167 <DT>#mh/</DT>
21168 <DD>This specifies the personal folder area associated with folders
21169 and directories that were created using the MH message handling system.
21170 </DD>
21171 </DL>
21174 In addition, the server may support access to other user's folders,
21175 provided you have suitable permissions.  Common methods use a prefix
21176 of either &quot;~<VAR>user</VAR>/&quot;, or &quot;/<VAR>user</VAR>/&quot; to
21177 indicate the root of the other user's folder area.
21180 No, nothing's simple.
21183 &lt;End of help on this topic&gt;
21184 </BODY>
21185 </HTML>
21186 ======= h_composer_cntxt_view =======
21187 <HTML>
21188 <HEAD>
21189 <TITLE>Collection View: Explained</TITLE>
21190 </HEAD>
21191 <BODY>
21192 <H1>Collection Edit Help -- View Field</H1>
21194 The collection's &quot;View:&quot; definition provides a way to limit
21195 the displayed list of folders within a collection.  By default, only
21196 folders that contain the specified characters anywhere in their name
21197 are shown in the collection's folder list.
21200 Additionally, you can use a wildcard character to better control
21201 the list of folders selected for display.  The wildcard specifier is
21202 the star, &quot;*&quot;, character.
21205 So, for example, to define a collection of all folders ending with
21206 &quot;c&quot;, you'd specify a view of &quot;*c&quot; (without the
21207 quote characters!).  Or, similarly, to define a collection of folders
21208 whose names start with &quot;a&quot; and end with &quot;z&quot;, you'd
21209 specify a view of &quot;a*z&quot;.
21212 &lt;End of help on this topic&gt;
21213 </BODY>
21214 </HTML>
21215 ======= h_composer_abook_add_server =======
21216 <HTML>
21217 <HEAD>
21218 <TITLE>Addressbook Server Name Field Explained</TITLE>
21219 </HEAD>
21220 <BODY>
21221 This field should be left blank if the address book is stored in a regular
21222 file on this system.  If it is a remote address book stored on an IMAP
21223 server then this is the name of that IMAP server.
21225 Look <A HREF="h_edit_nav_cmds">here</A>
21226 to see the available Editing and Navigation commands.
21228 &lt;End of help on this topic&gt;
21229 </BODY>
21230 </HTML>
21231 ======= h_composer_abook_add_folder =======
21232 <HTML>
21233 <HEAD>
21234 <TITLE>Addressbook Folder Name Field Explained</TITLE>
21235 </HEAD>
21236 <BODY>
21237 For a remote address book (one for which the Server Name is filled in)
21238 this is the name of a folder on the remote server. The address book data
21239 will be stored in this folder. This folder should be used only for
21240 storing this single address book, not for other address books or for
21241 other messages.
21243 For a local address book (one for which the Server Name is not filled in)
21244 this is the name of a file in which the address book will be stored.
21245 The file is in the same directory as the Alpine configuration file if the
21246 configuration file is local.
21247 If the configuration file is remote, then this will be in the home directory
21248 for Unix Alpine and in the directory specified by the
21249 &quot;-aux local_directory&quot; command line argument.
21251 Look <A HREF="h_edit_nav_cmds">here</A>
21252 to see the available Editing and Navigation commands.
21254 &lt;End of help on this topic&gt;
21255 </BODY>
21256 </HTML>
21257 ======= h_composer_abook_add_nick =======
21258 <HTML>
21259 <HEAD>
21260 <TITLE>Addressbook NickName Field Explained</TITLE>
21261 </HEAD>
21262 <BODY>
21263 This is just an optional nickname for this address book. If present, it
21264 is used in some of the displays and error messages in the address book
21265 maintenance screens. It is for your convenience only and serves no
21266 other purpose.
21268 Look <A HREF="h_edit_nav_cmds">here</A>
21269 to see the available Editing and Navigation commands.
21271 &lt;End of help on this topic&gt;
21272 </BODY>
21273 </HTML>
21274 ======= h_composer_qserv_cn =======
21275 <HTML>
21276 <HEAD>
21277 <TITLE>Directory Query Form Explained</TITLE>
21278 </HEAD>
21279 <BODY>
21281 Fill in as many of these fields as you wish to narrow down your
21282 search. All the fields you fill in must match in order for an entry
21283 to be returned. You may use the wildcard character &quot;*&quot; in
21284 any of the fields, it matches any zero or more characters at that
21285 point in the string. There are no implicit wildcards, so the match is
21286 exact unless you include wildcards.
21289 Note that if an attribute isn't present at all, then the match will fail.
21290 For example, if a server doesn't support the Locality attribute, then no
21291 matter what you put in the Locality field (other than leaving it empty)
21292 the search will fail.
21295 This field, the Common Name field, is typically a person's full name.
21298 <H1>EDITING and NAVIGATION COMMANDS</H1>
21299 <!--chtml if pinemode="function_key"-->
21300 <PRE>
21301 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21302 ^B (Left Arrow)    Back character       | ^D       Delete current character
21303 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21304 ^P (Up Arrow)      Previous line        |
21305 ^N (Down Arrow)    Next line            | F9       Cut marked text or
21306 ^A                 Beginning of line    |            delete current line
21307 ^E                 End of line          | F10      Undelete line(s)
21308 F7                 Previous page        |
21309 F8                 Next page            |-------------------------------------
21310 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21311 ----------------------------------------|
21312 EXIT COMMANDS    |  GENERAL COMMANDS    | F5    Restore previous search
21313 F2   Cancel      |   F1    Get help     |
21314 F3   Search      |   ^Z    Suspend      | ^L    Redraw Screen
21315 </PRE>
21316 <!--chtml else-->
21317 <PRE>
21318 CURSOR MOTION KEYS----------------------|EDITING KEYS-------------------------
21319 ^B (Left Arrow)    Back character       | ^D       Delete current character
21320 ^F (Right Arrow)   Forward character    | ^H (DEL) Delete previous character
21321 ^P (Up Arrow)      Previous line        |
21322 ^N (Down Arrow)    Next line            | ^K       Cut marked text or
21323 ^A                 Beginning of line    |            delete current line
21324 ^E                 End of line          | ^U       Undelete line(s)
21325 ^Y                 Previous page        |
21326 ^V                 Next page            |-------------------------------------
21327 ^@ (Ctrl-SPACE)    Next word            | MISCELLANEOUS COMMANDS
21328 ----------------------------------------|
21329 EXIT COMMANDS    |  GENERAL COMMANDS    | ^R     Restore previous search
21330 ^C   Cancel      |   ^G    Get help     |
21331 ^X   Search      |   ^Z    Suspend      | ^L     Redraw Screen
21332 </PRE>
21333 <!--chtml endif-->
21334 <P><UL>
21335 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21336 </UL><P>
21337 &lt;End of help on this topic&gt;
21338 </BODY>
21339 </HTML>
21340 ======= h_composer_qserv_sn =======
21342 The Surname is usually the family name of a person.
21344 <End of help on this topic>
21345 ======= h_composer_qserv_gn =======
21347 This is the part of a person's name that isn't the surname or initials.
21349 <End of help on this topic>
21350 ======= h_composer_qserv_mail =======
21352 This is the email address of a person.
21354 <End of help on this topic>
21355 ======= h_composer_qserv_org =======
21357 This is the organization a person belongs to.
21359 <End of help on this topic>
21360 ======= h_composer_qserv_unit =======
21362 This is the organizational unit a person belongs to.
21364 <End of help on this topic>
21365 ======= h_composer_qserv_country =======
21367 This is the country a person belongs to.
21369 <End of help on this topic>
21370 ======= h_composer_qserv_state =======
21372 This is the state a person belongs to.
21374 <End of help on this topic>
21375 ======= h_composer_qserv_locality =======
21377 This is the locality a person belongs to.
21379 <End of help on this topic>
21380 ======= h_composer_qserv_custom =======
21382 This one is for advanced users only! If you put something in this field,
21383 then the rest of the fields are ignored.
21385 This field may be set to the string representation of an LDAP search
21386 filter (see RFC1960). Here are some examples:
21388 To search for an entry with a surname equal to "clinton" you could set
21389 the custom filter to:
21391      (sn=clinton)
21392     
21393 This is equivalent to putting "clinton" in the SurName field.
21394 To search for an entry that has a surname that begins with "clint" and
21395 has a givenname equal to "william" you could use:
21397      (&(sn=clint*)(givenname=william))
21398     
21399 This is equivalent to setting the SurName field to "clint*" and the
21400 GivenName field to "william".
21401 To search for an entry where either the common name OR the email address
21402 contains "abcde" you could use:
21404      (|(cn=*abcde*)(mail=*abcde*))
21406 That isn't equivalent to anything you can do by setting the other fields
21407 because of the OR.
21409 <End of help on this topic>
21410 ======= h_composer_qserv_qq =======
21412 This one is a little different from the rest of the categories.  It causes
21413 a search to be formed from the configured search filter that you filled
21414 in when you added the directory server to your configuration. It can also
21415 be combined with the other fields if you'd like.
21417 <End of help on this topic>
21418 ======= h_address_format =======
21419 <HTML>
21420 <HEAD>
21421 <TITLE>INTERNET EMAIL ADDRESS FORMAT</TITLE>
21422 </HEAD>
21423 <BODY>
21424 <H1>INTERNET EMAIL ADDRESS FORMAT</H1>
21426 A valid email address on the Internet has a username, an &quot;@&quot; sign, 
21427 and then a domain, with no spaces.  
21428 For example, jsmith@art.example.com might be the email address
21429 of a person  
21430 with the username &quot;jsmith&quot; who has an account in the domain
21431 &quot;art.example.com&quot;.  The number of dot-separated segments on the 
21432 right of the &quot;@&quot; sign can vary - a shorter example would be 
21433 isabelle@elsewhere.edu (the shortest possible form: here, only the 
21434 organization's domain is specified after the &quot;@&quot; sign); a longer 
21435 example would be 
21436  jsingh@shakti.edutech.example.com
21437 (here, the name of the host &quot;shakti&quot; in the domain 
21438 edutech.example.com is also specified).  
21439 <P>  
21440 If you do not know the exact email address of someone you want to write 
21441 to, ask them what it is using other means of communication than email; or 
21442 use the tools for 
21443 finding people's addresses that are available on the Internet.
21445 If you are sending to someone on the same system as you are, you can leave
21446 the &quot;@&quot; sign and all the information to its right off of the 
21447 address, and Alpine will fill it in automatically, 
21448 unless the feature 
21449 <A HREF="h_config_compose_rejects_unqual">&quot;<!--#echo var="FEAT_compose-rejects-unqualified-addrs"-->&quot;</A> is set in SETUP CONFIGURATION.
21452 When an email address you send a message to is not reachable -- either because 
21453 it is simply an incorrect address, or because email can temporarily not be 
21454 delivered to it due to a technical problem on the way to or at the recipient's 
21455 end -- you will almost always get an error notification email message back.
21457 If you encounter problems with, or have questions about, email delivery or
21458 email address syntax, contact your local network computing consultants.
21459 <P><UL>
21460 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21461 </UL>
21463 &lt;End of help on this topic&gt;
21464 </BODY>
21465 </HTML>
21466 ======= h_flag_user_flag =======
21467 <HTML>
21468 <HEAD>
21469 <TITLE>STATUS FLAG: User Defined Keyword</TITLE>
21470 </HEAD>
21471 <BODY>
21472 <H1>STATUS FLAG: User Defined Keyword</h1>
21474 This is a keyword that is defined for this folder.
21475 It was most likely defined by the owner of the folder.
21476 Alpine will not set or clear this flag on its own.
21478 <P><UL>
21479 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21480 </UL><P>
21481 &lt;End of help on this topic&gt;
21482 </BODY>
21483 </HTML>
21484 ======= h_flag_important =======
21485 <html>
21486 <title>STATUS FLAG: Important</title>
21487 <body>
21488 <h1>STATUS FLAG: Important</h1>
21491 The <EM>Important</EM> flag, indicated by an asterisk in Alpine's
21492 MESSAGE&nbsp;INDEX
21493 screen, can only be set by the user, and is intended to be used in
21494 whatever fashion makes sense to you.  You are the only one that can set or
21495 clear it. 
21498 &lt;End of help on this topic&gt;
21499 </BODY>
21500 </HTML>
21501 ======= h_flag_new =======
21502 <html>
21503 <title>STATUS FLAG: New</title>
21504 <body>
21505 <h1>STATUS FLAG: New</h1>
21508 The <EM>New</EM> flag, indicated by the letter 'N' in Alpine's
21509 MESSAGE&nbsp;INDEX screen,
21510 is automatically set when messages are delivered to your Inbox (or other
21511 folder specified outside of Alpine).  Likewise, it is cleared automatically
21512 the first time you read the message it is associated with.
21515 Sometimes it's helpful in prioritizing your mail.  For example, perhaps
21516 a message isn't weighty enough to assign it an <A HREF="h_flag_important">Important</A> flag, but
21517 you'd like to be reminded of it next time you read mail.  This can be done
21518 easily by <A HREF="h_common_flag">explicitly</A> resetting the <EM>New</EM> flag.
21522 &lt;End of help on this topic&gt;
21523 </BODY>
21524 </HTML>
21525 ======= h_flag_answered =======
21526 <html>
21527 <title>STATUS FLAG: Answered</title>
21528 <body>
21529 <h1>STATUS FLAG: Answered</h1>
21531 The <EM>Answered</EM> flag, indicated by the letter 'A' in Alpine's
21532 MESSAGE&nbsp;INDEX
21533 screen, is automatically set when you reply to a message.  This flag is not
21534 automatically cleared.
21537 &lt;End of help on this topic&gt;
21538 </BODY>
21539 </HTML>
21540 ======= h_flag_forwarded =======
21541 <html>
21542 <title>STATUS FLAG: Forwarded</title>
21543 <body>
21544 <h1>STATUS FLAG: Forwarded</h1>
21546 The <EM>Forwarded</EM> flag, indicated by the letter 'F' in Alpine's
21547 MESSAGE&nbsp;INDEX
21548 screen, is automatically set when you forward a message.  This flag is not
21549 automatically cleared.
21552 &lt;End of help on this topic&gt;
21553 </BODY>
21554 </HTML>
21555 ======= h_flag_deleted =======
21556 <html>
21557 <title>STATUS FLAG: Deleted</title>
21558 <body>
21559 <h1>STATUS FLAG: Deleted</h1>
21561 The <EM>Deleted</EM> flag, indicated by the letter 'D' in Alpine's
21562 MESSAGE&nbsp;INDEX
21563 screen, is set when you use the &quot;"D&nbsp;Delete&quot; command.
21564 It is cleared
21565 when you use the &quot;U&nbsp;Undelete&quot; command.
21568 Messages marked with this flag will be permanently removed from
21569 the folder when you issue the <A HREF="h_index_cmd_expunge">Expunge</A>
21570 command, or
21571 when you indicate acceptance of their removal upon leaving the folder.
21574 Note, there can be other actions implicit in the
21575 &quot;D&nbsp;Delete&quot; command,
21576 such as advancing to the next message, that may be momentarily undesirable.
21577 For this reason, it's sometimes useful to set or clear the <EM>Deleted</EM>
21578 flag <A HREF="h_common_flag">explicitly</A>.
21581 &lt;End of help on this topic&gt;
21582 </BODY>
21583 </HTML>
21584 ====== h_config_incoming_timeo ======
21585 <HTML>
21586 <HEAD>
21587 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></TITLE>
21588 </HEAD>
21589 <BODY>
21590 <H1>OPTION: <!--#echo var="VAR_incoming-check-timeout"--></H1>
21592 This option has no effect unless the feature
21593 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21594 is set, which in turn has no effect unless
21595 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21596 is set.
21598 Sets the time in seconds that Alpine will
21599 attempt to open a network connection used for monitoring for Unseen
21600 messages in Incoming Folders. The default is 5.
21601 If a connection has not completed within this many seconds Alpine will
21602 give up and consider it a failed connection.
21604 <UL>   
21605 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21606 </UL><P>
21607 &lt;End of help on this topic&gt;
21608 </BODY>
21609 </HTML>
21610 ====== h_config_psleep ======
21611 <HTML>
21612 <HEAD>
21613 <TITLE>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</TITLE>
21614 </HEAD>
21615 <BODY>
21616 <H1>OPTION: <!--#echo var="VAR_mailcap-check-interval"--> (UNIX Alpine only)</H1>
21619 In the good old days a mailcap viewer was used to examine an 
21620 attachment before saving it, and after viewing the attachment control 
21621 would return to the operating system when the viewer was closed. Therefore, 
21622 when the mailcap viewer returned control to the operating system, it 
21623 could be assumed that the user who opened the attachment was done
21624 examining it, and the copy of the attachment that was used, could be removed.
21627 However, today this assumption is not longer valid. Some viewers return 
21628 control to the operating system before they actually read the attachment
21629 to be examined. This causes Alpine to delete the attachment before it 
21630 is read by the viewer, causing the viewer to fail opening the attachment.
21633 In order to work around this problem, Alpine checks, after the viewer has 
21634 returned control to the operating system, if there is any process that is 
21635 using the attachment. This variable controls the number of seconds that 
21636 must elapse between checks. Once it is found that no process is using the 
21637 attachment, this is removed.
21640 The minimum value for this variable is 60 (checks will be made once per 
21641 minute), and the maximum value is 600 (checks will be made once every 10 
21642 minutes). The default value is 60.
21645 <UL>   
21646 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21647 </UL><P>
21648 &lt;End of help on this topic&gt;
21649 </BODY>
21650 </HTML>
21651 ====== h_config_incoming_interv ======
21652 <HTML>
21653 <HEAD>
21654 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval"--></TITLE>
21655 </HEAD>
21656 <BODY>
21657 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval"--></H1>
21659 This option has no effect unless the feature
21660 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21661 is set, which in turn has no effect unless
21662 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21663 is set.
21665 This option specifies, in seconds, how often Alpine will check
21666 for new mail and state changes in Incoming Folders when Incoming Folders
21667 Checking is turned on.
21668 The default is 3 minutes (180).
21669 This value applies only to folders that are local to the system that
21670 Alpine is running on or that are accessed using the IMAP protocol.
21671 The similar option
21672 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>
21673 applies to all other monitored folders.
21675 <UL>   
21676 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21677 </UL><P>
21678 &lt;End of help on this topic&gt;
21679 </BODY>
21680 </HTML>
21681 ====== h_config_incoming_second_interv ======
21682 <HTML>
21683 <HEAD>
21684 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></TITLE>
21685 </HEAD>
21686 <BODY>
21687 <H1>OPTION: <!--#echo var="VAR_incoming-check-interval-secondary"--></H1>
21689 This option has no effect unless the feature
21690 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21691 is set, which in turn has no effect unless
21692 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21693 is set.
21695 This option together with the option
21696 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21697 specifies, in seconds, how often Alpine will check
21698 for new mail and state changes in Incoming Folders when Incoming Folders
21699 Checking is turned on.
21700 The default for this option is 3 minutes (180).
21701 For folders that are local to this system or
21702 that are accessed using the IMAP protocol
21703 the value of the option
21704 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>
21705 is used.
21706 For all other monitored folders, the value of this option is used.
21708 The reason there are two separate options is because it is usually
21709 less expensive to check local and IMAP folders than it is to check
21710 other types, like POP or NNTP folders.
21711 You may want to set this secondary value to a higher number than
21712 the primary check interval.
21714 <UL>   
21715 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21716 </UL><P>
21717 &lt;End of help on this topic&gt;
21718 </BODY>
21719 </HTML>
21720 ====== h_config_incoming_list ======
21721 <HTML>
21722 <HEAD>
21723 <TITLE>OPTION: <!--#echo var="VAR_incoming-check-list"--></TITLE>
21724 </HEAD>
21725 <BODY>
21726 <H1>OPTION: <!--#echo var="VAR_incoming-check-list"--></H1>
21728 This option has no effect unless the feature
21729 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
21730 is set, which in turn has no effect unless
21731 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
21732 is set.
21734 When monitoring the Incoming Message Folders for Unseen messages Alpine will
21735 normally monitor all Incoming Folders.
21736 You may use this option to restrict the list of monitored folders to a
21737 subset of all Incoming Folders.
21739 <UL>   
21740 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21741 </UL><P>
21742 &lt;End of help on this topic&gt;
21743 </BODY>
21744 </HTML>
21745 ====== h_config_pers_name ======
21746 <HTML>
21747 <HEAD>
21748 <TITLE>OPTION: <!--#echo var="VAR_personal-name"--></TITLE>
21749 </HEAD>
21750 <BODY>
21751 <H1>OPTION: <!--#echo var="VAR_personal-name"--></H1>
21753 This value is used to determine the full name part of the "From" address
21754 on messages you send.
21755 <!--chtml if pinemode="os_windows"-->
21756  PC-Alpine requires that this be set in order to properly construct the "From" address.
21757 <!--chtml else-->
21758  If unset, Unix Alpine will obtain your full name from
21759  the system password file. PC-Alpine, on the other hand, requires that this be set.
21760 <!--chtml endif-->
21762 If you want to change the value of what gets included in the From header
21763 in messages you send (other than just the Personal Name)
21764 look <A HREF="h_config_change_your_from">here</A> for a description.
21765 <P><UL>
21766 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21767 </UL><P>
21768 &lt;End of help on this topic&gt;
21769 </BODY>
21770 </HTML>
21771 ====== h_config_pruned_folders ======
21772 <html>
21773 <header>
21774 <title>OPTION: <!--#echo var="VAR_pruned-folders"--></title>
21775 </header>
21776 <body>
21777 <h1>OPTION: <!--#echo var="VAR_pruned-folders"--></h1>
21779 This variable allows you to define a list of one or more folders that
21780 Alpine will offer to prune for you in the same way it automatically offers
21781 to prune your "sent-mail" folder each month.
21782 Each folder in this list must be a folder in your default folder collection
21783 (the first folder collection if you have more than one), and it is just
21784 the relative name of the folder in the collection, not the fully-qualified name.
21785 It is similar to sent-mail.
21786 Instead of something like
21788 <CENTER><SAMP><!--#echo var="VAR_pruned-folders"-->={servername}mail/folder</SAMP></CENTER>
21790 the correct value to use would be
21792 <CENTER><SAMP>folder</SAMP></CENTER>
21794 There is an assumption here that your first collection is the folders in
21796 <CENTER><SAMP>{servername}mail</SAMP></CENTER>
21799 Once a month, for each folder listed, Alpine will offer to move
21800 the contents of the folder to a new folder of the same name but with
21801 the previous month's date appended.  Alpine will then look for any such
21802 date-appended folder names created for a previous month, and offer each
21803 one it finds for deletion.
21806 If you decline the first offer, no mail is moved and no new folder is
21807 created.
21810 The new folders will be created
21811 in your default folder collection.
21814 <UL>   
21815 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21816 </UL><P>
21817 &lt;End of help on this topic&gt;
21818 </body>
21819 </html>
21820 ====== h_config_upload_cmd ======
21821 <HTML>
21822 <HEAD>
21823 <TITLE>OPTION: <!--#echo var="VAR_upload-command"--></TITLE>
21824 </HEAD>
21825 <BODY>
21826 <H1>OPTION: <!--#echo var="VAR_upload-command"--></H1>
21828 This option affects the behavior of the Composer's &quot;Read File&quot; 
21829 (^R in the message body) and &quot;Attach File&quot; (^J in the header) 
21830 commands.  It specifies
21831 a Unix program name, and any necessary command line arguments, that Alpine can
21832 use to transfer files from your personal computer into messages that you are
21833 composing.<P>
21835 <B>Note:</B> this facility is intended for use with serial line transfer 
21836 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21837 to work with TCP/IP file transfer programs such as ftp.<P>
21839 If a program is specified, the commands listed above are modified to offer a
21840 subcommand (^Y) to activate the transfer.  Obviously, the Unix program
21841 specified here must match the transfer program or protocol available on the
21842 personal computer.<P>
21844 Alpine expects to exchange uploaded data via a file on your Unix system.  When
21845 the specified upload program finishes, Alpine expects the uploaded data to be
21846 contained in this file.<P>
21848 When upload is invoked via the &quot;Read File&quot; subcommand, Alpine 
21849 generates a
21850 temporary file name that it will pass to the specified Unix program.  Alpine
21851 will read the resulting uploaded text from this file and then delete it when
21852 the upload command is finished.<P>
21854 When upload is invoked via the &quot;Attach File&quot; subcommand, Alpine will 
21855 prompt
21856 you for the name of the file that is to contain the uploaded information that
21857 it is to attach.  Alpine will attach this file to the composition, but will
21858 <B>not</B> delete this file after the upload command is finished.<P>
21860 The special token &quot;_FILE_&quot; may be included among the Unix program's 
21861 command
21862 line arguments.  Alpine will replace this symbol with the name of the file
21863 being used to exchange the uploaded information.  This token allows you to
21864 position the file name where it is required in the Unix program's command
21865 line arguments.<P>
21867 If the &quot;_FILE_&quot; token is not present in the specified command, the
21868 temporary file's name is automatically appended to the specified Unix
21869 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21870 <B>last</B> command line argument.
21871 <P><UL>
21872 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21873 </UL><P>
21874 &lt;End of help on this topic&gt;
21875 </BODY>
21876 </HTML>
21877 ====== h_config_upload_prefix ======
21878 <HTML>
21879 <HEAD>
21880 <TITLE>OPTION: <!--#echo var="VAR_upload-command-prefix"--></TITLE>
21881 </HEAD>
21882 <BODY>
21883 <H1>OPTION: <!--#echo var="VAR_upload-command-prefix"--></H1>
21885 This option is used in conjunction with the <!--#echo var="VAR_upload-command"--> option.
21886 It defines text to be written to the terminal emulator (via standard output)
21887 immediately prior to starting upload command.  This is useful for
21888 integrated serial line file transfer agents that permit command passing
21889 (e.g., Kermit's APC method).<P>
21891 The special token &quot;_FILE_&quot; may be included in the string specification.
21892 That symbol will be replaced with the (Alpine-created) name of the temporary
21893 file in which Alpine will expect to find the uploaded file.
21894 <P><UL>
21895 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21896 </UL><P>
21897 &lt;End of help on this topic&gt;
21898 </BODY>
21899 </HTML>
21900 ====== h_config_download_cmd ======
21901 <HTML>
21902 <HEAD>
21903 <TITLE>OPTION: <!--#echo var="VAR_download-command"--></TITLE>
21904 </HEAD>
21905 <BODY>
21906 <H1>OPTION: <!--#echo var="VAR_download-command"--></H1>
21908 This option affects the behavior of the Export command.  It specifies a Unix
21909 program name, and any necessary command line arguments, that Alpine can use to
21910 transfer the exported message to your personal computer's disk.<P>
21911 Note: this facility is intended for use with serial line transfer 
21912 protocols, such as kermit, xmodem, or zmodem.  It is <B>not</B> intended
21913 to work with TCP/IP file transfer programs such as ftp.<P>
21914 If a program is specified, the Export command is modified to offer a
21915 subcommand (^V) to activate the transfer (in lieu of saving it to
21916  the machine where Alpine is running).  Obviously, the Unix program
21917 specified here must match the transfer program or protocol available on the
21918 personal computer.<P>
21920 When this subcommand is selected and before Alpine invokes the specified Unix
21921 program, Alpine will create a temporary file containing the text of the
21922 exported message.  Alpine uses this file to pass the exported message text to
21923 the specified Unix program.<P>
21925 The special token &quot;_FILE_&quot; may be included among the Unix program's command
21926 line arguments.  Alpine will replace this symbol with the temporary file's name
21927 before executing the Unix program.  This token allows you to position the
21928 file name where it is required in the Unix program's command line arguments.
21930 If the &quot;_FILE_&quot; token is not present in the specified command, the
21931 temporary file's name is automatically appended to the specified Unix
21932 program.  In other words, you don't need to use &quot;_FILE_&quot; if it is the
21933 <B>last</B> command line argument.
21934 <P><UL>
21935 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21936 </UL><P>
21937 &lt;End of help on this topic&gt;
21938 </BODY>
21939 </HTML>
21940 ====== h_config_download_prefix ======
21941 <HTML>
21942 <HEAD>
21943 <TITLE>OPTION: <!--#echo var="VAR_download-command-prefix"--></TITLE>
21944 </HEAD>
21945 <BODY>
21946 <H1>OPTION: <!--#echo var="VAR_download-command-prefix"--></H1>
21948 This option is used in conjunction with the <!--#echo var="VAR_download-command"--> option.
21949 It defines text to be written to the terminal emulator (via standard output)
21950 immediately prior to starting the download command.  This is useful for
21951 integrated serial line file transfer agents that permit command passing
21952 (e.g., Kermit's APC method).
21954 The special token &quot;_FILE_&quot; may be included in the string 
21955 specification.
21956 That symbol will be replaced with the (Alpine-created) name of the temporary
21957 file into which Alpine will place the message to be downloaded.
21958 <P><UL>
21959 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21960 </UL><P>
21961 &lt;End of help on this topic&gt;
21962 </BODY>
21963 </HTML>
21964 ====== h_config_mailcap_path ======
21965 <HTML>
21966 <HEAD>
21967 <TITLE>OPTION: <!--#echo var="VAR_mailcap-search-path"--></TITLE>
21968 </HEAD>
21969 <BODY>
21970 <H1>OPTION: <!--#echo var="VAR_mailcap-search-path"--></H1>
21971 This variable is used to replace Alpine's default mailcap file search path.
21972 It takes one or more file names (full paths must be specified) in which to
21973 look for mail capability data.  The default search path can be found in this
21974 <A HREF="h_news_config">Alpine Configuration</A> help, near the bottom.
21975 If there is more than one file name listed, list members should be delimited
21976 by 
21977 <!--chtml if pinemode="os_windows"-->
21978 a semi-colon (;) under Windows; for example:<PRE>
21979         C:&#92;MYCONFIG&#92;MAILCAP.TXT;H:&#92;NETCONFIG&#92;MAILCAP.TXT
21980 </PRE>
21981 <!--chtml else-->
21982 a colon (:) under UNIX; for example:<PRE>
21983         ~/.mailcap:/etc/mailcap:/usr/etc/mailcap:/usr/local/etc/mailcap
21984 </PRE>
21985 <!--chtml endif-->
21986 <P><UL>
21987 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
21988 </UL>
21990 &lt;End of help on this topic&gt;
21991 </BODY>
21992 </HTML>
21993 ====== h_config_mimetype_path ======
21994 <HTML>
21995 <HEAD>
21996 <TITLE>OPTION: <!--#echo var="VAR_mimetype-search-path"--></TITLE>
21997 </HEAD>
21998 <BODY>
21999 <H1>OPTION: <!--#echo var="VAR_mimetype-search-path"--></H1>
22001 This variable is used to replace Alpine's default mime.types file search path.
22002 It takes one or more file names (full paths must be specified) in which to
22003 look for file-name-extension to MIME type mapping data.  The default search
22004 path can be found in this
22005 <A HREF="h_news_config">Alpine Configuration</A> help.
22009 If there is more than one file name listed, list members should be delimited
22010 by a colon (:) under UNIX and a semi-colon (;) under Windows.
22012 &lt;End of help on this topic&gt;
22013 </BODY></HTML>
22014 ====== h_config_set_att_ansi ======
22015 <HTML><HEAD>
22016 <TITLE>OPTION: Set printer to attached ansi printer</TITLE>
22017 </HEAD>
22018 <BODY>
22019 <H1>OPTION: Set printer to attached ansi printer</H1>
22021 Type "S" to set your printer to "attached-to-ansi".<BR>
22022 It is OK to include "attached-to-ansi" in your personal list below.
22024 &lt;End of help on this topic&gt;
22025 </BODY></HTML>
22026 ====== h_config_set_att_ansi2 ======
22027 <HTML><HEAD>
22028 <TITLE>OPTION: Set printer to attached ansi printer (no formfeed)</TITLE>
22029 </HEAD>
22030 <BODY>
22031 <H1>OPTION: Set printer to attached ansi printer (no formfeed)</H1>
22033 Type "S" to set your printer to "attached-to-ansi-no-formfeed".<BR>
22034 It is OK to include "attached-to-ansi-no-formfeed" in your personal
22035 list below.
22039 This is the same as the "attached-to-ansi" option except that a
22040 formfeed character will not be appended to the end of the print job.
22041 If your printer already ejects the paper by itself at the end of the
22042 job, you may prefer the "no-formfeed" form of this printer so that you
22043 don't get an extra blank page between print jobs.
22046 &lt;End of help on this topic&gt;
22047 </BODY></HTML>
22048 ====== h_config_set_att_wyse ======
22049 <HTML><HEAD>
22050 <TITLE>OPTION: Set printer to attached Wyse60 printer</TITLE>
22051 </HEAD>
22052 <BODY>
22053 <H1>OPTION: Set printer to attached Wyse60 printer</H1>
22055 Type "S" to set your printer to "attached-to-wyse".<BR>
22056 It is OK to include "attached-to-wyse" in your personal list below.
22058 This is very similar to "attached-to-ansi".
22059 The only difference is in the control characters sent to turn the printer
22060 on and off.
22061 The ansi version of the printer uses ESC LEFT_BRACKET 5 i
22062 to turn on the printer and ESC LEFT_BRACKET 4 i
22063 to turn it off.
22064 The Wyse version uses Ctrl-R for on, and Ctrl-T for off.
22065 &lt;End of help on this topic&gt;
22066 </BODY></HTML>
22067 ====== h_config_set_att_wyse2 ======
22068 <HTML><HEAD>
22069 <TITLE>OPTION: Set printer to attached Wyse60 printer (no formfeed)</TITLE>
22070 </HEAD>
22071 <BODY>
22072 <H1>OPTION: Set printer to attached Wyse60 printer (no formfeed)</H1>
22074 Type "S" to set your printer to "attached-to-wyse-no-formfeed".<BR>
22075 It is OK to include "attached-to-wyse-no-formfeed" in your personal
22076 list below.
22080 This is the same as the "attached-to-wyse" option except that a
22081 formfeed character will not be appended to the end of the print job.
22082 If your printer already ejects the paper by itself at the end of the
22083 job, you may prefer the "no-formfeed" form of this printer so that you
22084 don't get an extra blank page between print jobs.
22087 &lt;End of help on this topic&gt;
22088 </BODY></HTML>
22089 ====== h_config_set_stand_print ======
22090 <HTML>
22091 <HEAD>
22092 <TITLE>OPTION: Set default printer</TITLE>
22093 </HEAD>
22094 <H1>OPTION: Set default printer</H1>
22095 <BODY>
22096 Move to the printer you want and type "S" to set it to be your
22097 default printer.  This list is not modifiable by you and has been
22098 set up by the system administrators.  If there is more than one printer
22099 listed in the Command List, you will be able to cycle through that
22100 whole list at the time you print, starting with your default.
22101 It is OK to include entries from this Standard list in your personal
22102 list below.
22104 &lt;End of help on this topic&gt;
22105 </BODY>
22106 </HTML>
22107 ====== h_config_set_custom_print ======
22108 <HTML>
22109 <HEAD>
22110 <TITLE>OPTION: Set default printer</TITLE>
22111 </HEAD>
22112 <H1>OPTION: Set default printer</H1>
22113 <BODY>
22114 You may add as many print commands as you want to your personal list.
22115 Specify one of them as your default printer by moving to the printer
22116 you want and typing "S".  If there is more than one printer listed
22117 in the Command List, you will be able to cycle through that list at
22118 the time you print, starting with your default.  It is OK to include
22119 entries from the Standard list above or to include the command
22120 "attached-to-ansi", "attached-to-ansi-no-formfeed", "attached-to-wyse", or
22121 "attached-to-wyse-no-formfeed" as one of the entries here.
22123 &lt;End of help on this topic&gt;
22124 </BODY>
22125 </HTML>
22126 ====== h_config_user_id =====
22127 <HTML>
22128 <HEAD>
22129 <TITLE>OPTION: <!--#echo var="VAR_user-id"--></TITLE>
22130 </HEAD>
22131 <BODY>
22132 <H1>OPTION: <!--#echo var="VAR_user-id"--></H1>
22134 This value is used as part of the "From" address on messages you send.
22135 It is also the default login name for remote IMAP server access.  Set this
22136 to the username part you want to appear on outgoing email.
22138 If you want to change the value of what gets included in the From header
22139 in messages you send (other than just the User ID)
22140 look <A HREF="h_config_change_your_from">here</A> for a description.
22142 <P><UL>   
22143 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22144 </UL><P>
22145 &lt;End of help on this topic&gt;
22146 </BODY>
22147 </HTML>
22148 ====== h_config_user_dom =====
22149 <HTML>
22150 <HEAD>
22151 <TITLE>OPTION: <!--#echo var="VAR_user-domain"--></TITLE>
22152 </HEAD>
22153 <BODY>
22154 <H1>OPTION: <!--#echo var="VAR_user-domain"--></H1>
22156 This value specifies the domain part (right-hand side) of your return
22157 address on outgoing email and is also used as the default domain for email
22158 composed to a local user.
22159 <!--chtml if pinemode="os_windows"-->
22160  This value is required for PC-Alpine. If you are unsure as to what this should be,
22161  contact your local help desk, system administrator, or Internet Service Provider.
22162 <!--chtml else-->
22163  If unset, Unix Alpine will obtain the domain from
22164  the system.  Often this value will be set for your whole site by the
22165  system administrator.<P>
22166 <!--chtml endif-->
22167 If you set this, see also the <A HREF="h_config_quell_local_lookup">
22168 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
22170 If you want to change the value of what gets included in the From header
22171 in messages you send (other than just the User Domain)
22172 look <A HREF="h_config_change_your_from">here</A> for a description.
22173 <P><UL>
22174 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22175 </UL><P>
22176 &lt;End of help on this topic&gt;
22177 </BODY>
22178 </HTML>
22179 ====== h_config_smtp_server =====
22180 <HTML>
22181 <HEAD>
22182 <TITLE>OPTION: <!--#echo var="VAR_smtp-server"--></TITLE>
22183 </HEAD>
22184 <BODY>
22185 <H1>OPTION: <!--#echo var="VAR_smtp-server"--></H1>
22186 This value specifies the name of one or more SMTP 
22187 (Simple Mail Transfer Protocol) servers for sending mail. 
22188 <!--chtml if pinemode="os_windows"-->
22189 You must have an SMTP server for use with PC-Alpine.
22190 SMTP servers are
22191 normally set up by a system administrator for use by all members of a given
22192 campus or department.
22193 Contact your local help desk to ask what SMTP
22194 servers you should use.  
22195 <!--chtml else-->
22196 Unix Alpine users may not need to set an SMTP server.
22197 Alpine will attempt to execute the program (usually sendmail) that is used
22198 to insert mail into the mail system.
22199 If this works for you, you may leave this option blank.
22200 If there is an SMTP server running on the Unix host you may be able to
22201 improve sending performance slightly by setting the SMTP server option
22202 to &quot;localhost&quot; or to the actual name of the Unix host.
22204 If the Unix host doesn't work the way Alpine was expecting you will need to
22205 set the value of this option.
22206 SMTP servers are
22207 normally set up by a system administrator for use by all members of a given
22208 campus or department.
22209 Contact your local help desk to ask what SMTP
22210 servers you should use.  
22211 <!--chtml endif-->
22213 Your SMTP server may offer SMTP AUTH authentication.
22214 It may even require it.
22215 If your SMTP server offers SMTP AUTH authentication you may specify a
22216 &quot;user&quot; name parameter to cause Alpine to attempt to authenticate.
22217 This parameter requires an associated value,
22218 the username identifier with which to establish the server
22219 connection.
22220 An example might be:
22223 <CENTER><SAMP>smtpserver.example.com/user=katie</SAMP></CENTER>
22226 If AUTH authentication is offered by the server, this will cause Alpine to
22227 attempt to use it.
22228 If AUTH authentication is not offered by the server, this will cause Alpine
22229 to fail sending with an error similar to:
22232 <CENTER><SAMP>Error: SMTP authentication not available</SAMP></CENTER>
22235 Another type of authentication that is used by some ISPs is called
22236 &quot;POP before SMTP&quot; or &quot;IMAP before SMTP&quot;,
22237 which means that you have to authenticate
22238 yourself to the POP or IMAP server by opening a mailbox before you
22239 can send mail.
22240 To do this, you usually only have to open your INBOX.
22243 You may tell Alpine to use the
22244 <A HREF="http://www.ietf.org/rfc/rfc2476.txt">Message Submission</A>
22245 port (587) instead of the SMTP port (25) by including the &quot;submit&quot;
22246 parameter
22247 in this option.
22248 At this time &quot;/submit&quot; is simply equivalent to specifying
22249 port 587, though it may imply more than that at some point in the future.
22250 Some ISPs are blocking port 25 in order to reduce the amount of spam
22251 being sent to their users.
22252 You may find that the submit option allows you to get around such a block.
22255 <CENTER><SAMP>smtpserver.example.com/submit</SAMP></CENTER>
22258 To specify any non-standard port number on the SMTP server you may follow
22259 the hostname with a colon followed by the portnumber.
22262 <CENTER><SAMP>smtpserver.example.com:12345</SAMP></CENTER>
22265 Normally, when a connection is made to the Smtp-Server Alpine will attempt
22266 to negotiate a secure (encrypted) session using Transport Layer Security (TLS).
22267 If that fails then a non-encrypted connection will be attempted instead.
22268 You may specify that a TLS connection is required if you wish.
22269 If you append &quot;/tls&quot; to the name then the connection will fail
22270 instead of falling back to a non-secure connection.
22273 <CENTER><SAMP>smtpserver.example.com/tls</SAMP></CENTER>
22277 For more details about server name possibilities see
22278 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22281 <UL>
22282 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22283 </UL>
22285 &lt;End of help on this topic&gt;
22286 </BODY>
22287 </HTML>
22288 ====== h_config_nntp_server =====
22289 <HTML>
22290 <HEAD>
22291 <TITLE>OPTION: <!--#echo var="VAR_nntp-server"--></TITLE></HEAD>
22292 <BODY>
22293 <H1>OPTION: <!--#echo var="VAR_nntp-server"--></H1>
22295 This value specifies the name of one or more NNTP
22296 (Network News Transfer Protocol)
22297 servers for reading and posting USENET news.
22298 NNTP servers are normally
22299 set up by a system administrator for use by all members of a given campus
22300 or department.
22301 Contact your local help desk to ask what NNTP servers you should use.  
22302 <!--chtml if pinemode="os_windows"--><!--chtml else-->
22303 Often Unix Alpine users will find that this variable has been
22304 set for the whole system (and they don't have to worry about it).  
22305 <!--chtml endif-->
22306 When you define an NNTP server here, Alpine implicitly defines a news
22307 collection for you, assuming that server as the news server and assuming
22308 that you will use the NNTP protocol and a local newsrc configuration file
22309 for reading news.
22310 For more about reading news with Alpine, see
22311 <A HREF="h_reading_news">how to use Alpine to read news</A>.
22313 Your NNTP server may offer NNTP &quot;AUTHINFO SASL&quot;
22314 or &quot;AUTHINFO USER&quot; authentication.
22315 It may even require it.
22316 If your NNTP server does offer such authentication you may specify a user name
22317 parameter to cause Alpine to attempt to authenticate.
22318 The same is true for the server name in a folder collection that uses NNTP.
22319 This parameter requires an associated value,
22320 the username identifier with which to establish the server connection.
22321 An example might be:
22324 <CENTER><SAMP>nntpserver.example.com/user=katie</SAMP></CENTER>
22327 If authentication is offered by the server, this will cause Alpine to
22328 attempt to use it.
22329 If authentication is not offered by the server, this will cause Alpine
22330 to fail with an error similar to:
22333 <CENTER><SAMP>Error: NNTP authentication not available</SAMP></CENTER>
22335 For more details about the server name possibilities see
22336 <A HREF="h_folder_server_syntax">Server Name Syntax</A>.
22337 <P><UL>
22338 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22339 </UL><P>
22340 &lt;End of help on this topic&gt;
22341 </BODY>
22342 </HTML>
22343 ====== h_config_inbox_path =====
22344 <HTML>
22345 <HEAD>
22346 <TITLE>OPTION: <!--#echo var="VAR_inbox-path"--></TITLE>
22347 </HEAD>
22348 <BODY>
22349 <H1>OPTION: <!--#echo var="VAR_inbox-path"--></H1>
22351 This value overrides the default value of your INBOX name/path/location.
22352 <!--chtml if pinemode="os_windows"-->
22353 PC-Alpine users must specify an inbox path and it must be a folder on an
22354 IMAP server.  
22355 <!--chtml else-->
22356 Unix and VMS Alpine users will often find that this variable
22357 has been pre-configured by your system administrator.  
22358 <!--chtml endif-->
22359 You may be able to specify an alternate INBOX that is either a local folder 
22360 or a folder on an IMAP server.
22362 A typical remote <!--#echo var="VAR_inbox-path"--> entry would be: &#123;monet.art.example.com}INBOX
22363 where &quot;monet.art.example.com&quot; is replaced by the name of your IMAP
22364 mail server.
22366 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22367 details on the syntax of folder definitions.
22369 See <A HREF="h_info_on_mbox">Missing mail and the mbox driver</A> if your
22370 mail is disappearing.
22371 <P><UL>
22372 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22373 </UL><P>
22374 &lt;End of help on this topic&gt;
22375 </BODY>
22376 </HTML>
22377 ====== h_config_change_your_from =====
22378 <HTML>
22379 <HEAD>
22380 <TITLE>How to Change your From Address</TITLE>
22381 </HEAD>
22382 <BODY>
22383 <H1>How to Change your From Address</H1>
22385 If the From address that Alpine includes in mail that you send is not correct,
22386 you may want to configure a different default value for the From address.
22387 You may follow these directions to change the default:
22390 <UL>
22391   <LI> Go to the Main Alpine Menu
22392   <LI> From there type the Setup Command
22393   <LI> From there type the Config Command
22394 </UL>
22397 You've probably already seen this SETUP CONFIGURATION screen.
22398 If not, there are many options you may want to set here.
22399 To set the value of the From header you may use the
22400 <A href="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A> option.
22401 Find it by scrolling down a few pages or use the WhereIs command to
22402 search for &quot;customized&quot;.
22403 You may want to read the help text associated with the option.
22405 To add a custom From header, type the Add command and enter the
22406 full header line, including the leading &quot;From:&nbsp;&quot;.
22407 For example:
22409 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
22411 Now exit the Setup command and try sending mail to yourself to see
22412 what the From line looks like.
22414 When you are in the composer you may edit the custom From line by typing
22415 Ctrl-R while your cursor is in the headers of the message and then moving
22416 to the From line and editing.
22417 If you want to leave the default value the same but add the possibility
22418 of being able to edit the header when you compose, add just the header
22419 name without a value.
22420 For example:
22422 <CENTER><SAMP>From:</SAMP></CENTER>
22424 If you change your From address you may also find it useful to add the
22425 changed From address to the
22426 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
22427 configuration option.
22429 <UL>   
22430 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22431 </UL><P>
22432 &lt;End of help on this topic&gt;
22433 </BODY>
22434 </HTML>
22435 ====== h_config_default_fcc =====
22436 <HTML>
22437 <HEAD>
22438 <TITLE>OPTION: <!--#echo var="VAR_default-fcc"--></TITLE>
22439 </HEAD>
22440 <BODY>
22441 <H1>OPTION: <!--#echo var="VAR_default-fcc"--></H1>
22443 This value specifies where a copy of outgoing mail should be saved.  If
22444 this is not a path name, it will be in the default collection for saves.
22445 Any valid folder specification, local or IMAP, is allowed.  This default
22446 folder carbon copy only applies when the 
22447 <A HREF="h_config_fcc_rule">&quot;<!--#echo var="VAR_fcc-name-rule"-->&quot;</A> 
22448 is set to use the default folder.  
22449 <!--chtml if pinemode="os_windows"-->
22450 PC-Alpine default is &quot;SENTMAIL&quot; (normally stored as SENTMAIL.MTX)
22451 <!--chtml else-->
22452 Unix Alpine default
22453 is normally &quot;sent-mail&quot; in the default folder collection. 
22454 <!--chtml endif-->
22456 If you access your email through an IMAP server, especially if you often switch between Unix Alpine
22457 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on your
22458 IMAP server (remember that in order to later access this remote folder through Alpine, it
22459 must be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22460 for more information). An example:<p>
22461 <CENTER><SAMP>{monet.art.example.com}mail/sent-mail</SAMP></CENTER>
22463 To suppress saving of outgoing mail, set: <!--#echo var="VAR_default-fcc"-->=&quot;&quot;
22465 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22466 details on the syntax of folder definitions.
22468 <UL>   
22469 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22470 </UL><P>
22471 &lt;End of help on this topic&gt;
22472 </BODY>
22473 </HTML>
22474 ====== h_config_def_save_folder =====
22475 <HTML>
22476 <HEAD>
22477 <TITLE>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></TITLE>
22478 </HEAD>
22479 <BODY>
22480 <H1>OPTION: <!--#echo var="VAR_default-saved-msg-folder"--></H1>
22482 This option determines the default folder name for save-message operations 
22483 (&quot;saves&quot;).
22485 If this is not a path name, it will be in the default collection for saves.
22486 Any valid folder specification, local or IMAP, is allowed.  This default
22487 folder only applies when the
22488 <A HREF="h_config_saved_msg_name_rule">&quot;<!--#echo var="VAR_saved-msg-name-rule"-->&quot;</A>
22489 doesn't override it.  
22490 <!--chtml if pinemode="os_windows"-->
22491 PC-Alpine default is &quot;SAVEMAIL&quot; (normally stored as SAVEMAIL.MTX).
22492 <!--chtml else-->
22493 Unix Alpine default
22494 is normally &quot;saved-messages&quot; in the default folder collection.
22495 <!--chtml endif-->
22496 If you access your email through an IMAP server, especially if you often switch between Unix
22497 and PC-Alpine, or between various desktop email systems, you may want to set this to a folder on an
22498 IMAP server (remember that in order to later access this remote folder through Alpine, it
22499 should be in a folder collection. See <A HREF="h_what_are_collections">Folder Collections Explained</a>
22500 for more information). An example:<p>
22501 <CENTER><SAMP>{monet.art.example.com}mail/saved-messages</SAMP></CENTER>
22503 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22504 details on the syntax of folder definitions.
22506 <UL>   
22507 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22508 </UL><P>
22509 &lt;End of help on this topic&gt;
22510 </BODY>
22511 </HTML>
22512 ====== h_config_postponed_folder =====
22513 <HTML>
22514 <HEAD>
22515 <TITLE>OPTION: <!--#echo var="VAR_postponed-folder"--></TITLE>
22516 </HEAD>
22517 <BODY>
22518 <H1>OPTION: <!--#echo var="VAR_postponed-folder"--></H1>
22520 This value overrides the default name for the folder where postponed
22521 messages are saved.  If this is not a path name, it will be in the default
22522 collection for message Saves.  Any valid folder specification, local or
22523 remote, is allowed. 
22524 PC-Alpine default
22525 is &quot;POSTPOND&quot; (stored as POSTPOND.MTX).
22526 The Unix Alpine default is normally &quot;postponed-msgs&quot;
22527 in the default collection. 
22529 Tip: If you are using different installations of (PC-)Alpine -- for example, PC-Alpine on your personal
22530 computer at home, and Unix Alpine on campus -- you can postpone a composition begun with one Alpine and
22531 resume it later with the other if you set this option to the <B>same folder on the same IMAP host</B>
22532 in all Alpine copies you use. 
22533 (Remember that in order to later access this remote folder through Alpine, it must be in a folder
22534 collection. See <A HREF="h_what_are_collections">Folder Collections Extensions Explained</a>
22535 for more information). An
22536 example:<p> 
22537 <CENTER><SAMP>{monet.art.example.com}mail/postponed-msgs</SAMP></CENTER>
22539 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22540 details on the syntax of folder definitions.
22542 <UL>   
22543 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22544 </UL><P>
22545 &lt;End of help on this topic&gt;
22546 </BODY>
22547 </HTML>
22548 ====== h_config_read_message_folder =====
22549 <HTML>
22550 <HEAD>
22551 <TITLE>OPTION: <!--#echo var="VAR_read-message-folder"--></TITLE>
22552 </HEAD>
22553 <BODY>
22554 <H1>OPTION: <!--#echo var="VAR_read-message-folder"--></H1>
22556 By virtue of specifying a folder name here, Alpine will be configured to
22557 save all messages that you have read during a session into the designated
22558 &quot;read messages&quot; folder.  This allows you to more easily distinguish
22559 between your really new email (in your INBOX) and those that you have
22560 already read.  Depending on how you define the 
22561 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22562 setting, you may or may not be asked when you quit
22563 Alpine if you want read messages to be moved to this folder.  In either
22564 case, moving the messages means they will be deleted from your INBOX.
22566 If this is not a path name, it will be in the default collection for
22567 saves.  Any valid folder specification, local or remote (via IMAP), is
22568 allowed.  There is no default for the name of the read message folder.
22570 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22571 details on the syntax of folder definitions.
22573 <UL>   
22574 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22575 </UL><P>
22576 &lt;End of help on this topic&gt;
22577 </BODY>
22578 </HTML>
22579 ====== h_config_form_folder =====
22580 <HTML>
22581 <HEAD>
22582 <TITLE>OPTION: <!--#echo var="VAR_form-letter-folder"--></TITLE>
22583 </HEAD>
22584 <BODY>
22585 <H1>OPTION: <!--#echo var="VAR_form-letter-folder"--></H1>
22587 A &quot;<!--#echo var="VAR_form-letter-folder"-->&quot; is a mail folder that is intended to
22588 contain messages that you have composed and that are intended to be
22589 sent in their original form repeatedly.
22592 Setting this variable will alter Alpine's usual behavior when you
22593 execute the Compose command.  Normally, Alpine offers a chance to
22594 continue a postponed or interrupted message should one or the other
22595 exist.  When this variable is set to a folder name that exists, Alpine
22596 will also offer the chance to select a message from the folder to
22597 insert into the composer (much like when continuing a postponed message).
22598 The difference, however, is that Alpine will not automatically delete
22599 the selected message from the Form Letter Folder.
22601 Setting this variable will also affect Alpine's behavior when you
22602 Postpone a message from the composer.  Normally, Alpine simply stashes
22603 the message away in your
22604 &quot;<A HREF="h_config_postponed_folder"><!--#echo var="VAR_postponed-folder"--></A>&quot;.
22605 Regardless of the specified folder's existence, Alpine will ask which
22606 folder you intend the message to be stored in.  Choose the
22607 &quot;F&quot; option to store the message in your Form Letter Folder.
22608 This is the most common way to add a message to the folder.
22611 Another method of adding messages to the folder is via the Alpine
22612 composer's <SAMP>Fcc:</SAMP> field.  If you are sending a message that
22613 you expect to send in the same form again, you can enter the Form
22614 Letter Folder's name in this field.  Alpine, as usual, will copy the
22615 message as it's sent.  Note, when you later select this message from 
22616 your Form Letter Folder, it will have the same recipients as the original
22617 message.
22620 To delete a message from the Form Letter Folder, you can either select
22621 the folder from a suitable FOLDER LIST screen, or use the Delete
22622 command in the MESSAGE INDEX offered when selecting from the folder as
22623 part of the Compose command.  You can delete a Form Letter Folder just
22624 as any other folder from a suitable FOLDER LIST screen.
22627 You may find that the <A HREF="h_rules_roles">&quot;Roles&quot;</A>
22628 facility can be used
22629 to replace the Form Letter Folder.
22632 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22633 details on the syntax of folder definitions.
22636 <UL>   
22637 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22638 </UL><P>
22639 &lt;End of help on this topic&gt;
22640 </BODY>
22641 </HTML>
22642 ====== h_config_archived_folders =====
22643 <HTML>
22644 <HEAD>
22645 <TITLE>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></TITLE>
22646 </HEAD>
22647 <BODY>
22648 <H1>OPTION: <!--#echo var="VAR_incoming-archive-folders"--></H1>
22650 This is like
22651 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>,
22652 only more general.  You may archive
22653 any of the folders in your incoming collection.  This is a list of folder
22654 pairs, with the first separated from the second in the pair by a space.
22655 The first folder in a pair is the folder you want to archive, and the
22656 second folder is the folder that read messages from the first should be
22657 moved to.  Depending on how you define the
22658 <A HREF="h_config_auto_read_msgs">&quot;auto-move-read-messages&quot;</A>
22659 setting, you may or may not be asked when you
22660 leave the first folder if you want read messages to be moved to the
22661 second folder.  In either case, moving the messages means they will be
22662 deleted from the first folder.
22664 The name of the first folder in each pair can be either the technical
22665 specification of the folder (like what appears in your configuration file)
22666 or (much easier) the nickname that you gave the folder when you made it
22667 an incoming folder.
22669 For example:<p>
22670 <CENTER><SAMP>{monet.art.example.com}inbox {monet.art.example.com}mail/inbox-archive</SAMP></CENTER>
22671 <p>or, using nicknames:<p>
22672 <CENTER><SAMP>inbox inbox-archive</SAMP></CENTER>
22674 If these are not path names, they will be in the default collection for
22675 saves. Any valid folder specification, local or remote (via IMAP), is
22676 allowed. There is no default.
22678 See the section on <A HREF="h_valid_folder_names">Valid Folder Names</A> for
22679 details on the syntax of folder definitions.
22681 <UL>   
22682 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22683 </UL><P>
22684 &lt;End of help on this topic&gt;
22685 </BODY>
22686 </HTML>
22687 ====== h_config_newsrc_path ======
22688 <HTML>
22689 <HEAD>
22690 <TITLE>OPTION: <!--#echo var="VAR_newsrc-path"--></TITLE>
22691 </HEAD>
22692 <BODY>
22693 <H1>OPTION: <!--#echo var="VAR_newsrc-path"--></H1>
22695 This option overrides the default name Alpine uses for your "newsrc" news
22696 status and subscription file.  If set, Alpine will take this value as the
22697 full pathname for the desired newsrc file.<P>
22699 If this option is <B>not</B> set, 
22700 <!--chtml if pinemode="os_windows"-->
22701 PC-Alpine looks first for $HOME&#92;NEWSRC (where $HOME defaults to the root
22702 of the current drive, e.g. &quot;C:&#92;&quot;) and then it looks in the same
22703 directory as your pinerc file for NEWSRC.
22704 <!--chtml else-->
22705 Unix Alpine looks for the file ~/.newsrc (that is, the file named .newsrc in 
22706 your account's home directory).
22707 <!--chtml endif-->
22708 <P><UL>
22709 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22710 </UL>
22712 &lt;End of help on this topic&gt;
22713 </BODY>
22714 </HTML>
22715 ====== h_config_literal_sig =====
22716 <HTML>
22717 <HEAD>
22718 <TITLE>OPTION: <!--#echo var="VAR_literal-signature"--></TITLE>
22719 </HEAD>
22720 <BODY>
22721 <H1>OPTION: <!--#echo var="VAR_literal-signature"--></H1>
22723 With this option your actual signature, as opposed to
22724 the name of a file containing your signature,
22725 is stored in the Alpine configuration file.
22726 If this is defined it takes precedence over the <!--#echo var="VAR_signature-file"--> option.
22729 This is simply a different way to store the signature.
22730 The signature is stored inside your Alpine configuration file instead of in
22731 a separate file.
22732 Tokens work the same way they do with the
22733 <A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A> so look there for
22734 help.
22737 The Setup/Signature command on Alpine's MAIN MENU will edit
22738 the &quot;<!--#echo var="VAR_literal-signature"-->&quot; by default.  However, if no
22739 &quot;<!--#echo var="VAR_literal-signature"-->&quot; is defined and the file named in the
22740 &quot;<!--#echo var="VAR_signature-file"-->&quot; option exists, then the latter will be used
22741 instead.
22744 The two character sequence &#92;n (backslash followed by
22745 the character n) will be used to signify a line-break in your signature.
22746 You don't have to enter the &#92;n, but it will be visible in the
22747 SETUP CONFIGURATION window after you are done editing the signature.
22750 <UL>   
22751 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22752 </UL><P>
22753 &lt;End of help on this topic&gt;
22754 </BODY>
22755 </HTML>
22756 ====== h_config_signature_file =====
22757 <HTML>
22758 <HEAD>
22759 <TITLE>OPTION: <!--#echo var="VAR_signature-file"--></TITLE>
22760 </HEAD>
22761 <BODY>
22762 <H1>OPTION: <!--#echo var="VAR_signature-file"--></H1>
22764 If a <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> option is defined,
22765 then this &quot;<!--#echo var="VAR_signature-file"-->&quot; option will be ignored.
22766 You can tell that that is the case because the value of the
22767 &quot;<!--#echo var="VAR_signature-file"-->&quot; will show up as
22769 <CENTER><SAMP>&lt;Ignored: using <!--#echo var="VAR_literal-signature"--> instead&gt;</SAMP></CENTER>
22771 You may either use all Literal Signatures (signatures stored in your
22772 configuration file) throughout Alpine, or all signature files.
22773 You can't mix the two.
22775 This is the name of a file that will be automatically inserted into
22776 outgoing messages.
22777 It typically contains information such as your
22778 name, email address and organizational affiliation.
22779 Alpine adds the
22780 signature into the message as soon as you enter the composer so you
22781 can choose to remove it or edit it on a message by message basis.
22782 Signature file placement in message replies is controlled by the
22783 &quot;<A HREF="h_config_sig_at_bottom"><!--#echo var="FEAT_signature-at-bottom"--></A>&quot;
22784 setting in the feature list.
22787 The default file name is
22788 <!--chtml if pinemode="os_windows"-->
22789 &quot;PINE.SIG&quot; in the same directory as your PINERC file if your
22790 PINERC file is a local file.
22791 If your PINERC file is remote, then it will be in the directory specified
22792 by the &quot;-aux local_directory&quot; command line option.
22793 <!--chtml else-->
22794 &quot;.signature&quot;.
22795 <!--chtml endif-->
22798 To create or edit your signature file choose Setup from the MAIN MENU
22799 and then select S for Signature (Main/Setup/Signature).  This puts you
22800 into the Signature Editor where you can enter a <EM>few</EM> lines of
22801 text containing your identity and affiliation.
22804 If the filename is followed by a vertical bar (|) then instead
22805 of reading the contents of the file the file is assumed to be a
22806 program that will produce the text to be used on its standard output.
22807 The program can't have any arguments and doesn't receive any input from Alpine,
22808 but the rest of the processing works as if the contents came from a file.
22811 Instead of storing the data in a local file, the
22812 signature data may be stored remotely in an IMAP folder.
22813 In order to do this, 
22814 you must use a remote name for the file.
22815 A remote <!--#echo var="VAR_signature-file"--> name might look like:
22817 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/signature</SAMP></CENTER>
22820 The syntax used here is the same as the syntax used for remote configuration
22821 files from the command line.
22822 Note that you may not access an existing signature file remotely,
22823 you have to create a new <EM>folder</EM> that contains the signature data.
22824 If the name you use here for the signature file is a remote name, then when
22825 you edit the file from the Setup/Signature command the data will be stored
22826 remotely in the folder.
22827 You aren't required to do anything special to create the folder, it
22828 gets created automatically if you use a remote name.
22831 Besides regular text, the signature file may also contain
22832 (or a signature program may produce) tokens that
22833 are replaced with text that usually depends on the message you are replying
22834 to or forwarding.
22835 For example, if the signature file contains the token
22837 <CENTER><SAMP>_DATE_</SAMP></CENTER>
22839 anywhere in the text, then that token is replaced by the date
22840 the message you are replying to or forwarding was sent.
22841 If it contains
22843 <CENTER><SAMP>_CURDATE_</SAMP></CENTER>
22845 that is replaced with the current date.
22846 The first is an example of a token that depends on the message you
22847 are replying to (or forwarding) and the second is an example which
22848 doesn't depend on anything other than the current date.
22849 You have to be a little careful with this facility since tokens that
22850 depend on the message you are replying to or forwarding will be replaced
22851 by nothing in the case where you are composing a new message from scratch.
22852 The use of <A HREF="h_rules_roles">&quot;roles&quot;</A> may help you
22853 in this respect.
22854 It allows you to use different signature files in different cases.
22857 The list of tokens available for use in the signature file is
22858 <A HREF="h_index_tokens">here</A>.
22861 Instead of, or along with the use of &quot;roles&quot; to give you
22862 different signature files in different situations, there is also
22863 a way to conditionally include text based
22864 on whether or not a token would result in specific replacement text.
22865 For example, you could include some text based on whether or not
22866 the _NEWS_ token would result in any newsgroups if it was used.
22867 This is explained in detail
22868 <A HREF="h_reply_token_conditionals">here</A>.
22869 This isn't for the faint of heart.
22871 In the very unlikely event that you want to include a literal token
22872 in the signature you must precede it with a backslash character.
22873 For example,
22875 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
22877 would produce something like
22879 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
22881 It is not possible to have a literal backslash followed by an expanded token.
22883 An alternate method for storing the signature data is available by using the
22884 <A HREF="h_config_literal_sig"><!--#echo var="VAR_literal-signature"--></A> configuration option.
22885 This variable will be used by default.
22887 <UL>   
22888 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22889 </UL><P>
22890 &lt;End of help on this topic&gt;
22891 </BODY>
22892 </HTML>
22893 ====== h_config_init_cmd_list =====
22894 <HTML>
22895 <HEAD>
22896 <TITLE>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></TITLE>
22897 </HEAD>
22898 <BODY>
22899 <H1>OPTION: <!--#echo var="VAR_initial-keystroke-list"--></H1>
22901 The initial keystroke--or command--list option lets you start Alpine at
22902 any place you like.
22903 Whatever keystrokes you specify here will be executed
22904 by Alpine upon startup as a macro.
22905 The words SPACE, TAB, DOWN, UP, LEFT, and
22906 RIGHT indicate the pressing of those keys.
22907 CR indicates the pressing of the RETURN key.
22908 F1 through F12 represent the function keys, and ^ followed
22909 by a character indicates that key pressed along with the control key (in
22910 other words, ^P means Ctrl-P).
22911 As a shortcut notation, an element of the list may be several characters
22912 surrounded by double-quotes (").
22913 That will be expanded into the individual keystrokes
22914 (excluding the double-quote characters).
22915 For example, the quoted-string
22917 <P><CENTER>"ABC"</CENTER>
22920 is interpreted the same as the three separate list members
22922 <P><CENTER>A and B and C</CENTER>
22925 which is also the same as
22927 <P><CENTER>A,B,C</CENTER>
22930 An example: To view message 1 on startup,
22931 you could use an <!--#echo var="VAR_initial-keystroke-list"--> equal to
22933 <P><CENTER>I,J,1,CR,V</CENTER>
22936 An equivalent version of this is
22938 <P><CENTER>"IJ1",CR,V</CENTER>
22941 Restrictions: You cannot pre-type into the composer with the initial
22942 keystroke list, and you cannot mix function key commands with letter
22943 commands.
22945 <P><UL>   
22946 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22947 </UL>
22949 &lt;End of help on this topic&gt;
22950 </BODY>
22951 </HTML>
22952 ====== h_config_comp_hdrs =====
22953 <html>
22954 <header>
22955 <title>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></title>
22956 </header>
22957 <body>
22958 <h1>OPTION: <!--#echo var="VAR_default-composer-hdrs"--></h1>
22960 You can control which headers you want visible when composing outgoing
22961 email using this option.
22962 You can specify any of the regular set, any
22963 <A HREF="h_compose_richhdr">Rich Header</A>,
22964 or any <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
22965 that you have already defined.
22966 If you use this setting at all, you must specify all the
22967 headers you want to see, you can't just add to the regular header set.
22968 The default set is To:, Cc:, Attchmnt:, and Subject:.<p>
22970 Note that the "Newsgroups:" header will be abbreviated in the Composer
22971 display, but should be spelled out in full here.<p>
22972 <UL>   
22973 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
22974 </UL><P>
22975 &lt;End of help on this topic&gt;
22976 </body>
22977 </html>
22978 ====== h_config_custom_hdrs =====
22979 <HTML>
22980 <HEAD>
22981 <TITLE>OPTION: <!--#echo var="VAR_customized-hdrs"--></TITLE>
22982 </HEAD>
22983 <BODY>
22984 <H1>OPTION: <!--#echo var="VAR_customized-hdrs"--></H1>
22986 You may add your own custom headers to outgoing messages.
22987 Each header you specify here must include the header tag 
22988 (<A HREF="h_composer_reply_to">Reply-To:</A>, Approved:, etc.)
22989 and may optionally include a value for that header.
22990 If you want to see these custom headers each time you compose a message,
22991 you must add them to your
22992 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> list, 
22993 otherwise they become part
22994 of the rich header set that you only see when you press the
22995 <A HREF="h_compose_richhdr">Rich Header</A>
22996 <!--chtml if pinemode="function_key"-->(F5)
22997 <!--chtml else-->(Ctrl-R)<!--chtml endif--> command.
22998 (If you are looking for a way to change which headers are <EM>displayed</EM>
22999 when you view a message, take a look at the
23000 <A HREF="h_config_viewer_headers"><!--#echo var="VAR_viewer-hdrs"--></A>
23001 option instead.)
23002 Here's an example that shows how you might set your From address
23004 <CENTER><SAMP>From: Full Name &lt;user@example.com&gt;</SAMP></CENTER>
23006 and another showing how you might set a Reply-To address
23008 <CENTER><SAMP>Reply-To: user@example.com</SAMP></CENTER>
23010 You may also set non-standard header values here.
23011 For example, you could add
23013 <CENTER><SAMP>Organization: My Organization Name</SAMP></CENTER>
23015 or even
23017 <CENTER><SAMP>X-Favorite-Colors: Purple and Gold</SAMP></CENTER>
23019 If you include a value after the colon then that header will be included
23020 in your outgoing messages unless you delete it before sending.
23021 If a header in the <!--#echo var="VAR_customized-hdrs"--> list has only a tag but no value, then
23022 it will not be included in outgoing messages unless you edit a value
23023 in manually.
23024 For example, if
23026 <CENTER><SAMP>Reply-To:</SAMP></CENTER>
23028 is in the list, then the Reply-To header will be available for editing
23029 but won't be included unless a value is added while in the composer.
23031 It's actually a little more complicated than that.
23032 The values of headers that you set with the <!--#echo var="VAR_customized-hdrs"--> option are
23033 defaults.
23034 If the message you are about to compose already has a value for a header,
23035 that value is used instead of a value from your <!--#echo var="VAR_customized-hdrs"-->.
23036 For example, if you are Replying to a message the Subject field
23037 will already be filled in.
23038 In that case, if the <!--#echo var="VAR_customized-hdrs"--> list contains a Subject line, the
23039 custom subject will <EM>NOT</EM> be used.
23040 The subject derived from the subject of the message you are Replying
23041 to will be used instead.
23043 It is also possible to make header setting even more complicated and more
23044 automatic by using
23045 <A HREF="h_rules_roles">Roles</A>,
23046 but if all you want to do is set a default value for a header, you don't
23047 need to think about Roles.
23049 If you change your From address you may also find it useful to add the
23050 changed From address to the
23051 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
23052 configuration option.
23054 Limitation: Because commas are used to separate the list of
23055 <!--#echo var="VAR_customized-hdrs"-->, it is not possible to have the value of a
23056 header contain a comma.
23057 Nor is there currently an &quot;escape&quot; mechanism provided
23058 to make this work.
23059 <P><UL>
23060 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23061 </UL>
23063 &lt;End of help on this topic&gt;
23064 </BODY>
23065 </HTML>
23066 ====== h_config_viewer_headers =====
23067 <HTML>
23068 <HEAD>
23069 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdrs"--></TITLE>
23070 </HEAD>
23071 <BODY>
23072 <H1>OPTION: <!--#echo var="VAR_viewer-hdrs"--></H1>
23074 You may change the default list of headers that are viewed by listing
23075 the headers you want to view here.  If the headers in your
23076 &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list are present in the message, then they
23077 will be shown.  The order of the headers you list will be honored.  If
23078 the special value &quot;all-except&quot; is included as the first
23079 header in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list, then all headers in the
23080 message except those in the list will be shown.  The values are all
23081 case insensitive.
23084 Note that once you put anything in the &quot;<!--#echo var="VAR_viewer-hdrs"-->&quot; list,
23085 then the original default headers are ignored.  So, if you just wanted
23086 to add the header Organization to the list, you would have to list
23087 Organization plus all of the other headers originally in the default
23088 list.  If you just included Organization and nothing else, then you
23089 would see only the Organization header, nothing else.
23092 The default list of headers includes:
23093 <UL>
23094   <LI>From
23095   <LI>Resent-From
23096   <LI>To
23097   <LI>Resent-To
23098   <LI>Cc
23099   <LI>Resent-cc
23100   <LI>Bcc
23101   <LI>Newsgroups
23102   <LI>Followup-To
23103   <LI>Date
23104   <LI>Resent-Date
23105   <LI>Subject
23106   <LI>Resent-Subject
23107   <LI>Reply-To
23108 </UL>
23111 If you are looking for a way to control which headers are included in
23112 outgoing mail and are visible or not in the composer, take a look at the
23113 options
23114 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>
23115 and <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A> instead of
23116 this option.
23118 <UL>   
23119 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23120 </UL><P>
23121 &lt;End of help on this topic&gt;
23122 </BODY>
23123 </HTML>
23124 ====== h_config_viewer_margin_left =====
23125 <HTML>
23126 <HEAD>
23127 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-left"--></TITLE>
23128 </HEAD>
23129 <BODY>
23130 <H1>OPTION: <!--#echo var="VAR_viewer-margin-left"--></H1>
23132 This variable controls the left-hand vertical margin's width in
23133 Alpine's Message Viewing screen.
23134 Its value is the number of space characters preceding each displayed line.
23135 For consistency with
23136 <A HREF="h_config_viewer_margin_right"><!--#echo var="VAR_viewer-margin-right"--></A>,
23137 you may specify the column number to start in
23138 (column numbering begins with number 1)
23139 instead of the width of the margin by appending a lower case letter
23140 &quot;c&quot; to the number.
23141 For example, a value of &quot;2c&quot; means to start the text in column two,
23142 which is entirely equivalent to a value of &quot;1&quot;, which means to
23143 leave a margin of 1 space.
23145 The default is a left margin of 0 (zero).
23146 Misconfigurations (for example, negative values or values with starting
23147 left columns greater than the ending right column)
23148 are silently ignored.
23149 If the number of columns for text between the <!--#echo var="VAR_viewer-margin-left"--> and
23150 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
23151 instead.
23154 &lt;End of help on this topic&gt;
23155 </BODY>
23156 </HTML>
23157 ====== h_config_viewer_margin_right =====
23158 <HTML>
23159 <HEAD>
23160 <TITLE>OPTION: <!--#echo var="VAR_viewer-margin-right"--></TITLE>
23161 </HEAD>
23162 <BODY>
23163 <H1>OPTION: <!--#echo var="VAR_viewer-margin-right"--></H1>
23165 This variable controls the right-hand vertical margin's width in
23166 Alpine's Message Viewing screen.
23167 Its value is the number of space characters following each displayed line.
23168 You may specify the column number to end the text in
23169 (column numbering begins with number 1)
23170 instead of the width of the margin by appending a lower case letter
23171 &quot;c&quot; to the number.
23172 For example, a value of &quot;76c&quot; means to end the text in column 76.
23173 If the screen is 80 characters wide, this is equivalent to a value
23174 of &quot;4&quot;, which means to leave a margin of 4 spaces.
23175 However, if you use different size screens at different times, then these
23176 two values are not equivalent.
23178 The default right margin is 4.
23179 Misconfigurations (for example, negative values or values with starting
23180 left columns greater than the ending right column)
23181 are silently ignored.
23182 If the number of columns for text between the
23183 <A HREF="h_config_viewer_margin_left"><!--#echo var="VAR_viewer-margin-left"--></A> and
23184 the <!--#echo var="VAR_viewer-margin-right"--> is fewer than 8, then margins of zero will be used
23185 instead.
23188 &lt;End of help on this topic&gt;
23189 </BODY>
23190 </HTML>
23191 ====== h_config_quote_suppression =====
23192 <HTML>
23193 <HEAD>
23194 <TITLE>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></TITLE>
23195 </HEAD>
23196 <BODY>
23197 <H1>OPTION: <!--#echo var="VAR_quote-suppression-threshold"--></H1>
23199 This option should be used with care.
23200 It will cause some of the quoted text to be eliminated from the
23201 display when viewing a message in the MESSAGE TEXT screen.
23202 For example, if you set the <!--#echo var="VAR_quote-suppression-threshold"--> to the
23203 value &quot;5&quot;,
23204 this will cause quoted text that is longer than five lines to be truncated.
23205 Quoted text of five or fewer consecutive lines will be displayed in its entirety.
23206 Quoted text of more than six lines will have the first five lines displayed
23207 followed by a line that looks something like
23209 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
23211 As a special case, if exactly one line of quoted text would be hidden, the
23212 entire quote will be shown instead.
23213 So for the above example, quoted text that is exactly six lines long will
23214 will be shown in its entirety.
23215 (In other words, instead of hiding a single line and adding a line
23216 that announces that one line was hidden, the line is just shown.)
23218 If the sender of a message has carefully chosen the quotes that he or she
23219 includes, hiding those quotes may change the meaning of the message.
23220 For that reason, Alpine requires that when you want to set the value of this
23221 variable to something less than four lines, you actually have to set it
23222 to the negative of that number.
23223 So if you want to set this option to &quot;3&quot;, you actually have to
23224 set it to &quot;-3&quot;.
23225 The only purpose of this is to get you to think about whether or not you
23226 really want to do this!
23227 If you want to delete all quoted text you set the value of this option
23228 to the special value &quot;-10&quot;.
23230 The legal values for this option are
23232 <TABLE>   
23233 <TR>
23234   <TD> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;0&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
23235   <TD> Default, don't hide anything </TD>
23236 </TR>
23237 <TR>
23238   <TD> &nbsp;-1,-2,-3&nbsp;&nbsp; </TD>
23239   <TD> Suppress quote lines past 1, 2, or 3 lines </TD>
23240 </TR>
23241 <TR>
23242   <TD> &nbsp;4,5,6,...&nbsp; </TD>
23243   <TD> Suppress if more than that many lines </TD>
23244 </TR>
23245 <TR>
23246   <TD> &nbsp;&nbsp;&nbsp;-10&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD>
23247   <TD> Suppress all quoted lines </TD>
23248 </TR>
23249 </TABLE>
23251 If you set this option to a non-default value you may sometimes wish to
23252 view the quoted text that is not shown.
23253 When this is the case, the
23254 <A HREF="h_common_hdrmode">HdrMode Command</A>
23255 may be used to show the hidden text.
23256 Typing the &quot;H&quot; command once will show the hidden text.
23257 Typing a second &quot;H&quot; will also turn on Full Header mode.
23258 The presence or absence of the HdrMode command is determined by the
23259 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
23260 Feature-List option in your Alpine configuration, so you will want to
23261 be sure that is turned on if you use quote suppression.
23263 For the purposes of this option, a quote is a line that begins with the
23264 character &quot;&gt;&quot;.
23266 Quotes are only suppressed when displaying a message on the screen.
23267 The entire quote will be left intact when printing or forwarding or something
23268 similar.
23270 &lt;End of help on this topic&gt;
23271 </BODY>
23272 </HTML>
23273 ====== h_config_saved_msg_name_rule =====
23274 <HTML>
23275 <HEAD>
23276 <TITLE>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></TITLE>
23277 </HEAD>
23278 <BODY>
23279 <H1>OPTION: <!--#echo var="VAR_saved-msg-name-rule"--></H1>
23281 This option determines the default folder name when saving
23282 a message.
23285 The default option is &quot;default-folder&quot;, which is the folder
23286 called &quot;saved-messages&quot; in Unix Alpine and
23287 &quot;savemail&quot; in PC-Alpine.  To change the default folder, modify
23288 the Alpine option called
23289 <A HREF="h_config_def_save_folder">&quot;<!--#echo var="VAR_default-saved-msg-folder"-->&quot;</A>.
23292 Choosing any of the &quot;by-&quot; options cause Alpine to attempt to
23293 get the chosen option's value for the message being saved (or for the
23294 first message being saved if using an aggregrate save).
23295 For example, if &quot;by-from&quot; is chosen, Alpine attempts to get the
23296 value of who the message came from (i.e. the from address).
23297 Alpine then attempts to save the message to a folder matching that value.
23298 If &quot;by-from&quot; is chosen and no value is obtained, Alpine uses
23299 &quot;by-sender&quot;.
23300 The opposite is also true.
23301 If &quot;by-recipient&quot; is chosen and the message was posted to a
23302 newsgroup, Alpine will use the newsgroup name.
23303 If &quot;by-replyto&quot; is chosen and no value is obtained, Alpine uses
23304 &quot;by-from&quot;.
23307 If any of the &quot;by-realname&quot; options are chosen, Alpine will attempt
23308 to use the personal name part of the address instead of the mailbox part.
23309 If any of the &quot;by-nick&quot; options are chosen, the
23310 address is looked up in your address book and if found, the
23311 nickname for that entry is used.
23312 Only simple address book entries are checked, not distribution lists.
23313 Similarly, if any of the
23314 &quot;by-fcc&quot; options are chosen, the fcc from the corresponding
23315 address book entry is used.
23316 If by-realname, or the by-nick or by-fcc lookups result in no value,
23317 then if the chosen option ends with the &quot;then-from&quot;,
23318 &quot;then-sender&quot;, &quot;then-replyto&quot;,
23319 or &quot;then-recip&quot; suffix, Alpine
23320 reverts to the same behavior as &quot;by-from&quot;,
23321 &quot;by-sender&quot;, &quot;by-replyto&quot;, or &quot;by-recip&quot;
23322 depending on which option was specified.
23323 If the chosen option doesn't end with one of
23324 the &quot;then-&quot; suffixes, then Alpine reverts to the default
23325 folder when no match is found in the address book.
23328 Choosing the option called &quot;last-folder-used&quot;, causes Alpine
23329 to save to the folder that you saved to the last time you saved a
23330 message.  The first time you save a message in an Alpine session, Alpine
23331 attempts to save the message to the default folder.
23334 Here is an example to make some of the options clearer.
23335 If the message is From
23337 <CENTER><SAMP>Fred Flintstone &lt;flint@bedrock.org&gt;</SAMP></CENTER>
23339 and this rule is set to &quot;by-from&quot;, then the default folder offered
23340 in the save dialog would be &quot;flint&quot;.
23342 If this rule is set to &quot;by-realname-of-from&quot; then the default would
23343 be &quot;Fred Flintstone&quot;.
23345 If this rule is set to &quot;by-nick-of-from&quot; then Alpine will search
23346 for the address &quot;flint@bedrock.org&quot; in your address book.
23347 If an entry is found and it has a nickname associated with it, that nickname
23348 will be offered as the default folder.
23349 If not, the default saved message folder will be offered as the default.
23351 If this rule is set to &quot;by-fcc-of-from&quot; then Alpine will search
23352 for the address &quot;flint@bedrock.org&quot; in your address book.
23353 If an entry is found and it has an Fcc associated with it, that Fcc
23354 will be offered as the default folder.
23355 If not, the default saved message folder will be offered as the default.
23357 If this rule is set to &quot;by-nick-of-from-then-from&quot; then Alpine will search
23358 for the address &quot;flint@bedrock.org&quot; in your address book.
23359 If an entry is found and it has a nickname associated with it, that nickname
23360 will be offered as the default folder.
23361 If it is not found (or has no nickname) then the default offered will be
23362 the same as it would be for the &quot;by-from&quot; rule.
23363 That is, it would be &quot;flint&quot;
23365 <UL>   
23366 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23367 </UL><P>
23368 &lt;End of help on this topic&gt;
23369 </BODY>
23370 </HTML>
23371 ====== h_config_fcc_rule =====
23372 <HTML>
23373 <HEAD>
23374 <TITLE>OPTION: <!--#echo var="VAR_fcc-name-rule"--></TITLE>
23375 </HEAD>
23376 <BODY>
23377 <H1>OPTION: <!--#echo var="VAR_fcc-name-rule"--></H1>
23379 This option determines the default name for folder carbon copy. Choose
23380 one:
23382 <DL>
23383 <DT>default-fcc</DT>
23384 <DD>This is the normal default, the value of which is set in the
23385 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable as specified earlier in this
23386 configuration.
23387 </DD>
23389 <DT>last-fcc-used</DT>
23390 <DD> Causes Alpine to use the folder that was last
23391 used in the fcc field
23392 </DD>
23394 <DT>by-nickname</DT>
23395 <DD>Means that Alpine will use the nickname
23396 from your address book that matches the first address in the To line.
23397 If there is no match, it will use the value of the
23398 &quot;<!--#echo var="VAR_default-fcc"-->&quot; variable.
23399 </DD>
23401 <DT>by-recipient</DT>
23402 <DD>Means Alpine will form a folder name
23403 based on the left hand side of the first address in the To line.
23404 </DD>
23406 <DT>by-nick-then-recip</DT>
23407 <DD>Means that it will use the
23408 matching nickname from your address book if there is one, otherwise it
23409 will extract the recipient name from the address and use that (like
23410 by-recipient).
23411 </DD>
23413 <DT>current-folder</DT>
23414 <DD>Causes a copy to be written to
23415 the currently open folder, unless that is the INBOX.  In the case
23416 where the current folder is the INBOX, the &quot;<!--#echo var="VAR_default-fcc"-->&quot; is
23417 used instead.
23418 </DD>
23419 </DL>
23422 Note: Whatever the fcc specified by the rule here, it will be
23423 over-ridden by any fcc entries you have in your address book.
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_sort_key =====
23433 <HTML>
23434 <HEAD>
23435 <TITLE>OPTION: <!--#echo var="VAR_sort-key"--></TITLE>
23436 </HEAD>
23437 <BODY>
23438 <H1>OPTION: <!--#echo var="VAR_sort-key"--></H1>
23440 This option determines the order in which messages will be displayed in
23441 the MESSAGE INDEX screen.  Choose from:
23443 <UL>
23444  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23445  <LI> <A HREF="h_index_sort_date">Date</A>
23446  <LI> <A HREF="h_index_sort_subj">Subject</A>
23447  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23448  <LI> <A HREF="h_index_sort_thread">Thread</A>
23449  <LI> <A HREF="h_index_sort_from">From</A>
23450  <LI> <A HREF="h_index_sort_size">Size</A>
23451  <LI> <A HREF="h_index_sort_score">Score</A>
23452  <LI> <A HREF="h_index_sort_to">To</A>
23453  <LI> <A HREF="h_index_sort_cc">Cc</A>
23454 </UL>
23457 Each type of sort may also be reversed.
23458 Normal default is by &quot;Arrival&quot;.
23461 A possible point of confusion arises when you change the configuration
23462 of the <!--#echo var="VAR_sort-key"-->.
23463 The folder will normally be re-sorted when you go back to viewing the
23464 index.
23465 However, if you have manually sorted the folder with the
23466 Sort
23467 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23468 command, then it will not be re-sorted until the next time it is opened.
23471 <UL>   
23472 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23473 </UL><P>
23474 &lt;End of help on this topic&gt;
23475 </BODY>
23476 </HTML>
23477 ====== h_config_other_startup =====
23478 <HTML>
23479 <HEAD>
23480 <TITLE>OPTION: Set Startup Rule</TITLE>
23481 </HEAD>
23482 <BODY>
23483 <H1>OPTION: Set Startup Rule</H1>
23485 This option determines which message will be the <EM>current message</EM> when
23486 the folder is first opened.
23487 It works the same way that the option
23488 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>
23489 works, so look there for help.
23490 It may be used for any folder, not just incoming folders.
23493 <UL>   
23494 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23495 </UL><P>
23496 &lt;End of help on this topic&gt;
23497 </BODY>
23498 </HTML>
23499 ====== h_config_perfolder_sort =====
23500 <HTML>
23501 <HEAD>
23502 <TITLE>Set Sort Order</TITLE>
23503 </HEAD>
23504 <BODY>
23505 <H1>Set Sort Order</H1>
23507 This option determines the order in which messages will be displayed in
23508 the MESSAGE INDEX screen when the Current Folder Type set in the
23509 Pattern is a match. Choose from:
23511 <UL>
23512  <LI> <A HREF="h_index_sort_default">Default</A>
23513  <LI> <A HREF="h_index_sort_arrival">Arrival</A>
23514  <LI> <A HREF="h_index_sort_date">Date</A>
23515  <LI> <A HREF="h_index_sort_subj">Subject</A>
23516  <LI> <A HREF="h_index_sort_ordsubj">OrderedSubj</A>
23517  <LI> <A HREF="h_index_sort_thread">Thread</A>
23518  <LI> <A HREF="h_index_sort_from">From</A>
23519  <LI> <A HREF="h_index_sort_size">Size</A>
23520  <LI> <A HREF="h_index_sort_score">Score</A>
23521  <LI> <A HREF="h_index_sort_to">To</A>
23522  <LI> <A HREF="h_index_sort_cc">Cc</A>
23523 </UL>
23526 Each type of sort may also be reversed.
23527 Normal default is by &quot;Arrival&quot;.
23530 A possible point of confusion arises when you change the configuration
23531 of the Sort Order for the currently open folder.
23532 The folder will normally be re-sorted when you go back to viewing the
23533 index.
23534 However, if you have manually sorted the folder with the
23535 Sort
23536 (<!--chtml if pinemode="function_key"-->F7<!--chtml else-->$<!--chtml endif-->)
23537 command, then it will not be re-sorted until the next time it is opened.
23540 <UL>   
23541 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23542 </UL><P>
23543 &lt;End of help on this topic&gt;
23544 </BODY>
23545 </HTML>
23546 ====== h_config_fld_sort_rule =====
23547 <HTML>
23548 <HEAD>
23549 <TITLE>OPTION: <!--#echo var="VAR_folder-sort-rule"--></TITLE>
23550 </HEAD>
23551 <BODY>
23552 <H1>OPTION: <!--#echo var="VAR_folder-sort-rule"--></H1>
23554 This option controls the order in which folder list entries will be
23555 presented in the FOLDER LIST screen.  Choose one of the following:
23557 <DL>
23558 <DT>Alphabetical</DT>
23559 <DD>sort by alphabetical name independent of type
23560 </DD>
23562 <DT>Alpha-with-dirs-last</DT>
23563 <DD>sort by alphabetical name grouping directory entries
23564 to the end of the list
23565 </DD>
23567 <DT>Alpha-with-dirs-first</DT>
23568 <DD>sort by alphabetical name grouping directory entries
23569 to the start of the list
23570 </DD>
23571 </DL>
23573 The normal default is &quot;Alphabetical&quot;.
23576 <UL>   
23577 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23578 </UL><P>
23579 &lt;End of help on this topic&gt;
23580 </BODY>
23581 </HTML>
23582 ====== h_config_ab_sort_rule =====
23583 <HTML>
23584 <HEAD>
23585 <TITLE>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></TITLE>
23586 </HEAD>
23587 <BODY>
23588 <H1>OPTION: <!--#echo var="VAR_addrbook-sort-rule"--></a></H1>
23590 This option controls the order in which address book entries will be
23591 presented.  Choose one of the following:
23593 <DL>
23594 <DT>fullname</DT>
23595 <DD>use fullname field, lists mixed in
23596 </DD>
23598 <DT>fullname-with-lists-last</DT>
23599 <DD>use fullname field, but put lists at end
23600 </DD>
23602 <DT>nickname</DT>
23603 <DD>use nickname field, lists mixed in
23604 </DD>
23606 <DT>nickname-with-lists-last</DT>
23607 <DD>use nickname field, but put lists at end
23608 </DD>
23610 <DT>dont-sort</DT>
23611 <DD>don't change order of file
23612 </DD>
23613 </DL>
23616 The normal default is &quot;fullname-with-lists-last&quot;.
23617 If you use an address book from more than one computer and those
23618 computers sort the address book differently then the sort order
23619 will be the order where the last change to the address book was
23620 made.
23621 There are two reasons the sorting might be different on different
23622 systems.
23623 First, the <!--#echo var="VAR_addrbook-sort-rule"--></a> may be set differently in the two
23624 places.
23625 Second, the collation rules on the two computers may be different.
23626 For example, one system might ignore special characters while the other
23627 doesn't or one may sort upper and lower case letters together while
23628 the other doesn't.
23629 In any case, the order you see is the order on the system where the
23630 last change was made, for example by an address book edit or a
23631 Take Address command.
23634 <UL>   
23635 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23636 </UL><P>
23637 &lt;End of help on this topic&gt;
23638 </BODY>
23639 </HTML>
23640 ====== h_config_post_char_set =====
23641 <HTML>
23642 <HEAD>
23643 <TITLE>OPTION: <!--#echo var="VAR_posting-character-set"--></TITLE>
23644 </HEAD>
23645 <BODY>
23646 <H1>OPTION: <!--#echo var="VAR_posting-character-set"--></H1>
23648 The <!--#echo var="VAR_posting-character-set"--> configuration option is used
23649 when sending messages.
23653 When sending a message the text typed in the composer is
23654 labeled with the character set specified by this option.
23655 If the composed text is not fully representable in the 
23656 specified <!--#echo var="VAR_posting-character-set"-->, then it is labeled as &quot;UTF-8.&quot
23657 instead;
23660 Attachments are labeled with your
23661 <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>.
23664 Generally, there should be little need to set this option.
23665 If left unset, the
23666 default behavior is to label composed text as specifically as
23667 possible.  That is, if the composed text has no non-ASCII characters,
23668 it is labeled as &quot;US-ASCII.&quot; Similarly, if it is composed of
23669 only ISO-8859-15 characters, it is labeled as such.  Alpine will
23670 attempt to automatically detect a number of character sets including ISO-8859-15,
23671 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23672 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, and EUC-KR.
23673 If the message contains a mix of character sets,
23674 it is labeled as &quot;UTF-8.&quot;
23678 This setting is provided to allow you to force a particular character set that
23679 Alpine does not automatically detect. For example, if a message is representable
23680 in more than one character set then Alpine may choose a different default
23681 than you want.
23682 Lastly, by setting this option explicitly to
23683 &quot;UTF-8&quot; all non-ASCII messages you send will be labeled as
23684 &quot;UTF-8&quot; instead of something more specific.
23687 In the Setup/Config screen you may choose from a list of all the
23688 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23691 The options
23692 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23693 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23694 are closely related.
23695 Setting the feature
23696 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23697 should cause this option to be ignored.
23700 <UL>   
23701 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23702 </UL><P>
23703 &lt;End of help on this topic&gt;
23704 </BODY>
23705 </HTML>
23706 ====== h_config_unk_char_set =====
23707 <HTML>
23708 <HEAD>
23709 <TITLE>OPTION: <!--#echo var="VAR_unknown-character-set"--></TITLE>
23710 </HEAD>
23711 <BODY>
23712 <H1>OPTION: <!--#echo var="VAR_unknown-character-set"--></H1>
23714 The <!--#echo var="VAR_unknown-character-set"--> configuration option is used
23715 when reading or replying to messages.
23719 A text message should either be made up of all US-ASCII characters
23720 or it should contain a charset label which tells the software which
23721 character set encoding to use to interpret the message.
23722 Sometimes a malformed message may be unlabeled but contain non-ascii text.
23723 This message is outside of the standards so any attempt to read it could fail.
23724 When Alpine attempts to read such a message it will try to interpret the
23725 text in the character set you specify here.
23726 For example, if you have correspondents who send you unlabeled messages that
23727 are usually made up of characters from the WINDOWS-1251 character set, setting
23728 this <!--#echo var="VAR_unknown-character-set"--> to <CODE>WINDOWS-1251</CODE> will
23729 allow you to read those messages.
23730 Of course, if the unlabeled message is actually in some other character set,
23731 then you may see garbage on your screen.
23733 Instead of just unlabeled text, this option also affects text which is labeled
23734 with the charsets &quot;X-Unknown&quot;, &quot;MISSING_PARAMETER_VALUE&quot;
23735 or &quot;US-ASCII&quot;.
23738 In the Setup/Config screen you may choose from a list of all the
23739 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23742 <UL>   
23743 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23744 </UL><P>
23745 &lt;End of help on this topic&gt;
23746 </BODY>
23747 </HTML>
23748 ====== h_config_char_set =====
23749 <HTML>
23750 <HEAD>
23751 <TITLE>OPTION: Display Character Set</TITLE>
23752 </HEAD>
23753 <BODY>
23754 <H1>OPTION: Display Character Set</H1>
23756 The Display Character Set configuration option is used when viewing messages.
23758 Alpine uses Unicode characters internally and 
23759 it is a goal for Alpine to handle email in many different languages.
23760 Alpine will properly display only left-to-right character sets
23761 in a fixed-width font. Specifically, Alpine assumes that a fixed-width
23762 font is in use, in the sense that
23763 characters are assumed to take up zero, one, or two character cell
23764 widths from left to right on the screen. This is true even in PC-Alpine.
23767 Alpine recognizes some local character sets that are right-to-left
23768 (Arabic, Hebrew, and Thai) or not representable in a fixed-width font
23769 (Arabic) and properly converts texts in these character sets to/from
23770 Unicode; however, there are known display bugs with these character
23771 sets.
23774 There are three possible configuration character settings and some
23775 environment variable settings that can affect how Alpine
23776 handles international characters.
23777 The first two of these are only available in UNIX Alpine.
23778 The three configuration options are
23779 Display Character Set,
23780 Keyboard Character Set, and
23781 <!--#echo var="VAR_posting-character-set"-->.
23782 The Keyboard Character Set defaults to being the same value
23783 as the Display Character Set, and that is usually correct, because
23784 the keyboard almost always produces characters in the same character set
23785 as the display displays.
23786 The Display Character Set is the character set that Alpine
23787 will attempt to use when sending characters to the display.
23790 By default, the Display Character Set variable is not set and UNIX Alpine
23791 will attempt to get this information from the environment.
23792 In particular, the <CODE>nl_langinfo(CODESET)</CODE> call is used.
23793 This usually depends on the setting of the environment variables LANG or LC_CTYPE.
23794 An explicit configuration setting for Display Character Set will,
23795 of course, override any default setting.
23797 For PC-Alpine the Display Character Set
23798 and the Keyboard Character Set
23799 are always equivalent to <CODE>UTF-8</CODE> and this is not settable.
23802 It is probably best to use UNIX Alpine in a terminal emulator
23803 capable of displaying UTF-8 characters, since that will allow you to
23804 view just about any received text that is correctly formatted (note,
23805 however, the above comments about known index display bugs with certain
23806 character sets). You'll need to have an emulator that uses a UTF-8 font
23807 and you'll need to set up your environment to use a UTF-8 charmap. For
23808 example, on a Linux system you might include
23810 <CENTER> <CODE>setenv LANG en_US.UTF-8</CODE> </CENTER>
23813 or something similar in your UNIX startup files.
23814 You'd also have to select a UTF-8 font in your terminal emulator.
23817 The types of values that the character set variables may be set to are
23818 <CODE>UTF-8</CODE>, <CODE>ISO-8859-1</CODE>, or <CODE>EUC-JP</CODE>.
23819 The <CODE>ISO-2022</CODE> character sets are not supported for input or
23820 for display, but as a special case, <CODE>ISO-2022-JP</CODE> is supported
23821 for use only as a <!--#echo var="VAR_posting-character-set"-->.
23822 In the Setup/Config screen you may choose from a list of all the
23823 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23824 Here is a list of many of the possible character sets:
23827 <TABLE>
23828 <TR> <TD>UTF-8</TD> <TD>Unicode</TD> </TR>
23829 <TR> <TD>US-ASCII</TD> <TD>7 bit American English characters</TD> </TR>
23830 <TR> <TD>ISO-8859-1</TD> <TD>8 bit European "Latin 1" character set</TD> </TR>
23831 <TR> <TD>ISO-8859-2</TD> <TD>8 bit European "Latin 2" character set</TD> </TR>
23832 <TR> <TD>ISO-8859-3</TD> <TD>8 bit European "Latin 3" character set</TD> </TR>
23833 <TR> <TD>ISO-8859-4</TD> <TD>8 bit European "Latin 4" character set</TD> </TR>
23834 <TR> <TD>ISO-8859-5</TD> <TD>8 bit Latin and Cyrillic</TD> </TR>
23835 <TR> <TD>ISO-8859-6</TD> <TD>8 bit Latin and Arabic</TD> </TR>
23836 <TR> <TD>ISO-8859-7</TD> <TD>8 bit Latin and Greek</TD> </TR>
23837 <TR> <TD>ISO-8859-8</TD> <TD>8 bit Latin and Hebrew</TD> </TR>
23838 <TR> <TD>ISO-8859-9</TD> <TD>8 bit European "Latin 5" character set</TD> </TR>
23839 <TR> <TD>ISO-8859-10</TD> <TD>8 bit European "Latin 6" character set</TD> </TR>
23840 <TR> <TD>ISO-8859-11</TD> <TD>Latin and Thai</TD> </TR>
23841 <TR> <TD>ISO-8859-12</TD> <TD>Reserved</TD> </TR>
23842 <TR> <TD>ISO-8859-13</TD> <TD>8 bit European "Latin 7" character set</TD> </TR>
23843 <TR> <TD>ISO-8859-14</TD> <TD>8 bit European "Latin 8" character set</TD> </TR>
23844 <TR> <TD>ISO-8859-15</TD> <TD>8 bit European "Latin 9" character set</TD> </TR>
23845 <TR> <TD>ISO-8859-16</TD> <TD>8 bit European "Latin 10" character set</TD> </TR>
23846 <TR> <TD>KOI8-R</TD> <TD>8 bit Latin and Russian</TD> </TR>
23847 <TR> <TD>KOI8-U</TD> <TD>8 bit Latin and Ukranian</TD> </TR>
23848 <TR> <TD>WINDOWS-1251</TD> <TD>8 bit Latin and Russian</TD> </TR>
23849 <TR> <TD>TIS-620</TD> <TD>8 bit Latin and Thai</TD> </TR>
23850 <TR> <TD>VISCII</TD> <TD>8 bit Latin and Vietnamese</TD> </TR>
23851 <TR> <TD>GBK</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23852 <TR> <TD>GB2312</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23853 <TR> <TD>CN-GB</TD> <TD>Latin and Chinese Simplified</TD> </TR>
23854 <TR> <TD>BIG5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23855 <TR> <TD>BIG-5</TD> <TD>Latin and Chinese Traditional</TD> </TR>
23856 <TR> <TD>EUC-JP</TD> <TD>Latin and Japanese</TD> </TR>
23857 <TR> <TD>SHIFT-JIS</TD> <TD>Latin and Japanese</TD> </TR>
23858 <TR> <TD>EUC-KR</TD> <TD>Latin and Korean</TD> </TR>
23859 <TR> <TD>KSC5601</TD> <TD>Latin and Korean</TD> </TR>
23860 </TABLE>
23863 When reading incoming email, Alpine understands many different
23864 character sets and is able to convert the incoming mail into Unicode.
23865 The Unicode will be converted to the Display Character Set
23866 for display on your terminal.
23867 Characters typed at the keyboard will be converted from the
23868 Keyboard Character Set to Unicode for Alpine's internal
23869 use.
23870 You may find that you can read some malformed messages that do not
23871 contain a character set label by setting the option
23872 <A HREF="h_config_unk_char_set">&quot;<!--#echo var="VAR_unknown-character-set"-->&quot;</A>.
23875 The <!--#echo var="VAR_posting-character-set"--> is used when sending messages.
23876 The default behavior obtained by leaving this variable unset is usually
23877 what is wanted. In that default case, Alpine will attempt
23878 to label the message with the most specific character set from the
23879 rather arbitrary set
23881 US-ASCII, ISO-8859-15,
23882 ISO-8859-1, ISO-8859-2, VISCII, KOI8-R, KOI8-U, ISO-8859-7, ISO-8859-6,
23883 ISO-8859-8, TIS-620, ISO-2022-JP, GB2312, BIG5, EUC-KR, and UTF-8.
23886 For example, if the message is made up of only US-ASCII characters, it
23887 will be labeled US-ASCII. Otherwise, if it is all ISO-8859-15 characters,
23888 that will be the label. If that doesn't work the same is tried for the
23889 remaining members of the list.
23892 It might make sense to set <!--#echo var="VAR_posting-character-set"--> to an
23893 explicit value instead.
23894 For example, if you usually send messages in Greek, setting this
23895 option to ISO-8859-7 will result in messages being labeled as
23896 US-ASCII if there are no non-ascii characters, ISO-8859-7 if there
23897 are only Greek characters, or UTF-8 if there are some characters
23898 that aren't representable in ISO-8859-7.
23899 Another possibility is to set this option explicitly to UTF-8.
23900 In that case
23901 Alpine labels only ascii messages as US-ASCII and all other
23902 messages as UTF-8.
23905 The options
23906 <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23907 and <A HREF="h_config_key_char_set">&quot;Keyboard Character Set&quot;</A>
23908 are closely related to this option.
23909 Setting the feature
23910 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23911 should cause this option to be ignored.
23914 When displaying a message, Alpine compares this setting to the character
23915 set specified in the message.  If not all of the
23916 characters in the message can be displayed using the Display Character Set
23917 then Alpine places an editorial
23918 comment in the displayed text (enclosed in square-brackets) indicating
23919 that some characters may not be displayed correctly.
23920 This comment may be eliminated by turning on the option
23921 <A HREF="h_config_quell_charset_warning"><!--#echo var="FEAT_quell-charset-warning"--></A>.
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_key_char_set =====
23931 <HTML>
23932 <HEAD>
23933 <TITLE>OPTION: Keyboard Character Set</TITLE>
23934 </HEAD>
23935 <BODY>
23936 <H1>OPTION: Keyboard Character Set</H1>
23938 UNIX Alpine only.
23940 The Keyboard Character Set identifies the character set of the characters
23941 coming from your keyboard.
23942 It defaults to having the same value as your
23943 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>,
23944 which in turn defaults to a value obtained from your environment.
23945 It is unlikely that you will need to use this option, because the keyboard
23946 almost always produces the same kind of characters as the display displays.
23949 This character set is also used when accessing files in your local
23950 file system.
23951 The names of the files are assumed to be in the same character set as
23952 what the keyboard produces, as well as the contents of the files.
23955 In the Setup/Config screen you may choose from a list of all the
23956 character sets Alpine knows about by using the &quot;T&quot; ToCharsets command.
23959 The options
23960 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
23961 and <A HREF="h_config_post_char_set">&quot;<!--#echo var="VAR_posting-character-set"-->&quot;</A>
23962 are closely related.
23963 Setting the feature
23964 <A HREF="h_config_use_system_translation">&quot;Use System Translation&quot;</A>
23965 should cause this option to be ignored.
23968 <UL>   
23969 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
23970 </UL><P>
23971 &lt;End of help on this topic&gt;
23972 </BODY>
23973 </HTML>
23974 ====== h_config_editor =====
23975 <HTML>
23976 <HEAD>
23977 <TITLE>OPTION: <!--#echo var="VAR_editor"--></TITLE>
23978 </HEAD>
23979 <BODY>
23980 <H1>OPTION: <!--#echo var="VAR_editor"--></H1>
23982 <!--#echo var="VAR_editor"--> specifies the program invoked by ^_ in the Composer. This is
23983 normally an alternative to Alpine's internal composer (Pico).  You could use
23984 this setting to specify an alternate editor to use occasionally or if you
23985 have a favorite editor and want to use it all the time (see the 
23986 <A HREF="h_config_alt_ed_now">&quot;<!--#echo var="FEAT_enable-alternate-editor-implicitly"-->&quot;</A> setting).  <P>
23987 If you specify multiple editors for this option, ^_ will invoke the first one 
23988 of those specified that exists and is executable.  When specifying a program 
23989 for use here, make sure that the format of the text it saves -- which, when 
23990 you exit it, will become the message body in Alpine -- is appropriate 
23991 for the body of an email message; avoid proprietary formats that may result in 
23992 a message body that the recipient of your message will be unable to decipher.
23994 <!--chtml if pinemode="os_windows"-->
23995 <!--chtml else-->
23996 If you are in doubt about what editors are available on your system, or which 
23997 of them may be appropriate for specification here, ask your local computing 
23998 support staff.  
23999 <!--chtml endif-->
24001 Note that if <a href="h_config_quell_flowed_text"><!--#echo var="FEAT_quell-flowed-text"--></a> is
24002 unset, outgoing text will be set as flowed.  In most cases this will be fine,
24003 but if the editor has a &quot;flowed text&quot; mode, it would be best to
24004 use that.
24006 <P><UL>
24007 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24008 </UL>
24010 &lt;End of help on this topic&gt;
24011 </BODY>
24012 </HTML>
24013 ====== h_config_speller =====
24014 <HTML>
24015 <HEAD>
24016 <TITLE>OPTION: <!--#echo var="VAR_speller"--></TITLE>
24017 </HEAD>
24018 <BODY>
24019 <H1>OPTION: <!--#echo var="VAR_speller"--></H1>
24021 UNIX Alpine only.
24023 For PC-Alpine, you must install the aspell library code that you
24024 may get from
24025 <A HREF="http://aspell.net/win32/">http://aspell.net/win32/</A>.
24027 This option affects the behavior of the ^T (spell check) command in the
24028 Composer.  It specifies the program invoked by ^T in the Composer.
24029 By default, Alpine uses
24031 <CENTER><SAMP>aspell --dont-backup --mode=email check</SAMP></CENTER>
24033 if it knows where to find &quot;aspell&quot;.
24034 If there is no &quot;aspell&quot; command available but the command &quot;ispell&quot; is available
24035 then the command used is
24037 <CENTER><SAMP>ispell -l</SAMP></CENTER>
24039 Otherwise, the ancient &quot;spell&quot; command is used.
24041 If you specify a value for this command (with full pathname) then that is what
24042 will be used instead of any of the defaults.
24043 When invoking this
24044 spell-checking program, Alpine appends a tempfile name (where the message is
24045 passed) to the command line. Alpine expects the speller to correct the
24046 spelling in that file. When you exit from that program Alpine will read the
24047 tempfile back into the composer.
24049 Don't set this speller option to the standard Unix spell command.
24050 That won't work because spell works in a different way.
24053 <UL>   
24054 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24055 </UL><P>
24056 &lt;End of help on this topic&gt;
24057 </BODY>
24058 </HTML>
24059 ====== h_config_aspell_dictionary =====
24060 <HTML>
24061 <HEAD>
24062 <TITLE>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></TITLE>
24063 </HEAD>
24064 <BODY>
24065 <H1>OPTION: <!--#echo var="VAR_aspell-dictionary-list"--></H1>
24067 PC Alpine only.
24069 This option specifies a list of dictionaries you will use with
24070 aspell. A sample entry is &quot;en_US&quot; for american english, or
24071 &quot;en_GB&quot; for brittish english.
24074 <UL>   
24075 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24076 </UL><P>
24077 &lt;End of help on this topic&gt;
24078 </BODY>
24079 </HTML>
24080 ====== h_config_display_filters =====
24081 <HTML>
24082 <HEAD>
24083 <TITLE>OPTION: <!--#echo var="VAR_display-filters"--></TITLE>
24084 </HEAD>
24085 <BODY>
24086 <H1>OPTION: <!--#echo var="VAR_display-filters"--></H1>
24088 This option defines a list of text-filtering commands (programs or
24089 scripts) that may be used to filter text portions of received messages
24090 prior to their use (e.g., presentation in the &quot;MESSAGE TEXT&quot;
24091 display screen, exporting to a text file).  
24092 For security reasons, the full path name of the
24093 filter command must be specified.
24096 The command is executed and the message is piped into its standard input. 
24097 The standard output of the command is read back by Alpine.  The
24098 &quot;_TMPFILE_&quot; token (see below) overrides this default behavior. 
24100 <P> 
24101 The filter's use is based on the configured &quot;trigger&quot; string.  The
24102 format of a filter definition is:
24104 <P>   
24105 <CENTER>&lt;trigger&gt; &lt;command&gt; &lt;arguments&gt;</CENTER>
24108 You can specify as many filters as you wish, separating them with a comma.  
24109 Each filter can have only one trigger and command.  Thus, two trigger 
24110 strings that invoke the same command require separate filter 
24111 specifications. 
24113 <P> 
24114 The &quot;trigger&quot; is simply text that, if found in the message,
24115 will invoke the associated command.  If the trigger contains any space
24116 characters, it must be placed within quotes.  Likewise, should you
24117 wish a filter to be invoked unconditionally, define the trigger as the
24118 null string, &quot;&quot; (two consecutive double-quote characters).  If the
24119 trigger string is found anywhere in the text of the message the filter
24120 is invoked.  Placing the trigger text within the tokens defined below
24121 changes where within the text the trigger must be before considering
24122 it a match.
24124 <P>  
24125 Trigger Modifying Tokens:
24126 <DL>
24127 <DT>_CHARSET(<VAR>string</VAR>)_</DT>
24128 <DD>This token tells Alpine to invoke the supplied command
24129 if the text is in a character set matching <VAR>string</VAR>
24130 (e.g., ISO-8859-2 or ISO-2022-JP).
24131 </DD>
24134 <DT>_LEADING(<VAR>string</VAR>)_</DT>
24135 <DD>This token tells Alpine to invoke the supplied command
24136 if the enclosed <VAR>string</VAR> is found to be the first
24137 non-whitespace text.
24138 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
24139 the space character.
24140 </DD>
24142 <DT>_BEGINNING(<VAR>string</VAR>)_</DT>
24143 <DD>This token tells Alpine to invoke the supplied command
24144 if the enclosed <VAR>string</VAR> is found at the beginning
24145 of any line in the text.
24146 <BR>NOTE: Quotes are necessary if <VAR>string</VAR> contains
24147 the space character.
24148 </DD>
24149 </DL>
24152 The &quot;command&quot; and &quot;arguments&quot; portion is simply
24153 the command line to be invoked if the trigger string is found.  Below
24154 are tokens that Alpine will recognize and replace with special values
24155 when the command is actually invoked.
24158 Command Modifying Tokens:
24160 <DL>
24161 <DT>_TMPFILE_</DT>
24162 <DD>When the command is executed, this token is 
24163 replaced with the path and name of the temporary 
24164 file containing the text to be filtered.  Alpine 
24165 expects the filter to replace this data with the 
24166 filter's result.
24169 NOTE: Use of this token implies that the text to 
24170 be filtered is not piped into standard input of the 
24171 executed command and its standard output is ignored. 
24172 Alpine restores the tty modes before invoking the
24173 filter in case the filter interacts with the user
24174 via its own standard input and output.  
24175 </DD>
24176                         
24177 <DT>_RESULTFILE_</DT>
24178 <DD>When the command is executed, this token is 
24179 replaced with the path and name of a temporary 
24180 file intended to contain a status message from the 
24181 filter.  Alpine displays this in the message status 
24182 field. 
24183 </DD>
24185 <DT>_DATAFILE_</DT>
24186 <DD>When the command is executed, this token is 
24187 replaced with the path and name of a temporary 
24188 file that Alpine creates once per session and deletes 
24189 upon exit.  The file is intended to be used by the 
24190 filter to store state information between instances 
24191 of the filter.
24192 </DD>
24193    
24194 <DT>_PREPENDKEY_</DT>
24195 <DD>When the command is executed, this token indicates that a random
24196 number will be passed down the input stream before the message text.
24197 This number could be used as a session key.  It is sent in this way to
24198 improve security.  The number is unique to the current Alpine session
24199 and is only generated once per session.
24200 </DD>
24202 <DT>_SILENT_</DT>
24203 <DD>When the filter is executed, this token tells Alpine not to repaint
24204 the screen while the command is being executed. This can be used with 
24205 filters that do not interact with the user, and therefore repainting 
24206 the screen is not necessary. 
24207 </DD>
24208 </DL>
24211 The feature
24212 <A HREF="h_config_disable_reset_disp"><!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></A> is related.
24214 Performance caveat/considerations:
24215 <BR>
24216 Testing for the trigger and invoking the filter doesn't come for free.
24217 There is overhead associated with searching for the trigger string, testing
24218 for the filter's existence and actually piping the text through the filter.
24219 The impact can be reduced if the Trigger Modifying Tokens above are 
24220 employed.
24222 &lt;End of help on this topic&gt;
24223 </BODY>
24224 </HTML>
24225 ====== h_config_sending_filter =====
24226 <HTML>
24227 <HEAD>
24228 <TITLE>OPTION: <!--#echo var="VAR_sending-filters"--></TITLE>
24229 </HEAD>
24230 <BODY>
24231 <H1>OPTION: <!--#echo var="VAR_sending-filters"--></H1>
24232       
24233 This option defines a list of text-filtering commands (programs and
24234 scripts) that may be selectively invoked to process a message just before
24235 it is sent.  If set, the Composer's ^X (Send) command will allow you to
24236 select which filter (or none) to apply to the message before it is sent. 
24237 For security reasons, the full path of the filter program must be
24238 specified.
24241 Command Modifying Tokens:
24243 <DL>
24244 <DT>_RECIPIENTS_</DT>
24245 <DD>When the command is executed, this token is replaced 
24246 with the space delimited list of recipients of the 
24247 message being sent. 
24248 </DD>
24249         
24250 <DT>_TMPFILE_</DT>
24251 <DD>
24252 When the command is executed, this token is 
24253 replaced with the path and name of the temporary 
24254 file containing the text to be filtered.  Alpine 
24255 expects the filter to replace this data with the 
24256 filter's result.
24259 NOTE: Use of this token implies that the text to 
24260 be filtered is not piped into standard input of the 
24261 executed command and its standard output is ignored. 
24262 Alpine restores the tty modes before invoking the
24263 filter in case the filter interacts with the user
24264 via its own standard input and output.  
24265 </DD>
24266                         
24267 <DT>_RESULTFILE_</DT>
24268 <DD>When the command is executed, this token is 
24269 replaced with the path and name of a temporary 
24270 file intended to contain a status message from the 
24271 filter.  Alpine displays this in the message status 
24272 field. 
24273 </DD>
24275 <DT>_DATAFILE_</DT>
24276 <DD>When the command is executed, this token is replaced 
24277 in the command line with the path and name of a 
24278 temporary file that Alpine creates once per session 
24279 and deletes upon exit.  The file is intended to be 
24280 used by the filter to store state information between 
24281 instances of the filter.
24282 </DD>
24283    
24284 <DT>_PREPENDKEY_</DT>
24285 <DD>When the command is executed, this token indicates 
24286 that a random number will be passed down the input 
24287 stream before the message text.  This number could 
24288 be used as a session key.  It is sent in this way 
24289 to improve security.  The number is unique to the 
24290 current Alpine session and is only generated once per 
24291 session. 
24292 </DD>
24294 <DT>_INCLUDEALLHDRS_</DT>
24295 <DD>When the command is executed, this token indicates 
24296 that the headers of the message will be passed down the input stream
24297 before the message text.
24298 </DD>
24300 <DT>_MIMETYPE_</DT>
24301 <DD>When the command is executed, this token is replaced in the
24302 command name with a temporary file name used to accept any new MIME
24303 Content-Type information necessitated by the output of the filter.
24304 Upon the filter's exit, if the file contains new MIME type
24305 information, Alpine verifies its format and replaces the outgoing
24306 message's MIME type information with that contained in the file. This
24307 is basically a cheap way of sending something other than Text/Plain.
24308 </DD>
24309 </DL>
24311 <P>   
24312 NOTE: Only the body text, which is visible in the Composer, is piped
24313 through this filter.  Attachments are not sent to the filter.
24314 <P>   
24315 Sending filters are not used if the feature
24316 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set.
24318 <UL>   
24319 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24320 </UL><P>
24321 &lt;End of help on this topic&gt;
24322 </BODY>
24323 </HTML>
24324 ====== h_config_keywords =====
24325 <HTML>
24326 <HEAD>
24327 <TITLE>OPTION: <!--#echo var="VAR_keywords"--></TITLE>
24328 </HEAD>
24329 <BODY>
24330 <H1>OPTION: <!--#echo var="VAR_keywords"--></H1>
24332 You may define your own set of keywords and optionally set them on a
24333 message by message basis.
24334 These are similar to the &quot;Important&quot; flag which the user
24335 may set using the Flag command.
24336 The difference is that the Important flag is always present for each folder.
24337 User-defined keywords are chosen by the user.
24338 You may set up the list of possible keywords here, or you may add keywords
24339 from the Flag Details screen that you
24340 can get to after typing the
24341 Flag (<!--chtml if pinemode="function_key"-->F11<!--chtml else-->*<!--chtml endif-->)
24342 command.
24343 After the keywords have been defined,
24344 then you use the <A HREF="h_common_flag">Flag command</A>
24345 to set or clear the keywords in each message.
24346 The behavior of the flag command may be modified by using the
24347 <A HREF="h_config_flag_screen_default">&quot;<!--#echo var="FEAT_enable-flag-screen-implicitly"-->&quot;</A> option or the
24348 <A HREF="h_config_flag_screen_kw_shortcut">&quot;<!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"-->&quot;</A> option.
24351 Keywords may be used when Selecting messages (Select Keyword).
24352 Keywords may also be used in the Patterns of Rules (Filters, Indexcolors, etc).
24353 Filter Rules may be used to set keywords automatically.
24354 Keywords may be displayed as part of the Subject of a message by using
24355 the SUBJKEY or SUBJKEYINIT tokens in the
24356 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
24357 The <A HREF="h_config_kw_braces"><!--#echo var="VAR_keyword-surrounding-chars"--></A>
24358 option may be used to modify the display of keywords using
24359 SUBJKEY and SUBJKEYINIT slightly.
24360 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
24361 screen by using the KEY or KEYINIT tokens.
24362 It is also possible to color keywords in the index using the
24363 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
24364 Keywords are not supported by all mail servers.
24367 You may give keywords nicknames if you wish.
24368 If the keyword definition you type in contains a SPACE character, then the
24369 actual value of the keyword is everything after the last SPACE and the
24370 nickname for that keyword is everything before the last SPACE.
24371 For example, suppose you are trying to interoperate with another email program
24372 that uses a particular keyword with an unpleasant name.
24373 Maybe it uses a keyword called
24375 <CENTER><SAMP>VendorName.SoftwareName.08</SAMP></CENTER>
24377 but for you that keyword means that the message is work-related.
24378 You could define a keyword to have the value
24380 <CENTER><SAMP>Work VendorName.SoftwareName.08</SAMP></CENTER>
24382 and then you would use the name &quot;Work&quot; when dealing with
24383 that keyword in Alpine.
24384 If you defined it as
24386 <CENTER><SAMP>My Work VendorName.SoftwareName.08</SAMP></CENTER>
24388 the nickname would be everything before the last SPACE, that is the nickname
24389 would be &quot;My Work&quot;.
24391 Some commonly used keywords begin with dollar signs.
24392 This presents a slight complication, because the dollar sign is normally used
24393 to signify
24394 <A HREF="h_news_config">environment variable expansion</A>
24395 in the Alpine configuration.
24396 In order to specify a keyword that begins with a dollar sign you must
24397 precede the dollar sign with a second dollar sign to escape its special
24398 meaning.
24399 For example, if you want to include the keyword
24401 <CENTER><SAMP>$Label1</SAMP></CENTER>
24403 as one of your possible keywords, you must enter the text
24405 <CENTER><SAMP>$$Label1</SAMP></CENTER>
24408 instead.
24410 There are a couple limitations.
24411 First, not all servers support keywords.
24412 Second, some servers (including the IMAP server included with Alpine)
24413 have a per folder limit on the number of keywords that may be defined.
24414 This count commonly includes every keyword you have ever used in the
24415 folder, even if it is no longer being used.
24416 In other words, you can add keywords but you cannot remove them easily.
24417 If you have changed keywords over the life of a folder and find that
24418 you have reached such a limit, one possible solution might be to copy
24419 all of the messages to a newly created folder (using Alpine) and then
24420 delete the original and rename the new folder.
24421 The reason this might work is that only the keywords currently set in
24422 any of the messages will be used in the new folder, hopefully putting you
24423 under the limit.
24426 <UL>   
24427 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24428 </UL><P>
24429 &lt;End of help on this topic&gt;
24430 </BODY>
24431 </HTML>
24432 ====== h_config_alt_addresses =====
24433 <HTML>
24434 <HEAD>
24435 <TITLE>OPTION: <!--#echo var="VAR_alt-addresses"--></TITLE>
24436 </HEAD>
24437 <BODY>
24438 <H1>OPTION: <!--#echo var="VAR_alt-addresses"--></H1>
24440 This option provides a place for you to list alternate email addresses
24441 you may have.
24442 Each address in the list should be the actual email address part of an
24443 address, without the full name field or the angle brackets.
24444 For example:
24447 <CENTER><SAMP>user@example.com</SAMP></CENTER>
24450 The matching is case-insensitive, so this would match any of
24451 <SAMP>User@example.com</SAMP>, <SAMP>user@Example.Com</SAMP>, or
24452 <SAMP>USER@EXAMPLE.COM</SAMP> as well.
24455 If set, the option affects the behavior of the Reply
24456 command and the &quot;+&quot; symbol in the MESSAGE INDEX, which denotes that
24457 a message has been addressed specifically to you.
24460 In the default INDEX display
24461 the personal name (or email address) of
24462 the person listed in the message's &quot;From:&quot; header
24463 field is usually displayed except when that address is yours or one of your
24464 alternate addresses.
24465 In that case you will usually see the name of
24466 the first person specified in the
24467 message's &quot;To:&quot; header field
24468 with the prefix &quot;To: &quot; prepended.
24471 With respect to Reply, the reply-to-all option will exclude addresses
24472 listed here.
24475 The feature
24476 <A HREF="h_config_copy_to_to_from"><!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></A>
24477 is somewhat related to this option.
24480 In addition to a list of actual addresses,
24481 you may use regular expressions (as used with egrep with the ignore case flag)
24482 to describe the addresses you want to match.
24483 Alpine will somewhat arbitrarily interpret your entry as a regular
24484 expression if it contains any of the characters
24485 *, |, +, ?, {, [, ^, $, or &#92;.
24486 Otherwise, it will be treated literally.
24487 The feature
24488 <a href="h_config_disable_regex"><!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></a>
24489 may be used to turn off regular expression processing regardless of whether or not
24490 special characters appear in the entry.
24493 A description of how regular expressions work is beyond the
24494 scope of this help text, but some examples follow.
24497 The entry
24500 <CENTER><SAMP>.*@example.com</SAMP></CENTER>
24503 in the <!--#echo var="VAR_alt-addresses"--> list would mean that any
24504 address with a domain name of <SAMP>example.com</SAMP> (such as
24505 <SAMP>fred@example.com</SAMP> or <SAMP>wilma@example.com</SAMP>) will be considered
24506 one of your alternate addresses.
24507 Strictly speaking, the dot in <SAMP>example.com</SAMP> ought to be escaped with
24508 a backslash, as in <SAMP>example&#92;.com</SAMP>, and a dollar sign anchor ought
24509 to come at the end of the expression to prevent a match of <SAMP>example.com.org</SAMP>.
24510 Complicating things further, the dollar sign
24511 is special in the Alpine configuration (it signifies environment variable expansion)
24512 so the dollar sign should be doubled or backslash escaped for Alpine's sake.
24513 Quotes around the whole expression will not escape the dollar sign successfully.
24514 So this example should look like
24517 <CENTER><SAMP>.*@example&#92;.com$$</SAMP></CENTER>
24521 The entry
24524 <CENTER><SAMP>^fred[0-9]*@example.com$$</SAMP></CENTER>
24527 would match
24528 <SAMP>fred3@example.com</SAMP> or <SAMP>fred17@example.com</SAMP> as well
24529 as <SAMP>fred@example.com</SAMP>.
24532 You could match all addresses that look like
24533 <SAMP>fred+stuff@example.com</SAMP> for any value of <SAMP>stuff</SAMP> with the
24534 entry
24537 <CENTER><SAMP>^fred&#92;+.*@example.com$$</SAMP></CENTER>
24540 Notice that you have to escape the plus sign with a backslash because plus
24541 is a special character in regular expressions.
24542 If you wanted to match plain <SAMP>fred</SAMP> as well as <SAMP>fred+stuff</SAMP>
24543 the expression
24546 <CENTER><SAMP>^fred(()|&#92;+.*)@example.com$$</SAMP></CENTER>
24549 would do it, but it would be easier to just add fred@example.com as a
24550 separate entry.
24553 One more example, a match of all first-level subdomains, is given by
24556 <CENTER><SAMP>^fred@[[:alnum:]_-]*&#92;.example&#92;.com$$</SAMP></CENTER>
24560 Because the regular expression matching is based on an old library
24561 (<SAMP>hs_regex</SAMP>) the regular expressions might not work exactly as you expect,
24562 but they should be close.
24565 <UL>   
24566 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24567 </UL><P>
24568 &lt;End of help on this topic&gt;
24569 </BODY>
24570 </HTML>
24571 ====== h_config_abook_formats =====
24572 <HTML>
24573 <HEAD>
24574 <TITLE>OPTION: <!--#echo var="VAR_addressbook-formats"--></TITLE>
24575 </HEAD>
24576 <BODY>
24577 <H1>OPTION: <!--#echo var="VAR_addressbook-formats"--></H1>
24579 This option specifies the format that address books are displayed in.
24580 Normally, address books are displayed with the nicknames in the first
24581 column, the fullnames in the second column, and addresses in the third
24582 column.  The system figures out reasonable defaults for the widths of
24583 the columns.  An address book may be given a different format by
24584 listing special tokens in the order you want them to display.  The
24585 possible tokens are NICKNAME, FULLNAME, ADDRESS, FCC, and COMMENT.
24586 So, for example, to get the default behavior you could list
24589 <CENTER><!--#echo var="VAR_addressbook-formats"-->=NICKNAME FULLNAME ADDRESS</CENTER>
24592 (You can also use the token DEFAULT to get the default behavior for
24593 an address book format.)
24596 The tokens are separated by spaces.  &quot;<!--#echo var="VAR_addressbook-formats"-->&quot;
24597 is a list, so if you have more than one address book you may have a
24598 separate format for each by putting its format at the corresponding
24599 location in the &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.
24603 Listed first are the personal address books, then the global address
24604 books.  So, if you have two personal address books and one global
24605 address book, you may have up to three formats in the
24606 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; list.  If
24607 &quot;<!--#echo var="VAR_addressbook-formats"-->&quot; doesn't have as many elements as there
24608 are address books, the last element is used repeatedly.
24612 Each of the tokens may also be optionally followed by parentheses with
24613 either a number or a percentage inside the parentheses.  For example,
24614 <SAMP>FULLNAME(13)</SAMP> means to allocate 13 characters of space to
24615 the fullnames column, <SAMP>FULLNAME(20%)</SAMP> means to allocate 20%
24616 of the available space (the screen width minus the space for
24617 inter-column spaces) to the fullnames column, while plain
24618 <SAMP>FULLNAME</SAMP> means the system will attempt to figure out a
24619 reasonable number of columns.
24622 There are always 2 spaces between every column, so if you use
24623 fixed column widths (like 13) you should remember to take that into
24624 account.
24627 <UL>   
24628 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24629 </UL><P>
24630 &lt;End of help on this topic&gt;
24631 </BODY>
24632 </HTML>
24633 ====== h_config_set_index_format =====
24634 <HTML>
24635 <HEAD>
24636 <TITLE>Set Index Format</TITLE>
24637 </HEAD>
24638 <BODY>
24639 <H1>Set Index Format</H1>
24641 This option is used to customize the content of lines in the
24642 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.
24643 This action works exactly like the regular
24644 &quot;<!--#echo var="VAR_index-format"-->&quot; option in the Setup/Config screen,
24645 except that you can have a folder-specific value for it if you specify it here.
24646 Consult the help for
24647 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot;
24648 for more information.
24651 <UL>   
24652 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24653 </UL><P>
24654 &lt;End of help on this topic&gt;
24655 </BODY>
24656 </HTML>
24657 ====== h_config_index_format =====
24658 <HTML>
24659 <HEAD>
24660 <TITLE>OPTION: <!--#echo var="VAR_index-format"--></TITLE>
24661 </HEAD>
24662 <BODY>
24663 <H1>OPTION: <!--#echo var="VAR_index-format"--></H1>
24665 This option is used to customize the content of lines in the
24666 <A HREF="h_mail_index">MESSAGE INDEX screen</A>.  Each line is intended 
24667 to convey some amount of immediately relevant information about each 
24668 message in the current folder.
24671 Alpine provides a pre-defined set of informational fields with
24672 reasonable column widths automatically computed.  You can, however,
24673 replace this default set by listing special tokens in the order you
24674 want them displayed.
24677 The list of available tokens is
24678 <A HREF="h_index_tokens">here</A>.
24681 Spaces are used to separate listed tokens.  Additionally, you can
24682 specify how much of the screen's width the token's associated data
24683 should occupy on the index line by appending to the token a pair of
24684 parentheses enclosing either a number or percentage.  For example,
24685 &quot;SUBJECT(13)&quot; means to allocate 13 characters of space to the subject
24686 column, and &quot;SUBJECT(20%)&quot; means to
24687 allocate 20% of the available space
24688 to the subjects column, while plain &quot;SUBJECT&quot; means the system will
24689 attempt to figure out a reasonable amount of space.
24692 There is always one space between every pair of columns, so if you use fixed
24693 column widths (like 13) you should remember to take that into account.
24694 Several of the fields are virtually fixed-width, so it doesn't make
24695 much sense to specify the width for them.  The fields STATUS,
24696 FULLSTATUS, IMAPSTATUS, MSGNO, the DATE fields, SIZE,
24697 and DESCRIPSIZE all fall into that category.
24698 You <EM>may</EM> specify widths for those if you wish, but
24699 you're probably better off letting the system pick those widths.  <P>
24702 The default is equivalent to:
24705 <CENTER><SAMP>STATUS MSGNO SMARTDATETIME24 FROMORTO(33%) SIZENARROW SUBJKEY(67%)</SAMP></CENTER>
24708 This means that the four fields without percentages will be allocated
24709 first, and then 33% and 67% of the <EM>remaining</EM> space will go to
24710 the from and subject fields.  If one of those two fields is specified
24711 as a percentage and the other is left for the system to choose, then
24712 the percentage is taken as an absolute percentage of the screen, not
24713 of the space remaining after allocating the first four columns.  It
24714 doesn't usually make sense to do it that way.  If you leave off all
24715 the widths, then the subject and from fields (if both are present) are
24716 allocated space in a 2 to 1 ratio, which is almost exactly the same as
24717 the default.
24720 What you are most likely to do with this configuration option is to
24721 specify which fields appear at all, which order they appear in, and the
24722 percentage of screen that is used for the from and subject fields if you
24723 don't like the 2 to 1 default.
24726 If you want to retain the default format that Pine 4.64 had, use
24729 <CENTER><SAMP><!--#echo var="VAR_index-format"-->=STATUS MSGNO DATE FROMORTO(33%) SIZE SUBJKEY(67%)</SAMP></CENTER>
24731 <EM>and</EM> set the feature
24732 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>.
24733 <UL>   
24734 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24735 </UL><P>
24736 &lt;End of help on this topic&gt;
24737 </BODY>
24738 </HTML>
24739 ====== h_config_reply_intro =====
24740 <HTML>
24741 <HEAD>
24742 <TITLE>OPTION: <!--#echo var="VAR_reply-leadin"--></TITLE>
24743 </HEAD>
24744 <BODY>
24745 <H1>OPTION: <!--#echo var="VAR_reply-leadin"--></H1>
24747 This option is used to customize the content of the introduction line
24748 that is included when replying to a message and including the original
24749 message in the reply.
24750 The normal default (what you will get if you delete this variable) looks
24751 something like:
24753 <CENTER><SAMP>On Sat, 24 Oct 1998, Fred Flintstone wrote:</SAMP></CENTER>
24755 where the day of the week is only included if it is available in the
24756 original message.
24757 You can replace this default with text of your own.
24758 The text may contain tokens that are replaced with text
24759 that depends on the message you are replying to.
24760 For example, the default is equivalent to:
24762 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24765 Since this variable includes regular text mixed with special tokens
24766 the tokens have to be surrounded by underscore characters.
24767 For example, to use the token &quot;<SAMP>PREFDATE</SAMP>&quot;
24768 you would need to use &quot;<SAMP>_PREFDATE_</SAMP>&quot;,
24769 not &quot;<SAMP>PREFDATE</SAMP>&quot;.
24771 The list of available tokens is
24772 <A HREF="h_index_tokens">here</A>.
24775 By default, the text is all on a single line and is followed by a blank line.
24776 If your &quot;<!--#echo var="VAR_reply-leadin"-->&quot; turns out to be longer
24777 than 80 characters when replying to a particular message, it is shortened.
24778 However, if you use the token
24780 <CENTER><SAMP>_NEWLINE_</SAMP></CENTER>
24783 anywhere in the value, no end of line or blank line is appended, and no
24784 shortening is done.
24785 The _NEWLINE_ token may be used to get rid of the blank line following
24786 the text, to add more blank lines, or to form a multi-line
24787 &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24788 To clarify how _NEWLINE_ works recall that the default value is:
24790 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:</SAMP></CENTER>
24793 That is equivalent to
24795 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE__NEWLINE_</SAMP></CENTER>
24798 In the former case, two newlines are added automatically because
24799 no _NEWLINE_ token appears in the value of the option (for backwards
24800 compatibility). In the latter case, the newlines are explicit.
24801 If you want to remove the blank line that follows the
24802 &quot;<!--#echo var="VAR_reply-leadin"-->&quot; text use a single
24803 _NEWLINE_ token like
24805 <CENTER><SAMP>On _DAYDATE_, _FROM_ wrote:_NEWLINE_</SAMP></CENTER>
24808 Because of the backwards compatibility problem, it is not possible to
24809 remove all of the ends of lines, because then there will be no _NEWLINE_ tokens
24810 and that will cause the automatic adding of two newlines!
24811 If you want, you may embed newlines in the middle of the text, as well,
24812 producing a multi-line &quot;<!--#echo var="VAR_reply-leadin"-->&quot;.
24815 By default, no attempt is made to localize the date.
24816 If you prefer a localized form you may find that one of the tokens
24817 _PREFDATE_ or _PREFDATETIME_ is a satisfactory substitute.
24818 If you want more control one of the many other date tokens, such as _DATEISO_,
24819 might be better.
24822 For the adventurous, there is a way to conditionally include text based
24823 on whether or not a token would result in specific replacement text.
24824 For example, you could include some text based on whether or not
24825 the _NEWS_ token would result in any newsgroups if it was used.
24826 It's explained in detail
24827 <A HREF="h_reply_token_conditionals">here</A>.
24830 In the very unlikely event that you want to include a literal token
24831 in the introduction line you must precede it with a backslash character.
24832 For example,
24834 <CENTER><SAMP>&#92;_DAYDATE_ = _DAYDATE_</SAMP></CENTER>
24836 would produce something like
24838 <CENTER><SAMP>_DAYDATE_ = Sat, 24 Oct 1998</SAMP></CENTER>
24840 It is not possible to have a literal backslash followed by an expanded token.
24842 <UL>   
24843 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24844 </UL><P>
24845 &lt;End of help on this topic&gt;
24846 </BODY>
24847 </HTML>
24848 ====== h_config_remote_abook_history =====
24849 <HTML>
24850 <HEAD>
24851 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-history"--></TITLE>
24852 </HEAD>
24853 <BODY>
24854 <H1>OPTION: <!--#echo var="VAR_remote-abook-history"--></H1>
24856 Sets how many extra copies of
24857 remote address book
24858 data will be kept in each remote address book folder.
24859 The default is three.
24860 These extra copies are simply old versions of the data. Each time a change
24861 is made a new copy of the address book data is appended to the folder. Old
24862 copies are trimmed, if possible, when Alpine exits.
24863 An old copy can be put back into use by
24864 deleting and expunging newer versions of the data from the folder.
24865 Don't delete the first message from the folder. It is a special header
24866 message for the remote address book and it must be there.
24867 This is to prevent regular folders from being used as remote address book
24868 folders and having their data destroyed.
24870 This option is also used to determine how many extra copies of remote
24871 Alpine configuration files are kept.
24873 <UL>   
24874 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24875 </UL><P>
24876 &lt;End of help on this topic&gt;
24877 </BODY>
24878 </HTML>
24879 ====== h_config_remote_abook_validity =====
24880 <HTML>
24881 <HEAD>
24882 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-validity"--></TITLE>
24883 </HEAD>
24884 <BODY>
24885 <H1>OPTION: <!--#echo var="VAR_remote-abook-validity"--></H1>
24887 Sets the minimum number of minutes that a
24888 remote address book will be considered up to date.
24889 Whenever an entry contained in a remote address book is used,
24890 if more than this many minutes have
24891 passed since the last check the remote server will be queried to see if the
24892 address book has changed.
24893 If it has changed, the local copy is updated.
24894 The default value is five minutes.
24895 The special value of -1 means never check.
24896 The special value of zero means only check when the address book is first
24897 opened.
24899 No matter what the value, the validity check is always done when the
24900 address book is about to be changed by the user.
24901 The check can be initiated manually by typing <EM>^L</EM> (Ctrl-L)
24902 while in the address book maintenance screen for the remote address book.
24904 <UL>   
24905 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24906 </UL><P>
24907 &lt;End of help on this topic&gt;
24908 </BODY>
24909 </HTML>
24910 ====== h_config_user_input_timeo =====
24911 <HTML>
24912 <HEAD>
24913 <TITLE>OPTION: <!--#echo var="VAR_user-input-timeout"--></TITLE>
24914 </HEAD>
24915 <BODY>
24916 <H1>OPTION: <!--#echo var="VAR_user-input-timeout"--></H1>
24918 If this is set to an integer greater than zero, then this is the number
24919 of <EM>hours</EM> to wait for user input before Alpine times out.
24920 If Alpine is
24921 in the midst of composing a message or is waiting for user response to
24922 a question, then it will not timeout.
24923 However, if Alpine is sitting idle waiting for
24924 the user to tell it what to do next and the user does not give any
24925 input for this many hours, Alpine will exit.
24926 No expunging or moving of read
24927 messages will take place.
24928 It will exit similarly to the way it would exit
24929 if it received a hangup signal.
24930 This may be useful for cleaning up unused Alpine sessions that have been
24931 forgotten by their owners.
24932 The Alpine developers envision system administrators
24933 setting this to a value of several hours (24?) so that it won't surprise
24934 a user who didn't want to be disconnected.
24936 <UL>   
24937 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24938 </UL><P>
24939 &lt;End of help on this topic&gt;
24940 </BODY>
24941 </HTML>
24942 ====== h_config_ssh_open_timeo =====
24943 <HTML>
24944 <HEAD>
24945 <TITLE>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></TITLE>
24946 </HEAD>
24947 <BODY>
24948 <H1>OPTION: <!--#echo var="VAR_ssh-open-timeout"--></H1>
24950 Sets the time in seconds that Alpine will
24951 attempt to open a UNIX secure shell connection.
24952 The default is 15, the minimum non-zero value is 5,
24953 and the maximum is unlimited. If this is set to zero ssh connections
24954 will be completely disabled.
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_rsh_open_timeo =====
24963 <HTML>
24964 <HEAD>
24965 <TITLE>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></TITLE>
24966 </HEAD>
24967 <BODY>
24968 <H1>OPTION: <!--#echo var="VAR_rsh-open-timeout"--></H1>
24970 Sets the time in seconds that Alpine will
24971 attempt to open a UNIX remote shell connection.
24972 The default is 15, the minimum non-zero value is 5,
24973 and the maximum is unlimited. If this is set to zero rsh connections
24974 will be completely disabled.
24975 This might be useful if rsh connections will never work in your environment
24976 but are causing delays due to firewalls or some other reason.
24978 <UL>   
24979 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
24980 </UL><P>
24981 &lt;End of help on this topic&gt;
24982 </BODY>
24983 </HTML>
24984 ====== h_config_tcp_open_timeo =====
24985 <HTML>
24986 <HEAD>
24987 <TITLE>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></TITLE>
24988 </HEAD>
24989 <BODY>
24990 <H1>OPTION: <!--#echo var="VAR_tcp-open-timeout"--></H1>
24992 Sets the time in seconds that Alpine will
24993 attempt to open a network connection. The default is 30, the minimum is 5,
24994 and the maximum is system defined (typically 75). If a connection has not
24995 completed within this many seconds Alpine will give up and consider it a
24996 failed connection.
24998 <UL>   
24999 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25000 </UL><P>
25001 &lt;End of help on this topic&gt;
25002 </BODY>
25003 </HTML>
25004 ====== h_config_tcp_readwarn_timeo =====
25005 <HTML>
25006 <HEAD>
25007 <TITLE>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></TITLE>
25008 </HEAD>
25009 <BODY>
25010 <H1>OPTION: <!--#echo var="VAR_tcp-read-warning-timeout"--></H1>
25012 Sets the time in seconds that Alpine will
25013 wait for a network read before warning you that things are moving slowly
25014 and possibly giving you the option to break the connection.
25015 The default is 15 seconds. The minimum is 5 seconds and the maximumn is
25016 1000 seconds.
25018 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
25020 <UL>   
25021 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25022 </UL><P>
25023 &lt;End of help on this topic&gt;
25024 </BODY>
25025 </HTML>
25026 ====== h_config_tcp_writewarn_timeo =====
25027 <HTML>
25028 <HEAD>
25029 <TITLE>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></TITLE>
25030 </HEAD>
25031 <BODY>
25032 <H1>OPTION: <!--#echo var="VAR_tcp-write-warning-timeout"--></H1>
25034 Sets the time in seconds that Alpine will
25035 wait for a network write before warning you that things are moving slowly
25036 and possibly giving you the option to break the connection.
25037 The default is 0 which means it is unset. If set to a non-zero value, the
25038 minimum is 5 and the maximum is 1000.
25040 Related option: <A HREF="h_config_tcp_query_timeo"><!--#echo var="VAR_tcp-query-timeout"--></A>.
25042 <UL>   
25043 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25044 </UL><P>
25045 &lt;End of help on this topic&gt;
25046 </BODY>
25047 </HTML>
25048 ====== h_config_tcp_query_timeo =====
25049 <HTML>
25050 <HEAD>
25051 <TITLE>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></TITLE>
25052 </HEAD>
25053 <BODY>
25054 <H1>OPTION: <!--#echo var="VAR_tcp-query-timeout"--></H1>
25056 When Alpine times out a network read or write it will normally just display
25057 a message saying &quot;Still waiting&quot;.
25058 However, if enough time has elapsed since it started waiting it will offer
25059 to let you break the connection.
25060 That amount of time is set by this option, which defaults to 60 seconds,
25061 has a minimum of 5 seconds, and a maximum of 1000 seconds.
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_incoming_folders =====
25070 <HTML>
25071 <HEAD>
25072 <TITLE>OPTION: <!--#echo var="VAR_incoming-folders"--></TITLE>
25073 </HEAD>
25074 <BODY>
25075 <H1>OPTION: <!--#echo var="VAR_incoming-folders"--></H1>
25077 This is a list of one or more folders other than <EM>INBOX</EM> that
25078 may receive new messages.
25079 It is related to the
25080 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="FEAT_enable-incoming-folders"-->&quot;</A>
25081 feature.
25082 This variable is normally manipulated with the Add, Delete, and Rename
25083 commands in the FOLDER LIST for the Incoming Message Folders collection.
25085 <UL>   
25086 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25087 </UL><P>
25088 &lt;End of help on this topic&gt;
25089 </BODY>
25090 </HTML>
25091 ====== h_config_folder_spec =====
25092 <HTML>
25093 <HEAD>
25094 <TITLE>OPTION: <!--#echo var="VAR_folder-collections"--></TITLE>
25095 </HEAD>
25096 <BODY>
25097 <H1>OPTION: <!--#echo var="VAR_folder-collections"--></H1>
25099 This is a list of one or more collections where saved mail is stored. 
25100 The first collection in this list is the default
25101 collection for <EM>Save</EM>s,
25102 including <A HREF="h_config_default_fcc"><!--#echo var="VAR_default-fcc"--></A>.
25104 This variable is normally manipulated using the Setup/collectionList screen.
25106 <UL>   
25107 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25108 </UL><P>
25109 &lt;End of help on this topic&gt;
25110 </BODY>
25111 </HTML>
25112 ====== h_config_news_spec =====
25113 <HTML>
25114 <HEAD>
25115 <TITLE>OPTION: <!--#echo var="VAR_news-collections"--></TITLE>
25116 </HEAD>
25117 <BODY>
25118 <H1>OPTION: <!--#echo var="VAR_news-collections"--></H1>
25120 This is a list of collections where news folders are located.
25122 This variable is normally manipulated using the Setup/collectionList screen.
25124 <UL>   
25125 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25126 </UL><P>
25127 &lt;End of help on this topic&gt;
25128 </BODY>
25129 </HTML>
25130 ====== h_config_address_book =====
25131 <HTML>
25132 <HEAD>
25133 <TITLE>OPTION: <!--#echo var="VAR_address-book"--></TITLE>
25134 </HEAD>
25135 <BODY>
25136 <H1>OPTION: <!--#echo var="VAR_address-book"--></H1>
25138 A list of personal address books.
25139 Each entry in the list is an
25140 optional nickname followed by a pathname or file name relative to the home
25141 directory.
25142 The nickname is separated from the rest of the line with whitespace.
25143 Instead of a local pathname or file name, a remote folder name can be given.
25144 This causes the address book to
25145 be a Remote address book.
25147 Use the Setup/AddressBook screen to modify this variable.
25149 <UL>   
25150 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25151 </UL><P>
25152 &lt;End of help on this topic&gt;
25153 </BODY>
25154 </HTML>
25155 ====== h_config_glob_addrbook =====
25156 <HTML>
25157 <HEAD>
25158 <TITLE>OPTION: <!--#echo var="VAR_global-address-book"--></TITLE>
25159 </HEAD>
25160 <BODY>
25161 <H1>OPTION: <!--#echo var="VAR_global-address-book"--></H1>
25163 A list of shared address books.  Each entry in the list is an
25164 optional nickname followed by a pathname or file name relative to the home
25165 directory.
25166 A SPACE character separates the nickname from the rest of the line.
25167 Instead of a local pathname or file name, a remote folder name can be given.
25168 This causes the address book to
25169 be a Remote address book.
25170 Global address books are
25171 defined to be ReadOnly.
25173 Use the Setup/AddressBook screen to modify this variable.
25175 <UL>   
25176 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25177 </UL><P>
25178 &lt;End of help on this topic&gt;
25179 </BODY>
25180 </HTML>
25181 ====== h_config_last_vers =====
25182 <HTML>
25183 <HEAD>
25184 <TITLE>OPTION: <!--#echo var="VAR_last-version-used"--></TITLE>
25185 </HEAD>
25186 <BODY>
25187 <H1>OPTION: <!--#echo var="VAR_last-version-used"--></H1>
25189 This is set automatically by Alpine. 
25190 It is used to keep track of the last version of Alpine that
25191 was run by the user.
25192 Whenever the version number increases, a new version message is printed out.
25193 This may not be set in the system-wide configuration files.
25195 <UL>   
25196 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25197 </UL><P>
25198 &lt;End of help on this topic&gt;
25199 </BODY>
25200 </HTML>
25201 ====== h_config_printer =====
25202 <HTML>
25203 <HEAD>
25204 <TITLE>OPTION: Printer</TITLE>
25205 </HEAD>
25206 <BODY>
25207 <H1>OPTION: Printer</H1>
25209 Your default printer selection.
25211 Use the Setup/Printer screen to modify this variable.
25213 <UL>   
25214 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25215 </UL><P>
25216 &lt;End of help on this topic&gt;
25217 </BODY>
25218 </HTML>
25219 ====== h_config_print_cat =====
25220 <HTML>
25221 <HEAD>
25222 <TITLE>OPTION: <!--#echo var="VAR_personal-print-category"--></TITLE>
25223 </HEAD>
25224 <BODY>
25225 <H1>OPTION: <!--#echo var="VAR_personal-print-category"--></H1>
25227 This is an internal Alpine variable.
25228 It will be equal to 1, 2, or 3 depending on whether the default printer is
25229 attached, standard, or a personal print command.
25231 Use the Setup/Printer 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_print_command =====
25240 <HTML>
25241 <HEAD>
25242 <TITLE>OPTION: <!--#echo var="VAR_personal-print-command"--></TITLE>
25243 </HEAD>
25244 <BODY>
25245 <H1>OPTION: <!--#echo var="VAR_personal-print-command"--></H1>
25247 List of personal print commands.
25249 Use the Setup/Printer screen to modify this variable.
25251 <UL>   
25252 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25253 </UL><P>
25254 &lt;End of help on this topic&gt;
25255 </BODY>
25256 </HTML>
25257 ====== h_config_pat_old =====
25258 <HTML>
25259 <HEAD>
25260 <TITLE>OPTION: Patterns</TITLE>
25261 </HEAD>
25262 <BODY>
25263 <H1>OPTION: Patterns</H1>
25265 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by the
25266 options Patterns-Roles, Patterns-Filters, Patterns-Scores, Patterns-Indexcolors,
25267 and Patterns-Other.
25268 Patterns-Scores and Patterns-Filters have been replaced since then by
25269 Patterns-Scores2 and Patterns-Filters2.
25271 Use the Setup/Rules screens to modify these 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_pat_roles =====
25280 <HTML>
25281 <HEAD>
25282 <TITLE>OPTION: <!--#echo var="VAR_patterns-roles"--></TITLE>
25283 </HEAD>
25284 <BODY>
25285 <H1>OPTION: <!--#echo var="VAR_patterns-roles"--></H1>
25287 List of rules used for roles.
25288 The option Patterns is obsolete in Alpine and in Pine 4.50 and later, replaced by this and
25289 other options.
25291 Use the Setup/Rules/Roles screen 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_pat_filts =====
25300 <HTML>
25301 <HEAD>
25302 <TITLE>OPTION: <!--#echo var="VAR_patterns-filters2"--></TITLE>
25303 </HEAD>
25304 <BODY>
25305 <H1>OPTION: <!--#echo var="VAR_patterns-filters2"--></H1>
25307 List of rules used for filters.
25309 Use the Setup/Rules/Filters screen to modify this variable.
25311 <UL>   
25312 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25313 </UL><P>
25314 &lt;End of help on this topic&gt;
25315 </BODY>
25316 </HTML>
25317 ====== h_config_pat_scores =====
25318 <HTML>
25319 <HEAD>
25320 <TITLE>OPTION: <!--#echo var="VAR_patterns-scores2"--></TITLE>
25321 </HEAD>
25322 <BODY>
25323 <H1>OPTION: <!--#echo var="VAR_patterns-scores2"--></H1>
25325 List of rules used for scoring.
25327 Use the Setup/Rules/SetScores screen to modify this variable.
25329 <UL>   
25330 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25331 </UL><P>
25332 &lt;End of help on this topic&gt;
25333 </BODY>
25334 </HTML>
25335 ====== h_config_pat_other =====
25336 <HTML>
25337 <HEAD>
25338 <TITLE>OPTION: <!--#echo var="VAR_patterns-other"--></TITLE>
25339 </HEAD>
25340 <BODY>
25341 <H1>OPTION: <!--#echo var="VAR_patterns-other"--></H1>
25343 List of rules used for miscellaneous configuration.
25345 Use the Setup/Rules/Other screen to modify this variable.
25347 <UL>   
25348 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25349 </UL><P>
25350 &lt;End of help on this topic&gt;
25351 </BODY>
25352 </HTML>
25353 ====== h_config_pat_incols =====
25354 <HTML>
25355 <HEAD>
25356 <TITLE>OPTION: patterns-indexcolors</TITLE>
25357 </HEAD>
25358 <BODY>
25359 <H1>OPTION: patterns-indexcolors</H1>
25361 List of rules used for coloring lines in the index.
25363 Use the Setup/Rules/Indexcolor screen to modify this variable.
25365 <UL>   
25366 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25367 </UL><P>
25368 &lt;End of help on this topic&gt;
25369 </BODY>
25370 </HTML>
25371 ====== h_config_pat_srch =====
25372 <HTML>
25373 <HEAD>
25374 <TITLE>OPTION: patterns-search</TITLE>
25375 </HEAD>
25376 <BODY>
25377 <H1>OPTION: patterns-search</H1>
25379 List of rules used only for searching with the Select command in the MESSAGE INDEX.
25381 Use the Setup/Rules/searCh screen to modify this variable.
25383 <UL>   
25384 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25385 </UL><P>
25386 &lt;End of help on this topic&gt;
25387 </BODY>
25388 </HTML>
25389 ====== h_config_font_name =====
25390 <HTML>
25391 <HEAD>
25392 <TITLE>OPTION: Font Name</TITLE>
25393 </HEAD>
25394 <BODY>
25395 <H1>OPTION: Font Name</H1>
25397 PC-Alpine only.
25399 Name of normal font.
25401 Use the pulldown Config menu to modify this variable.
25403 <UL>   
25404 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25405 </UL><P>
25406 &lt;End of help on this topic&gt;
25407 </BODY>
25408 </HTML>
25409 ====== h_config_font_size =====
25410 <HTML>
25411 <HEAD>
25412 <TITLE>OPTION: Font Size</TITLE>
25413 </HEAD>
25414 <BODY>
25415 <H1>OPTION: Font Size</H1>
25417 PC-Alpine only.
25419 Size of normal font.
25421 Use the pulldown Config menu to modify this variable.
25423 <UL>   
25424 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25425 </UL><P>
25426 &lt;End of help on this topic&gt;
25427 </BODY>
25428 </HTML>
25429 ====== h_config_font_style =====
25430 <HTML>
25431 <HEAD>
25432 <TITLE>OPTION: Font Style</TITLE>
25433 </HEAD>
25434 <BODY>
25435 <H1>OPTION: Font Style</H1>
25437 PC-Alpine only.
25439 Style of normal font.
25441 Use the pulldown Config menu to modify this variable.
25443 <UL>   
25444 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25445 </UL><P>
25446 &lt;End of help on this topic&gt;
25447 </BODY>
25448 </HTML>
25449 ====== h_config_font_char_set =====
25450 <HTML>
25451 <HEAD>
25452 <TITLE>OPTION: Font Character Set</TITLE>
25453 </HEAD>
25454 <BODY>
25455 <H1>OPTION: Font Character Set</H1>
25457 PC-Alpine only.
25459 Character set of normal font.
25461 Use the pulldown Config menu to modify this variable.
25463 <UL>   
25464 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25465 </UL><P>
25466 &lt;End of help on this topic&gt;
25467 </BODY>
25468 </HTML>
25469 ====== h_config_print_font_name =====
25470 <HTML>
25471 <HEAD>
25472 <TITLE>OPTION: Print-Font-Name</TITLE>
25473 </HEAD>
25474 <BODY>
25475 <H1>OPTION: Print-Font-Name</H1>
25477 PC-Alpine only.
25479 Name of printer font.
25481 Use the pulldown Config menu to modify this variable.
25483 <UL>   
25484 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25485 </UL><P>
25486 &lt;End of help on this topic&gt;
25487 </BODY>
25488 </HTML>
25489 ====== h_config_print_font_size =====
25490 <HTML>
25491 <HEAD>
25492 <TITLE>OPTION: Print-Font-Size</TITLE>
25493 </HEAD>
25494 <BODY>
25495 <H1>OPTION: Print-Font-Size</H1>
25497 PC-Alpine only.
25499 Size of printer font.
25501 Use the pulldown Config menu to modify this variable.
25503 <UL>   
25504 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25505 </UL><P>
25506 &lt;End of help on this topic&gt;
25507 </BODY>
25508 </HTML>
25509 ====== h_config_print_font_style =====
25510 <HTML>
25511 <HEAD>
25512 <TITLE>OPTION: Print-Font-Style</TITLE>
25513 </HEAD>
25514 <BODY>
25515 <H1>OPTION: Print-Font-Style</H1>
25517 PC-Alpine only.
25519 Style of printer font.
25521 Use the pulldown Config menu to modify this variable.
25523 <UL>   
25524 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25525 </UL><P>
25526 &lt;End of help on this topic&gt;
25527 </BODY>
25528 </HTML>
25529 ====== h_config_print_font_char_set =====
25530 <HTML>
25531 <HEAD>
25532 <TITLE>OPTION: Print-Font-Char-Set</TITLE>
25533 </HEAD>
25534 <BODY>
25535 <H1>OPTION: Print-Font-Char-Set</H1>
25537 PC-Alpine only.
25539 Character set of printer font.
25541 Use the pulldown Config menu to modify this variable.
25543 <UL>   
25544 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25545 </UL><P>
25546 &lt;End of help on this topic&gt;
25547 </BODY>
25548 </HTML>
25549 ====== h_config_window_position =====
25550 <HTML>
25551 <HEAD>
25552 <TITLE>OPTION: Window-Position</TITLE>
25553 </HEAD>
25554 <BODY>
25555 <H1>OPTION: Window-Position</H1>
25557 PC-Alpine only.
25559 Position on the screen of the Alpine window.
25561 Alpine normally maintains this variable itself, and it is set automatically. 
25562 This variable is provided to those who wish to use the same window position 
25563 across different machines from the same configuration.
25564 <A HREF="h_config_winpos_in_config"><!--#echo var="FEAT_store-window-position-in-config"--></A> 
25565 must also be set for this setting to be used.
25567 The format for this variable is of the form: <CODE>CxR+X+Y</CODE>, where
25568 C is the number of columns, R is the number of rows, and X and Y specify the
25569 top left corner of the window.
25571 <UL>   
25572 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25573 </UL><P>
25574 &lt;End of help on this topic&gt;
25575 </BODY>
25576 </HTML>
25577 ====== h_config_cursor_style =====
25578 <HTML>
25579 <HEAD>
25580 <TITLE>OPTION: Cursor Style</TITLE>
25581 </HEAD>
25582 <BODY>
25583 <H1>OPTION: Cursor Style</H1>
25585 PC-Alpine only.
25587 Cursor style.
25589 Use the pulldown Config menu to modify this variable.
25591 <UL>   
25592 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25593 </UL><P>
25594 &lt;End of help on this topic&gt;
25595 </BODY>
25596 </HTML>
25597 ====== h_config_ldap_servers =====
25598 <HTML>
25599 <HEAD>
25600 <TITLE>OPTION: <!--#echo var="VAR_ldap-servers"--></TITLE>
25601 </HEAD>
25602 <BODY>
25603 <H1>OPTION: <!--#echo var="VAR_ldap-servers"--></H1>
25605 List of LDAP servers and associated data.
25607 Use the Setup/Directory screen to modify this variable.
25609 <UL>   
25610 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25611 </UL><P>
25612 &lt;End of help on this topic&gt;
25613 </BODY>
25614 </HTML>
25615 ====== h_config_sendmail_path =====
25616 <HTML>
25617 <HEAD>
25618 <TITLE>OPTION: <!--#echo var="VAR_sendmail-path"--></TITLE>
25619 </HEAD>
25620 <BODY>
25621 <H1>OPTION: <!--#echo var="VAR_sendmail-path"--></H1>
25623 This names the path to an
25624 alternative program, and any necessary arguments, to be used in posting
25625 mail messages. See the Technical notes for more information.
25627 <UL>   
25628 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25629 </UL><P>
25630 &lt;End of help on this topic&gt;
25631 </BODY>
25632 </HTML>
25633 ====== h_config_oper_dir =====
25634 <HTML>
25635 <HEAD>
25636 <TITLE>OPTION: <!--#echo var="VAR_operating-dir"--></TITLE>
25637 </HEAD>
25638 <BODY>
25639 <H1>OPTION: <!--#echo var="VAR_operating-dir"--></H1>
25641 This names the root of the
25642 tree to which you are restricted when reading and writing folders and
25643 files. It is usually used in the system-wide,
25644 <EM>fixed</EM> configuration file.
25646 <UL>   
25647 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25648 </UL><P>
25649 &lt;End of help on this topic&gt;
25650 </BODY>
25651 </HTML>
25652 ====== h_config_rshpath =====
25653 <HTML>
25654 <HEAD>
25655 <TITLE>OPTION: <!--#echo var="VAR_rsh-path"--></TITLE>
25656 </HEAD>
25657 <BODY>
25658 <H1>OPTION: <!--#echo var="VAR_rsh-path"--></H1>
25660 Sets the name of the command used to open a UNIX remote shell
25661 connection. The default is typically <CODE>/usr/ucb/rsh</CODE>.
25663 <UL>   
25664 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25665 </UL><P>
25666 &lt;End of help on this topic&gt;
25667 </BODY>
25668 </HTML>
25669 ====== h_config_rshcmd =====
25670 <HTML>
25671 <HEAD>
25672 <TITLE>OPTION: <!--#echo var="VAR_rsh-command"--></TITLE>
25673 </HEAD>
25674 <BODY>
25675 <H1>OPTION: <!--#echo var="VAR_rsh-command"--></H1>
25677 Sets the format of the command used to
25678 open a UNIX remote shell connection. The default is
25679 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25680 provided command. The first is for the command's pathname, the second is
25681 for the host to connnect to, the third is for the user to connect as, and
25682 the fourth is for the connection method (typically <CODE>imap</CODE>).
25684 <UL>   
25685 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25686 </UL><P>
25687 &lt;End of help on this topic&gt;
25688 </BODY>
25689 </HTML>
25690 ====== h_config_sshpath =====
25691 <HTML>
25692 <HEAD>
25693 <TITLE>OPTION: <!--#echo var="VAR_ssh-path"--></TITLE>
25694 </HEAD>
25695 <BODY>
25696 <H1>OPTION: <!--#echo var="VAR_ssh-path"--></H1>
25698 Sets the name of the command used to open a UNIX secure shell
25699 connection. The default is typically <CODE>/usr/bin/ssh</CODE>.
25701 <UL>   
25702 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25703 </UL><P>
25704 &lt;End of help on this topic&gt;
25705 </BODY>
25706 </HTML>
25707 ====== h_config_sshcmd =====
25708 <HTML>
25709 <HEAD>
25710 <TITLE>OPTION: <!--#echo var="VAR_ssh-command"--></TITLE>
25711 </HEAD>
25712 <BODY>
25713 <H1>OPTION: <!--#echo var="VAR_ssh-command"--></H1>
25715 Sets the format of the command used to
25716 open a UNIX secure shell connection. The default is
25717 "%s %s -l %s exec /etc/r%sd". All four "%s" entries MUST exist in the
25718 provided command. The first is for the command's pathname, the second is
25719 for the host to connnect to, the third is for the user to connect as, and
25720 the fourth is for the connection method (typically <CODE>imap</CODE>).
25722 <UL>   
25723 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25724 </UL><P>
25725 &lt;End of help on this topic&gt;
25726 </BODY>
25727 </HTML>
25728 ====== h_config_new_ver_quell =====
25729 <HTML>
25730 <HEAD>
25731 <TITLE>OPTION: <!--#echo var="VAR_new-version-threshold"--></TITLE>
25732 </HEAD>
25733 <BODY>
25734 <H1>OPTION: <!--#echo var="VAR_new-version-threshold"--></H1>
25736 When a new version of Alpine is run for the first time it offers a
25737 special explanatory screen to the user upon startup.  This option
25738 helps control when and if that special screen appears for users that
25739 have previously run Alpine.  It takes as its value an Alpine version
25740 number.  Alpine versions less than the specified value will supress this
25741 special screen while versions equal to or greater than that specified
25742 will behave normally.
25744 <UL>   
25745 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25746 </UL><P>
25747 &lt;End of help on this topic&gt;
25748 </BODY>
25749 </HTML>
25750 ====== h_config_disable_drivers =====
25751 <HTML>
25752 <HEAD>
25753 <TITLE>OPTION: <!--#echo var="VAR_disable-these-drivers"--></TITLE>
25754 </HEAD>
25755 <BODY>
25756 <H1>OPTION: <!--#echo var="VAR_disable-these-drivers"--></H1>
25758 This variable is a list of mail drivers that will be disabled.
25759 The candidates for disabling are listed below.
25760 There may be more in the future if you compile Alpine with
25761 a newer version of the c-client library.
25764 <UL>
25765 <LI> mbox
25766 <LI> mbx
25767 <LI> mh
25768 <LI> mmdf
25769 <LI> mtx
25770 <LI> mx
25771 <LI> news
25772 <LI> phile
25773 <LI> tenex
25774 <LI> unix
25775 </UL>
25778 The <EM>mbox</EM> driver enables the following behavior: if there is a
25779 file called <CODE>mbox</CODE>
25780 in your home directory, and if that file is either empty or in Unix mailbox
25781 format, then every time you open <EM>INBOX</EM> the <EM>mbox</EM> driver
25782 will automatically transfer mail from the system mail spool directory into the
25783 <CODE>mbox</CODE> file and
25784 delete it from the spool directory. If you disable the <EM>mbox</EM> driver,
25785 this will not happen.
25788 It is not recommended to disable the driver that supports the system default
25789 mailbox format. On most non-SCO systems, that driver is the
25790 <EM>unix</EM> driver.
25791 On most SCO systems, it is the <EM>mmdf</EM> driver.
25792 The system default driver may be
25793 configured to something else on your system; check with your system manager
25794 for additional information.
25797 It is most likely not very useful for you to disable any of the drivers other
25798 than possibly <EM>mbox</EM>.
25799 You could disable some of the others if you know for
25800 certain that you don't need them but the performance gain in doing so
25801 is very modest.
25803 <UL>   
25804 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25805 </UL><P>
25806 &lt;End of help on this topic&gt;
25807 </BODY>
25808 </HTML>
25809 ====== h_config_disable_auths =====
25810 <HTML>
25811 <HEAD>
25812 <TITLE>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></TITLE>
25813 </HEAD>
25814 <BODY>
25815 <H1>OPTION: <!--#echo var="VAR_disable-these-authenticators"--></H1>
25817 This variable is a list of SASL (Simple Authentication and Security
25818 Layer) authenticators that will be disabled.
25819 SASL is a mechanism for
25820 authenticating to IMAP, POP3, SMTP, and other network servers.
25823 Alpine matches its list of supported authenticators with the server to
25824 determine the most secure authenticator that is supported by both.
25825 If no matching authenticators are found, Alpine will revert to plaintext
25826 login (or, in the case of SMTP, will be unable to authenticate at all).
25828 The candidates for disabling can be found <A HREF="X-Alpine-Config:">here</A>.
25831 Normally, you will not disable any authenticators.
25832 There are two exceptions:
25834 <OL>
25835 <LI> You use a broken server that advertises an authenticator,
25836 but does not actually implement it.
25837 <LI> You have a Kerberos-capable version of Alpine and the server is
25838 also Kerberos-capable, but you can not obtain Kerberos
25839 credentials on the server machine, thus you desire to disable
25840 GSSAPI (which in turn disables Alpine's Kerberos support).
25841 </OL>
25843 It is never necessary to disable authenticators, since Alpine will try
25844 other authenticators before giving up.
25845 However, disabling the relevant authenticator avoids annoying error messages.
25847 <UL>   
25848 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25849 </UL><P>
25850 &lt;End of help on this topic&gt;
25851 </BODY>
25852 </HTML>
25853 ====== h_config_encryption_range =====
25854 <HTML>
25855 <HEAD>
25856 <TITLE>OPTION: <!--#echo var="VAR_encryption-protocol-range"--></TITLE>
25857 </HEAD>
25858 <BODY>
25859 <H1>OPTION: <!--#echo var="VAR_encryption-protocol-range"--></H1>
25861 This option sets a range of encryption protocols that can be attempted when
25862 Alpine will try to establish a secure connection using the SSL or TLS
25863 protocols.
25866 Before a secure connection to an external server is established, Alpine and the
25867 server will attempt to negotiate a secure connection. This part is known as the
25868 &quot;ClientHello&quot;. At that time Alpine will announce the version of
25869 encryption that it would like to establish. The server can reject that, and announce
25870 a different version of encryption. Once both the server and Alpine have found
25871 a version of encryption that they both agree on, they will both use it to start
25872 a secure connection.
25875 The use of the /ssl parameter in the definition of the server will make Alpine
25876 attempt the highest encryption protocol that it can use, in agreement with the
25877 server. However, using this option, you will set limits to the versions of
25878 the protocols that are used. This would, for example, allow you to disable the use
25879 of ssl3, in favor of more modern protocols. 
25882 For purposes of this option, the protocols are sorted 
25883 as follows
25886 <CENTER>
25887 no_min < ssl3 < tls1 < tls1_1 < tls1_2 < tls1_3 < no_max
25888 </CENTER>
25891 For example, if you want to disable ssl3, all you have to do is to set the minimum 
25892 version to tls1, or any higher protocol. 
25894 <P>The name of the parameters used to configure this option is the same as the 
25895 parameters that are added to the definition of a server to make it a secure 
25896 connection, and they are listed above for your reference.
25899 The special values &quot;no_min&quot; and &quot;no_max&quot; do not set values
25900 for the minimum and maximum protocol versions, and Alpine will use the maximum
25901 and minimum values of encryption protocols built into your SSL library.
25904 <UL>   
25905 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25906 </UL><P>
25907 &lt;End of help on this topic&gt;
25908 </BODY>
25909 </HTML>
25910 ====== h_config_abook_metafile =====
25911 <HTML>
25912 <HEAD>
25913 <TITLE>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></TITLE>
25914 </HEAD>
25915 <BODY>
25916 <H1>OPTION: <!--#echo var="VAR_remote-abook-metafile"--></H1>
25918 This is usually set by Alpine and is the name of a file
25919 that contains data about
25920 remote address books and remote configuration files.
25922 <UL>   
25923 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25924 </UL><P>
25925 &lt;End of help on this topic&gt;
25926 </BODY>
25927 </HTML>
25928 ====== h_config_composer_wrap_column =====
25929 <HTML>
25930 <HEAD>
25931 <TITLE>OPTION: <!--#echo var="VAR_composer-wrap-column"--></TITLE>
25932 </HEAD>
25933 <BODY>
25934 <H1>OPTION: <!--#echo var="VAR_composer-wrap-column"--></H1>
25937 This option specifies an aspect of Alpine's Composer.  This gives the
25938 maximum width that auto-wrapped lines will have.  It's also the maximum
25939 width of lines justified using the <A HREF="h_compose_justify">^J
25940 Justify</A> command.  The normal default
25941 is &quot;74&quot;.  The largest allowed setting is normally &quot;80&quot;
25942 in order to
25943 prevent very long lines from being sent in outgoing mail.  When the mail
25944 is actually sent, trailing spaces will be stripped off of each line.
25947 <UL>   
25948 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
25949 </UL><P>
25950 &lt;End of help on this topic&gt;
25951 </BODY>
25952 </HTML>
25953 ====== h_config_deadlets =====
25954 <HTML>
25955 <HEAD>
25956 <TITLE>OPTION: <!--#echo var="VAR_dead-letter-files"--></TITLE>
25957 </HEAD>
25958 <BODY>
25959 <H1>OPTION: <!--#echo var="VAR_dead-letter-files"--></H1>
25962 This option affects Alpine's behavior when you cancel a message being
25963 composed.  Alpine's usual behavior is to write the canceled message to
25964 a file named 
25965 <!--chtml if pinemode="os_windows"-->
25966 &quot;DEADLETR&quot;,
25967 <!--chtml else-->
25968 &quot;dead.letter&quot; in your home directory,
25969 <!--chtml endif-->
25970 overwriting any previous message.
25972 If you set this option to a value higher than one, then that many copies
25973 of dead letter files will be saved.
25974 For example, if you set this option to &quot;3&quot; then you may have
25975 files named
25976 <!--chtml if pinemode="os_windows"-->
25977 &quot;DEADLETR&quot;,
25978 &quot;DEADLETR2&quot;, and
25979 &quot;DEADLETR3&quot;.
25980 <!--chtml else-->
25981 &quot;dead.letter&quot;,
25982 &quot;dead.letter2&quot;, and
25983 &quot;dead.letter3&quot; in your home directory.
25984 <!--chtml endif-->
25985 In this example, the most recently cancelled message will be in
25986 <!--chtml if pinemode="os_windows"-->
25987 &quot;DEADLETR&quot;,
25988 <!--chtml else-->
25989 &quot;dead.letter&quot;,
25990 <!--chtml endif-->
25991 and the third most recently cancelled message will be in
25992 <!--chtml if pinemode="os_windows"-->
25993 &quot;DEADLETR3&quot;.
25994 <!--chtml else-->
25995 &quot;dead.letter3&quot;.
25996 <!--chtml endif-->
25997 The fourth most recently cancelled message will no longer be saved.
26000 If you set this option to zero, then NO record of canceled messages is
26001 maintained.
26003 If the feature
26004 <A HREF="h_config_quell_dead_letter"><!--#echo var="FEAT_quell-dead-letter-on-cancel"--></A>
26005 is set, that overrides whatever you set for this option.
26006 If this option had existed at the time, then the Quell feature would not
26007 have been added, but it is still there for backwards compatibility.
26008 So, in order for this option to have the desired effect, make sure the
26009 Quell feature is turned off.
26012 <UL>   
26013 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26014 </UL><P>
26015 &lt;End of help on this topic&gt;
26016 </BODY>
26017 </HTML>
26018 ====== h_config_maxremstream =====
26019 <HTML>
26020 <HEAD>
26021 <TITLE>OPTION: <!--#echo var="VAR_max-remote-connections"--></TITLE>
26022 </HEAD>
26023 <BODY>
26024 <H1>OPTION: <!--#echo var="VAR_max-remote-connections"--></H1>
26026 This option affects low-level behavior of Alpine.
26027 The default value for this option is <EM>3</EM>.
26028 If your INBOX is accessed using the IMAP protocol
26029 from an IMAP server, that connection is kept open throughout the
26030 duration of your Alpine session, independent of the value of this option.
26031 The same is true of any 
26032 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
26033 you have defined.
26034 This option controls Alpine's behavior when connecting to remote IMAP folders
26035 other than your INBOX or your <!--#echo var="VAR_stay-open-folders"-->.
26036 It specifies the maximum number of remote IMAP connections (other than
26037 those mentioned above) that Alpine will use for accessing the rest of your
26038 folders.
26039 If you set this option to zero, you will turn off most remote connection
26040 re-use.
26041 It's difficult to understand exactly what this option does, and it is usually
26042 fine to leave it set to its default value.
26043 It is probably more likely that you will be interested in setting the
26044 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A> option
26045 instead of changing the value of this option.
26046 A slightly longer explanation of what is going on with this option
26047 is given in the next paragraphs.
26050 There are some time costs involved in opening and closing remote IMAP 
26051 folders, the main costs being the time you have to wait for the connection
26052 to the server and the time for the folder to open.
26053 Opening a folder may involve not only the time the server takes to do its
26054 processing but time that Alpine uses to do filtering.
26055 These times can vary widely.
26056 They depend on how loaded the server is, how large
26057 the folder being opened is, and how you set up filtering, among other things.
26058 Once Alpine has opened a connection to a particular folder, it will attempt
26059 to keep that connection open in case you use it again.
26060 In order to do this,
26061 Alpine will attempt to use the <!--#echo var="VAR_max-remote-connections"--> (the value of
26062 this option) IMAP connections you have alloted for this purpose.
26064 For example, suppose the value of this option is set to &quot;2&quot;.
26065 If your INBOX is accessed on a remote server using the IMAP protocol, that
26066 doesn't count as one of the remote connections but it is always kept open.
26067 If you then open another IMAP folder, that would be your first
26068 remote connection counted as one of the <!--#echo var="VAR_max-remote-connections"--> connections.
26069 If you open a third folder the second will be left open, in case you
26070 return to it.
26071 You won't be able to tell it has been left open.
26072 It will appear to be closed when you leave the folder but the connection
26073 will remain in the background.
26074 Now suppose you go back to the second folder (the first folder after the
26075 INBOX).
26076 A connection to that folder is still open so you won't have to wait
26077 for the startup time to open it.
26078 Meanwhile, the connection to the third folder will be left behind.
26079 Now, if you open a fourth folder, you will bump into the
26080 <!--#echo var="VAR_max-remote-connections"--> limit, because this will be the third folder other
26081 than INBOX and you have the option set to &quot;2&quot;.
26082 The connection that is being used for
26083 the third folder will be re-used for this new fourth folder.
26084 If you go back to the third folder after this, it is no longer already
26085 connected when you get there.
26086 You'll still save some time since Alpine will re-use the connection to the
26087 fourth folder and you have already logged in on that connection,
26088 but the folder will have to be re-opened from scratch.
26090 If a folder is large and the startup cost is dominated by the time it takes
26091 to open that folder or to run filters on it, then it will pay to make the
26092 value of this option large enough to keep it open.
26093 On the other hand, if you only revisit a handful of folders or if
26094 the folders are small, then it might
26095 make more sense to keep this number small so that the reconnect
26096 time (the time to start up a new connection and authenticate)
26097 is eliminated instead.
26099 You may also need to consider the impact on the server.
26100 On the surface, a larger number here may cause a larger impact on the
26101 server, since you will have more connections open to the server.
26102 On the other hand, not only will <EM>you</EM> be avoiding the startup costs
26103 associated with reopening a folder, but the <EM>server</EM> will be
26104 avoiding those costs as well.
26106 When twenty five minutes pass without any active use of an IMAP connection
26107 being saved for possible re-use, that connection will be shut down,
26110 <UL>   
26111 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26112 </UL><P>
26113 &lt;End of help on this topic&gt;
26114 </BODY>
26115 </HTML>
26116 ====== h_config_permlocked =====
26117 <HTML>
26118 <HEAD>
26119 <TITLE>OPTION: <!--#echo var="VAR_stay-open-folders"--></TITLE>
26120 </HEAD>
26121 <BODY>
26122 <H1>OPTION: <!--#echo var="VAR_stay-open-folders"--></H1>
26124 This option affects low-level behavior of Alpine.
26125 There is no default value for this option.
26126 It is related to the options
26127 <A HREF="h_config_preopen_stayopens">&quot;<!--#echo var="FEAT_preopen-stayopen-folders"-->&quot;</A>,
26128 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>,
26129 and <A HREF="h_config_expunge_stayopens">&quot;<!--#echo var="FEAT_offer-expunge-of-stayopen-folders"-->&quot;</A>.
26132 Note: changes made to this list take effect the next time you open a
26133 folder in the list.
26136 This is a list of folders that will be permanently kept open once they
26137 are first opened.
26138 The names in this list may be either the nickname of an Incoming folder
26139 or the full technical specification of a folder.
26140 The folders in this list need not be remote IMAP folders, they could usefully
26141 be local folders, as well.
26142 If a folder in the list is a newsgroup or is not accessed either locally
26143 or via IMAP, then the entry will be ignored.
26144 For example, folders accessed via NNTP or POP3 will not be kept open, since
26145 the way that new mail is found with those protocols involves closing and
26146 reopening the connection.
26148 Once a Stay Open folder has been opened, new-mail checking will continue
26149 to happen on that folder for the rest of the Alpine session.
26150 Your INBOX is always implicitly included in this Stay-Open list and doesn't
26151 need to be added explicitly.
26153 Another difference that you may notice between a Stay Open folder and a
26154 non-Stay Open folder is which message is selected as the current message
26155 when you enter the folder index.
26156 Normally, the starting position for an incoming folder (which most Stay Open
26157 folders will likely be) is controlled by the
26158 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
26159 However, if a folder is a Stay Open folder, when you re-enter the folder
26160 after the first time the current message will be the same as it was when
26161 you left the folder.
26162 An exception is made if you use the TAB command to get to the folder.
26163 In that case, the message number will be incremented by one from what it
26164 was when you left the folder.
26166 The above special behavior is thought to be useful.
26167 However, it is special and different from what you might at first expect.
26168 The feature
26169 <A HREF="h_config_use_reg_start_for_stayopen"><!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></A>
26170 may be used to turn off this special treatment.
26172 If the message that was current when you left the folder no longer exists,
26173 then the regular startup rule will be used instead.
26176 <UL>   
26177 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26178 </UL><P>
26179 &lt;End of help on this topic&gt;
26180 </BODY>
26181 </HTML>
26182 ====== h_config_viewer_overlap =====
26183 <html>
26184 <header>
26185 <title>OPTION: <!--#echo var="VAR_viewer-overlap"--></title>
26186 </header>
26187 <body>
26188 <h1>OPTION: <!--#echo var="VAR_viewer-overlap"--></h1>
26190 This option specifies an aspect of Alpine's Message Viewing screen.  When
26191 the space bar is used to page forward in a message, the number of lines
26192 specified by the &quot;<!--#echo var="VAR_viewer-overlap"-->&quot; variable will be repeated from the
26193 bottom of the screen.  That is, if this was set to two lines, then the
26194 bottom two lines of the screen would be repeated on the top of the next
26195 screen.  The normal default value is "2".<p>
26196 <UL>   
26197 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26198 </UL><P>
26199 &lt;End of help on this topic&gt;
26200 </body>
26201 </html>
26202 ====== h_config_scroll_margin =====
26203 <HTML>
26204 <HEAD>
26205 <TITLE>OPTION: <!--#echo var="VAR_scroll-margin"--></TITLE>
26206 </HEAD>
26207 <BODY>
26208 <H1>OPTION: <!--#echo var="VAR_scroll-margin"--></H1>
26210 This option controls when Alpine's line-by-line scrolling occurs.
26211 Typically, when a selected item is at the top or bottom screen edge
26212 and the UP or DOWN (and Ctrl-P or Ctrl-N) keys are struck, the
26213 displayed items are scrolled down or up by a single line.
26216 This option allows you to tell Alpine the number of lines from the top and
26217 bottom screen edge that line-by-line paging should occcur.  For example,
26218 setting this value to one (1) will cause Alpine to scroll the display
26219 vertically when you move to select an item on the display's top or
26220 bottom edge.
26223 By default, this variable is zero, indicating that scrolling happens
26224 when you move up or down to select an item immediately off the display's
26225 top or bottom edge.
26228 <UL>   
26229 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26230 </UL><P>
26231 &lt;End of help on this topic&gt;
26232 </BODY>
26233 </HTML>
26234 ====== h_config_wordseps =====
26235 <HTML>
26236 <HEAD>
26237 <TITLE>OPTION: <!--#echo var="VAR_composer-word-separators"--></TITLE>
26238 </HEAD>
26239 <BODY>
26240 <H1>OPTION: <!--#echo var="VAR_composer-word-separators"--></H1>
26242 This option affects how a &quot;word&quot; is defined in the composer.
26243 The definition of a word is used when using the Forward Word and Backward
26244 Word commands in the composer, as well as when using the spell checker.
26245 Whitespace is always considered a word separator.
26246 Punctuation (like question marks, periods, commas, and so on) is always
26247 a word separator if it comes at the end of a word.
26248 By default, a punctuation character that is in the middle of a word does
26249 not break up that word as long as the character before and the character
26250 after it are both alphanumeric.
26251 If you add a character to this option it will be considered a
26252 word separator even when it occurs in the middle of an alphanumeric word.
26253 For example, if you want to skip through each part of an address instead
26254 of skipping the whole address at once you might want to include &quot;@&quot;
26255 and &quot;.&quot; in this list.
26256 If you want the word-skipper to stop on each part of a UNIX filename you
26257 could add &quot;/&quot; to the list.
26258 The equal sign and dash are other possibilities you might find helpful.
26260 <UL>   
26261 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26262 </UL><P>
26263 &lt;End of help on this topic&gt;
26264 </BODY>
26265 </HTML>
26266 ====== h_config_reply_indent_string =====
26267 <HTML>
26268 <HEAD>
26269 <TITLE>OPTION: <!--#echo var="VAR_reply-indent-string"--></TITLE>
26270 </HEAD>
26271 <BODY>
26272 <H1>OPTION: <!--#echo var="VAR_reply-indent-string"--></H1>
26274 This option specifies an aspect of Alpine's Reply command.
26275 When a message is replied to and the text of the message is included, the
26276 included text usually has the string &quot;&gt;&nbsp;&quot; prepended
26277 to each line indicating it is quoted text.
26278 (In case you haven't seen this before, &quot;string&quot; is a technical term
26279 that means chunk of text.)
26282 Because of the introduction of <A HREF="h_config_quell_flowed_text">Flowed Text</A>
26283 in 1999 and its wide-spread adoption since then, you will usually be better off if you
26284 use one of the standard values,
26285 &quot;&gt;&nbsp;&quot; or &quot;&gt;&quot;, for this option.
26288 This option specifies a different value for that string.
26289 If you wish to use a string that begins or ends with a space,
26290 enclose the string in double quotes.
26293 Besides simple text, the prepended string can be based
26294 on the message being replied to.
26295 The following tokens are substituted for the message's corresponding value:
26297 <DL>
26298 <DT>_FROM_</DT>
26299 <DD>This token gets replaced with the message sender's &quot;username&quot;.
26300 If the name is longer than six characters, only the first six characters are
26301 used.
26302 </DD>
26304 <DT>_NICK_</DT>
26305 <DD>This token gets replaced with the nickname of the message sender's
26306 address as found in your addressbook.
26307 If no addressbook entry is found,
26308 Alpine replaces the characters &quot;_NICK_&quot; with nothing.
26309 If the nickname is longer than six characters, only the first six characters are
26310 used.
26311 </DD>
26313 <DT>_INIT_</DT>
26314 <DD>This token gets replaced with the initials of the sender of the message.
26315 </DD>
26317 </DL>
26319 NOTE: When the
26320 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
26321 feature is enabled, you are given the opportunity to edit the string, whether 
26322 it is the default or one automatically generated using the above tokens.
26324 If you change your <!--#echo var="VAR_reply-indent-string"-->
26325 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
26326 quoted text will not be flowed
26327 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
26328 when you reply.
26329 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
26330 set to the default value.
26332 <UL>   
26333 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26334 </UL><P>
26335 &lt;End of help on this topic&gt;
26336 </BODY>
26337 </HTML>
26338 ====== h_config_quote_replace_string =====
26339 <HTML>
26340 <HEAD>
26341 <TITLE>OPTION: <!--#echo var="VAR_quote-replace-string"--></TITLE>
26342 </HEAD>
26343 <BODY>
26344 <H1>OPTION: <!--#echo var="VAR_quote-replace-string"--></H1>
26346 This option specifies what string to use as a quote when <b>viewing</b> a
26347 message.  The standard way of quoting messages when replying is the string
26348 &quot;&gt;&nbsp;&quot; (quote space).
26349 With this variable set, viewing a message will
26350 replace occurrences of 
26351 &quot;&gt;&nbsp;&quot; and &quot;&gt;&quot; with the replacement string.
26352 This setting works best when
26353 <A HREF="h_config_reply_indent_string"><!--#echo var="VAR_reply-indent-string"--></A>
26354 or the equivalent setting in your correspondents' mail programs
26355 is set to the default
26356 &quot;&gt;&nbsp;&quot;, but it will also work fine with the
26357 <!--#echo var="VAR_reply-indent-string"--> set to &quot;&gt;&quot;.
26359 By default, this setting will only work on messages that are flowed, which is
26360 the default way of sending messages for many mail clients including
26361 Alpine.  Enable the feature
26362 <A HREF="h_config_quote_replace_noflow"><!--#echo var="FEAT_quote-replace-nonflowed"--></A>
26363 to also have quote-replacement performed on non-flowed messages.
26366 Setting this option will replace  &quot;&gt;&quot; and 
26367 &quot;&gt;&nbsp;&quot; with the new setting. This string may include trailing
26368 spaces. To preserve those spaces enclose the full string in double quotes.
26370 No padding to separate the text of the message from the quote string is
26371 added. This means that if you do not add trailing spaces to the value of
26372 this variable, text will be displayed right next to the quote string,
26373 which may be undesirable. This can be avoided by adding a new string
26374 separated by a space from your selection of quote string replacement. This
26375 last string will be used for padding. For example, setting this variable to 
26376 <br>&quot;&gt;&quot; &quot; &quot; has the effect of setting
26377 &quot;&gt;&quot; as the <!--#echo var="VAR_quote-replace-string"-->, with the text padded by
26378 a space from the last quote string to make it more readable.
26380 One possible setting for this variable could be
26381 &quot;&nbsp;&nbsp;&nbsp;&nbsp;&quot; (four spaces wrapped in quotes), which
26382 would have the effect of indenting each level of quoting four spaces and
26383 removing the &quot;&gt;&quot;'s.  Different levels of quoting could be made
26384 more discernible by setting colors for quoted text.
26386 Replying to or forwarding the viewed message will preserve the original
26387 formatting of the message, so quote-replacement will not be performed on
26388 messages that are being composed.
26390 <UL>   
26391 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26392 </UL><P>
26393 &lt;End of help on this topic&gt;
26394 </BODY>
26395 </HTML>
26396 ====== h_config_empty_hdr_msg =====
26397 <HTML>
26398 <HEAD>
26399 <TITLE>OPTION: <!--#echo var="VAR_empty-header-message"--></TITLE>
26400 </HEAD>
26401 <BODY>
26402 <H1>OPTION: <!--#echo var="VAR_empty-header-message"--></H1>
26404 When sending, if both the To and Cc fields are empty and you
26405 are sending the message to a Bcc,
26406 Alpine will put a special address in the To line.  The default value is:
26409 <CENTER><SAMP>undisclosed-recipients:&nbsp;;</SAMP></CENTER>
26412 The reason for this is to avoid embarrassment caused by some Internet
26413 mail transfer software that interprets a &quot;missing&quot;
26414 <SAMP>To:</SAMP> header as an error and replaces it with an
26415 <SAMP>Apparently-to:</SAMP> header that may contain the addresses you
26416 entered on the <SAMP>Bcc:</SAMP> line, defeating the purpose of the
26417 Bcc.  You may change the part of this message that comes before the
26418 &quot;:&nbsp;;&quot; by setting the &quot;<!--#echo var="VAR_empty-header-message"-->&quot;
26419 variable to something else.
26422 The normal default is &quot;undisclosed-recipients&quot;.
26425 <UL>   
26426 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26427 </UL><P>
26428 &lt;End of help on this topic&gt;
26429 </BODY>
26430 </HTML>
26431 ====== h_config_status_msg_delay =====
26432 <HTML>
26433 <HEAD>
26434 <TITLE>OPTION: <!--#echo var="VAR_status-message-delay"--></TITLE>
26435 </HEAD>
26436 <BODY>
26437 <H1>OPTION: <!--#echo var="VAR_status-message-delay"--></H1>
26439 This option has evolved over time, causing the possible values to be
26440 counter-intuitive.
26441 Read carefully before you set this option.
26442 First we explain what the option does, then there is a longer discussion
26443 following that.
26445 If this is set to zero, the default value, it has <EM>no</EM> effect.
26446 Positive and negative values serve two similar, but different purposes.
26448 If it is set to a positive number, it causes the cursor to move to the
26449 status line whenever a status message is printed and pause there for this
26450 many seconds.
26451 It will probably only be useful if the 
26452 <A HREF="h_config_show_cursor">&quot;<!--#echo var="FEAT_show-cursor"-->&quot;</A> feature is
26453 also turned on.
26454 Setting this option to a positive number can only be used to
26455 <EM>increase</EM> the status message delay.
26456 This may be useful for Braille displays, or other non-traditional displays.
26458 If it is set to a negative number the interpretation is a bit complicated.
26459 Negative numbers are used to <EM>decrease</EM> the amount of delay Alpine uses to
26460 allow you to read important status messages.
26461 Of course, this may cause you to miss some important messages.
26462 If you see a message flash by but miss what it says you can use the
26463 Journal command from the MAIN MENU to read it.
26464 If you set this option to a negative value, the delay will be
26465 no more than one second less than the absolute value
26466 of the value you set.
26467 So if you set it to -1, the delay will be no more than zero seconds, no
26468 delay at all.
26469 If you set it to -2, the delay will be no more than 1 second.
26470 And so on, -3 is 2 seconds, -4 is 3 seconds, ...
26471 If the delay that Alpine would have used by default is less than this delay,
26472 then the smaller delay set by Alpine will be used.
26473 Setting this option to a negative value can only reduce the amount of
26474 delay, never increase it.
26476 Here is a more detailed explanation.
26477 Status messages are the messages that show up spontaneously in the
26478 status message line, usually the third line from the bottom of the screen.
26479 By default, Alpine assigns each status message it produces a minimum
26480 display time.
26481 Some status messages have a minimum display time of zero.
26482 You can see an example of such a message by paging up in this help text
26483 until you reach the top of the screen.
26484 If you try to page past the top you will see the message
26486 <CENTER><SAMP>[Already at start of help text]</SAMP></CENTER>
26488 in the status line.
26489 If there is another more important use of the status message line this message
26490 might be replaced quickly, or it even might not be shown at all.
26491 However, if there is no reason to get rid of the message, it might stay
26492 there for several seconds while you read the help.
26493 An example where it is replaced immediately happens when you page up in
26494 the help text past the top of the screen, but then type the &quot;WhereIs&quot;
26495 command right after paging up.
26496 The message will disappear immediately without causing a delay (unless you
26497 have set this option to a positive value) to allow you to type input for
26498 the &quot;WhereIs&quot; command.
26499 Since it isn't a very important message, Alpine has set its minimum display
26500 time to zero seconds.
26502 Other messages have minimum display times of three or more seconds.
26503 These are usually error messages that Alpine thinks you ought to see.
26504 For example, it might be a message about a failed Save or a failed folder open.
26505 It is often the case that this minimum display time won't delay you in
26506 any way because the status message line is not needed for another reason.
26507 However, there are times when Alpine has to delay what it is doing in
26508 order to display a status message for the minimum display time.
26509 This happens when a message is being displayed and Alpine wants to ask
26510 for input from the keyboard.
26511 For example, when you Save a message you use the status message line.
26512 You get a prompt there asking for the name of the folder to save to.
26513 If there is a status message being displayed that has not
26514 yet displayed for its minimum
26515 time Alpine will display that status message surrounded with the characters
26516 &gt; and &lt; to show you that it is delaying.
26517 That might happen, for example, if you tried to save to a folder that
26518 caused an error, then followed that immediately with another Save command.
26519 You might find yourself waiting for a status message like
26521 <CENTER><SAMP>[&gt;Can't get write access to mailbox, access is readonly&lt;]</SAMP></CENTER>
26523 to finish displaying for three seconds.
26524 If that is something you find happening to you frequently, you may use
26525 negative values of this option to decrease or eliminate that delay, at
26526 the risk of missing the message.
26528 <UL>   
26529 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26530 </UL><P>
26531 &lt;End of help on this topic&gt;
26532 </BODY>
26533 </HTML>
26534 ====== h_config_active_msg_interval =====
26535 <HTML>
26536 <HEAD>
26537 <TITLE>OPTION: <!--#echo var="VAR_busy-cue-rate"--></TITLE>
26538 </HEAD>
26539 <BODY>
26540 <H1>OPTION: <!--#echo var="VAR_busy-cue-rate"--></H1>
26542 When Alpine is delayed for some reason it usually shows that
26543 something is happening with a small animated display in the status
26544 message line near the bottom of the screen.
26545 This option sets how frequently the characters (for example, a spinning bar)
26546 in the active status message lines are updated.
26547 At most, it can be set to be udpated 20 times per second. 
26550 Setting this value to zero will prevent display of the animations
26551 altogether.
26554 The option <A HREF="h_config_use_boring_spinner"><!--#echo var="FEAT_busy-cue-spinner-only"--></A>
26555 can be used to remove the randomness from this animated display.
26558 <UL>   
26559 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26560 </UL><P>
26561 &lt;End of help on this topic&gt;
26562 </BODY>
26563 </HTML>
26564 ====== h_config_mailchecknoncurr =====
26565 <HTML>
26566 <HEADER>
26567 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></TITLE>
26568 </HEADER>
26569 <BODY>
26570 <H1>OPTION: <!--#echo var="VAR_mail-check-interval-noncurrent"--></H1>
26572 This option is closely related to the
26573 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26574 option, as well as the
26575 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A> and
26576 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> options.
26577 If the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot; option is set to zero, then automatic
26578 new-mail checking is disabled and this option will have no effect.
26580 Normally this option is set to zero, which means that the value used will be
26581 the same as the value for the &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;.
26582 If you set this option to a value different from zero
26583 (usually larger than the value for &quot;<!--#echo var="VAR_mail-check-interval"-->&quot;)
26584 then that is the check interval that will be used
26585 for folders that are not the currently open folder or the INBOX.
26586 You may not even have any folders that are noncurrent and not the INBOX.
26587 If you do, it is likely that they are due to
26588 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>
26589 you have configured.
26590 This option also affects the rate of mail checking done on cached
26591 connections to folders you previously had open but are no longer actively
26592 using.
26593 You aren't expected to understand that last sentence, but if you are interested
26594 take a look at
26595 <A HREF="h_config_maxremstream">&quot;<!--#echo var="VAR_max-remote-connections"-->&quot;</A>
26596 and the related options.
26598 <UL>   
26599 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26600 </UL><P>
26601 &lt;End of help on this topic&gt;
26602 </BODY>
26603 </HTML>
26604 ====== h_config_fifopath =====
26605 <HTML>
26606 <HEADER>
26607 <TITLE>OPTION: NewMail FIFO Path</TITLE>
26608 </HEADER>
26609 <BODY>
26610 <H1>OPTION: NewMail FIFO Path</H1>
26612 This option is only available in UNIX Alpine.
26613 However, there is a very similar feature built in to PC-Alpine.
26614 In PC-Alpine's Config menu at the top of the screen
26615 is an option called &quot;New Mail Window&quot;.
26617 You may have Alpine create a FIFO special file (also called a named pipe) where
26618 it will send a one-line message each time a new message is received in
26619 the current folder, the INBOX, or any open
26620 <A HREF="h_config_permlocked"><!--#echo var="VAR_stay-open-folders"--></A>.
26621 To protect against two different Alpines both writing to the same FIFO, Alpine
26622 will only create the FIFO and write to it if it doesn't already exist.
26624 A possible way to use this option would be to have a separate window
26625 on your screen running the command
26627 <CENTER><SAMP>cat filename</SAMP></CENTER>
26629 where &quot;filename&quot; is the name of the file given for this option.
26630 Because the file won't exist until after you start Alpine, you must <EM>first</EM>
26631 start Alpine and <EM>then</EM> run the &quot;cat&quot; command.
26632 You may be tempted to use &quot;tail -f filename&quot; to view the new
26633 mail log.
26634 However, the common implementations of the tail command will not do what you
26635 are hoping.
26637 The width of the messages produced for the FIFO may be altered with the
26638 <A HREF="h_config_newmailwidth"><!--#echo var="VAR_newmail-window-width"--></A> option.
26640 On some systems, fifos may only be created in a local filesystem.
26641 In other words, they may not be in NFS filesystems.
26642 This requirement is not universal.
26643 If the system you are using supports it, it should work.
26644 (It is often the case that your home directory is in an NFS filesystem.
26645 If that is the case, you might try using a file in the &quot;/tmp&quot;
26646 filesystem, which is usually a local filesytem.)
26647 Even when it is possible to use an NFS-mounted filesystem as a place to name
26648 the fifo (for example, your home directory), it will still be the case that
26649 the reader (probably the &quot;cat&quot; command) and the
26650 writer (Alpine) of the fifo must be running on the same system.
26652 <UL>   
26653 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26654 </UL><P>
26655 &lt;End of help on this topic&gt;
26656 </BODY>
26657 </HTML>
26658 ====== h_config_newmailwidth =====
26659 <HTML>
26660 <HEADER>
26661 <TITLE>OPTION: <!--#echo var="VAR_newmail-window-width"--></TITLE>
26662 </HEADER>
26663 <BODY>
26664 <H1>OPTION: <!--#echo var="VAR_newmail-window-width"--></H1>
26666 For UNIX Alpine, this option is only useful if you have turned on the
26667 <A HREF="h_config_fifopath">NewMail FIFO Path</A> option.
26668 That option causes new mail messages to be sent to a fifo file.
26669 Those messages will be 80 characters wide by default.
26670 You can change the width of those messages by changing this option.
26671 For example, if you are reading those messages in another window you might
26672 want to set this width to the width of that other window.
26674 If you are using PC-Alpine, it has an option in the Config menu to turn
26675 on the &quot;New Mail Window&quot;.
26676 This present option also controls the width of that window.
26678 <UL>   
26679 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26680 </UL><P>
26681 &lt;End of help on this topic&gt;
26682 </BODY>
26683 </HTML>
26684 ====== h_config_mailcheck =====
26685 <HTML>
26686 <HEADER>
26687 <TITLE>OPTION: <!--#echo var="VAR_mail-check-interval"--></TITLE>
26688 </HEADER>
26689 <BODY>
26690 <H1>OPTION: <!--#echo var="VAR_mail-check-interval"--></H1>
26692 This option specifies, in seconds,
26693 how often Alpine will check for new mail.
26694 If set to zero, new-mail checking is disabled.
26695 (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
26696 current message is the last message of the folder.)
26697 There is a minimum value for this option, normally 15 seconds.
26698 The default value is normally 150 seconds.
26699 The higher you set this option, the easier it is on the server.
26701 There are some situations where automatic new-mail checking does not work.
26702 See the discussion about new-mail checking in
26703 <A HREF="h_config_reopen_rule">&quot;<!--#echo var="VAR_folder-reopen-rule"-->&quot;</A>.
26705 The new-mail checking will not happen exactly at the frequency that you specify.
26706 For example, Alpine may elect to defer a non-INBOX mail check if you
26707 are busy typing.
26708 Or, it may check more frequently than you have specified if that is
26709 thought to be necessary to keep the server from closing the connection
26710 to the folder due to inactivity.
26711 If Alpine checks for new mail as a side effect of another command, it will reset
26712 the timer, so that new-mail checking may seem to happen irregularly instead of
26713 every X seconds like clockwork.
26715 If you are anxious to know about new mail as soon as possible, set the check
26716 interval low, and you'll know about the new mail by approximately
26717 that amount of time after it arrives.
26718 If you aren't so worried about knowing right away, set this option to a
26719 higher value.
26720 That will save the server some processing time and may save you some of
26721 the time you spend waiting for new-mail checks to happen if you are
26722 dealing with a slow server or slow network connection.
26724 If you suspect that new-mail checking is causing slow downs for you,
26725 you may want to look into the options
26726 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>,
26727 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A> and
26728 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A>,
26729 which refine when mail checking is done.
26731 If the mailbox being checked uses a <A HREF="h_maildrop">Mail Drop</A> then
26732 there is a minimum time
26733 (<A HREF="h_config_maildropcheck">&quot;<!--#echo var="VAR_maildrop-check-minimum"-->&quot;</A>)
26734 between new-mail checks.
26735 Because of this minimum you may notice that new mail does not
26736 appear promptly when you expect it.
26737 The reason for this is to protect the server from over-zealous opening and
26738 closing of the Mail Drop folder, since that is a costly operation.
26740 <UL>   
26741 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26742 </UL><P>
26743 &lt;End of help on this topic&gt;
26744 </BODY>
26745 </HTML>
26746 ====== h_config_quell_checks_comp =====
26747 <HTML>
26748 <HEAD>
26749 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></TITLE>
26750 </HEAD>
26751 <BODY>
26752 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"--></H1>
26754 This option is closely related to the
26755 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26756 option, the
26757 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26758 <A HREF="h_config_quell_checks_comp_inbox">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;</A>.
26760 If this option is set, then the normal new-mail checking that happens
26761 while you are composing will not happen for folders other than your
26762 INBOX (which depends on the setting
26763 of &quot;<!--#echo var="FEAT_quell-mailchecks-composing-inbox"-->&quot;).
26765 You might want to set this option if you are experiencing delays while
26766 composing that you think might be related to the speed of the new-mail
26767 checks.
26769 Even with this option turned on, an occasional new-mail check may be done
26770 in order to keep the server from killing the connection to the folder.
26771 For example, IMAP servers may remove a connection to a folder if there
26772 has been no activity on the connection for 30 minutes or more.
26773 Instead of letting that happen, Alpine will check for new mail before the
26774 30 minutes is up even though you have turned on this feature to quell
26775 those checks.
26777 Besides new-mail checks, checkpoint operations on the folders
26778 will also be quelled when you set this option.
26779 The purpose of checkpointing is to write the changes to a folder out to
26780 disk periodically in order to avoid losing those changes when system or
26781 software problems occur.
26782 New-mail checking and checkpointing while you are not composing are not
26783 affected by this option.
26786 &lt;End of help on this topic&gt;
26787 </BODY>
26788 </HTML>
26789 ====== h_config_quell_checks_comp_inbox =====
26790 <HTML>
26791 <HEAD>
26792 <TITLE>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></TITLE>
26793 </HEAD>
26794 <BODY>
26795 <H1>FEATURE: <!--#echo var="FEAT_quell-mailchecks-composing-inbox"--></H1>
26797 This option is closely related to the
26798 <A HREF="h_config_mailcheck">&quot;<!--#echo var="VAR_mail-check-interval"-->&quot;</A>
26799 option, the
26800 <A HREF="h_config_mailchecknoncurr">&quot;<!--#echo var="VAR_mail-check-interval-noncurrent"-->&quot;</A> option, and
26801 <A HREF="h_config_quell_checks_comp">&quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot;</A>.
26803 If this option is set, then the normal new-mail checking that happens
26804 while you are composing will not happen for your INBOX.
26805 Checking of other folders is controlled in a similar way with the
26806 &quot;<!--#echo var="FEAT_quell-mailchecks-composing-except-inbox"-->&quot; option.
26808 You might want to set this option if you are experiencing delays while
26809 composing that you think might be related to the speed of the new-mail
26810 checks.
26812 Even with this option turned on, an occasional new-mail check may be done
26813 in order to keep the server from killing the connection to the folder.
26814 For example, IMAP servers may remove a connection to a folder if there
26815 has been no activity on the connection for 30 minutes or more.
26816 Instead of letting that happen, Alpine will check for new mail before the
26817 30 minutes is up even though you have turned on this feature to quell
26818 those checks.
26820 Besides new-mail checks, checkpoint operations on the INBOX
26821 will also be quelled when you set this option.
26822 The purpose of checkpointing is to write the changes to a folder out to
26823 disk periodically in order to avoid losing those changes when system or
26824 software problems occur.
26825 New-mail checking and checkpointing while you are not composing are not
26826 affected by this option.
26828 &lt;End of help on this topic&gt;
26829 </BODY>
26830 </HTML>
26831 ====== h_config_maildropcheck =====
26832 <HTML>
26833 <HEADER>
26834 <TITLE>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></TITLE>
26835 </HEADER>
26836 <BODY>
26837 <H1>OPTION: <!--#echo var="VAR_maildrop-check-minimum"--></H1>
26839 New-mail checking for a
26840 <A HREF="h_maildrop">Mail Drop</A> is a little different from new
26841 mail checking for a regular folder.
26842 One of the differences is that the connection to the Mail Drop is not
26843 kept open and so the cost of checking
26844 (delay for you and additional load for the server) may be significant.
26845 Because of this additional cost we set a minimum time that
26846 must pass between checks.
26847 This minimum only applies to the automatic checking done by Alpine.
26848 If you force a check by typing ^L (Ctrl-L) or by typing the Next command when you are
26849 at the end of a folder index, then the check is done right away.
26851 This option specifies, in seconds, the <EM>minimum</EM> time between Mail Drop
26852 new-mail checks.
26853 You may want to set this minimum high in order to avoid experiencing some
26854 of the delays associated with the checks.
26855 Note that the time between checks is still controlled by the regular
26856 <A HREF="h_config_mailcheck"><!--#echo var="VAR_mail-check-interval"--></A> option.
26857 When Alpine is about to do an automatic check for new mail (because
26858 the <!--#echo var="VAR_mail-check-interval"--> has expired) then if the time since the last
26859 new-mail check
26860 of any open Mail Drops has been greater than the <!--#echo var="VAR_maildrop-check-minimum"-->,
26861 the Mail Drop is checked for new mail as well.
26862 Therefore, it is only useful to set this option to a value that is higher
26863 than the <!--#echo var="VAR_mail-check-interval"-->.
26865 If this option is set to zero, automatic Mail Drop new-mail
26866 checking is disabled.
26867 There is a minimum value, normally 60 seconds.
26868 The default value is normally 60 seconds as well.
26869 This applies to the INBOX and to the currently open folder if that is
26870 different from the INBOX.
26873 <UL>   
26874 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26875 </UL><P>
26876 &lt;End of help on this topic&gt;
26877 </BODY>
26878 </HTML>
26879 ====== h_config_nntprange =====
26880 <HTML>
26881 <HEADER>
26882 <TITLE>OPTION: <!--#echo var="VAR_nntp-range"--></TITLE>
26883 </HEADER>
26884 <BODY>
26885 <H1>OPTION: <!--#echo var="VAR_nntp-range"--></H1>
26887 This option applies only to newsgroups accessed using the NNTP protocol.
26888 It does not, for example,
26889 apply to newsgroups accessed using an IMAP-to-NNTP proxy.
26892 When you open a connection to a News server using the NNTP protocol, you
26893 normally have access to all of the articles in each newsgroup.
26894 If a server keeps a large backlog of messages it may speed performance
26895 some to restrict attention to only the newer messages in a group.
26896 This option allows you to set how many article numbers should be checked
26897 when opening a newsgroup.
26898 You can think of &quot;<!--#echo var="VAR_nntp-range"-->&quot; as specifying the maximum number
26899 of messages you ever want to see.
26900 For example, if you only ever wanted to look at the last 500 messages in each
26901 newsgroup you could set this option to 500.
26902 In actuality, it isn't quite that.
26903 Instead, for performance reasons, it specifies the range of article
26904 numbers to be checked, beginning
26905 with the highest numbered article and going backwards from there.
26906 If there are messages that have been canceled or deleted
26907 their article numbers are still counted as part of the range.
26909 So, more precisely, setting the &quot;<!--#echo var="VAR_nntp-range"-->&quot; will cause article
26910 numbers
26911 <P><CENTER>last_article_number - <!--#echo var="VAR_nntp-range"--> + 1 through last_article_number</CENTER>
26913 to be considered when reading a newsgroup.
26914 The number of messages that show up in your index will be less than or equal
26915 to the value of &quot;<!--#echo var="VAR_nntp-range"-->&quot;.
26918 The purpose of this option is simply to speed up access when reading news.
26919 The speedup comes because Alpine can ignore all but the last <!--#echo var="VAR_nntp-range"--> article
26920 numbers, and can avoid downloading any information about the ignored articles.
26921 There is a cost you pay for this speedup.
26922 That cost is that there is no way for you to see those ignored articles.
26923 The articles that come before the range you specify are invisible to you and
26924 to Alpine, as if they did not exist at all.
26925 There is no way to see those messages using, for example, an unexclude command
26926 or something similar.
26927 The only way to see those articles is to set this option high enough (or
26928 set it to zero) and then to reopen the newsgroup.
26931 If this option is set to 0 (which is also the default),
26932 then the range is unlimited.
26933 This option applies globally to all NNTP servers and to all newsgroups
26934 on those servers.
26935 There is no way to set different values for different newsgroups or servers.
26938 <UL>   
26939 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26940 </UL><P>
26941 &lt;End of help on this topic&gt;
26942 </BODY>
26943 </HTML>
26944 ====== h_config_news_active =====
26945 <html>
26946 <header>
26947 <title>OPTION: <!--#echo var="VAR_news-active-file-path"--></title>
26948 </header>
26949 <body>
26950 <h1>OPTION: <!--#echo var="VAR_news-active-file-path"--></h1>
26952 This option tells Alpine where to look for the "active file" for newsgroups
26953 when accessing news locally, rather than via NNTP.  The default path is
26954 usually "/usr/lib/news/active".<p>
26955 <UL>   
26956 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26957 </UL><P>
26958 &lt;End of help on this topic&gt;
26959 </body>
26960 </html>
26961 ====== h_config_news_spool =====
26962 <html>
26963 <header>
26964 <title>OPTION: <!--#echo var="VAR_news-spool-directory"--></title>
26965 </header>
26966 <body>
26967 <h1>OPTION: <!--#echo var="VAR_news-spool-directory"--></h1>
26969 This option tells Alpine where to look for the "news spool" for newsgroups
26970 when accessing news locally, rather than via NNTP.  The default path is
26971 usually "/var/spool/news".<p>
26972 <UL>   
26973 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26974 </UL><P>
26975 &lt;End of help on this topic&gt;
26976 </body>
26977 </html>
26978 ====== h_config_image_viewer =====
26979 <html>
26980 <header>
26981 <title>OPTION: <!--#echo var="VAR_image-viewer"--></title>
26982 </header>
26983 <body>
26984 <h1>OPTION: <!--#echo var="VAR_image-viewer"--></h1>
26985 <body>
26986 This option specifies the program Alpine should call to view MIME
26987 attachments of type IMAGE (e.g. GIF or TIFF).  The Image Viewer setting is
26988 no longer needed, but remains for backward compatibility.  The more
26989 general method for associating external printing and viewing programs with
26990 specific MIME data types is to use the system's (or your personal)
26991 "mailcap" configuration file.<p>
26992 <UL>   
26993 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
26994 </UL><P>
26995 &lt;End of help on this topic&gt;
26996 </body>
26997 </html>
26998 ====== h_config_domain_name =====
26999 <HTML>
27000 <HEAD>
27001 <TITLE>OPTION: <!--#echo var="VAR_use-only-domain-name"--></TITLE>
27002 </HEAD>
27003 <BODY>
27004 <H1>OPTION: <!--#echo var="VAR_use-only-domain-name"--></H1>
27006 This option is used only if the 
27007 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> option is <B>not</B> 
27008 set.  If set to &quot;Yes&quot; (and <!--#echo var="VAR_user-domain"--> is not used), then Alpine 
27009 strips the hostname from your return (&quot;From&quot;) address and when 
27010 completing unqualified addresses that you enter into the composer.
27012 If you set this, see also the <A HREF="h_config_quell_local_lookup">
27013 &quot;<!--#echo var="FEAT_quell-user-lookup-in-passwd-file"-->&quot;</A> feature.
27016 <!--chtml if pinemode="os_windows"-->
27017 <P>This option is not applicable to PC-Alpine.
27018 <!--chtml else-->
27020 <!--chtml endif-->
27021 <UL>
27022 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27023 </UL>
27025 &lt;End of help on this topic&gt;
27026 </BODY>
27027 </HTML>
27028 ====== h_config_prune_date =====
27029 <HTML>
27030 <HEAD>
27031 <TITLE>OPTION: Last-Time-Prune Question</TITLE>
27032 </HEAD>
27033 <BODY>
27034 <H1>OPTION: Last-Time-Prune Question</H1>
27036 This value records the last time you were asked about deleting old
27037 sent-mail.
27038 It is set automatically by Alpine at the beginning of each month.
27039 In the past, if you wished to suppress the monthly sent-mail
27040 pruning feature, you could set this to a date in the future.
27041 This value is relative to the year 1900, so 
27042 to set this, for example, to October 2005, use 105.10.
27044 You can still do that if you wish, or you can use the
27045 <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option, which is probably
27046 a little more convenient to use.
27048 <UL>   
27049 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27050 </UL><P>
27051 &lt;End of help on this topic&gt;
27052 </BODY>
27053 </HTML>
27054 ====== h_config_goto_default =====
27055 <HTML>
27056 <HEAD>
27057 <TITLE>OPTION: <!--#echo var="VAR_goto-default-rule"--></TITLE>
27058 </HEAD>
27059 <BODY>
27060 <H1>OPTION: <!--#echo var="VAR_goto-default-rule"--></H1>
27062 This value affects Alpine's behavior when you use the Goto command.
27063 Alpine's usual behavior has two parts.  If your current folder is
27064 &quot;Inbox&quot;, Alpine will offer the last open folder as the
27065 default.  If the current folder is other than &quot;Inbox&quot;,
27066 &quot;Inbox&quot; is offered as the default.
27069 The available options include:
27071 <DL>
27073  <DT>folder-in-first-collection</DT>
27075  <DD> Alpine will offer the most recently visited folder in the default
27076 collection found in the &quot;Collection List&quot; screen as the default.
27077 </DD>
27079  <DT> inbox-or-folder-in-first-collection</DT>
27081  <DD> If the current folder is &quot;Inbox&quot;,
27082 Alpine will offer the most recently visited folder in the
27083 default collection found in the &quot;Collection List&quot; screen.
27084 If the current folder is other than &quot;Inbox&quot;,
27085 &quot;Inbox&quot; is offered as the default.
27086 </DD>
27088  <DT> inbox-or-folder-in-recent-collection</DT>
27090  <DD> This is Alpine's default behavior.
27091 If the current folder is &quot;Inbox&quot;,
27092 Alpine will offer the last open
27093 folder as the default.
27094 If the current folder is other than &quot;Inbox&quot;,
27095 &quot;Inbox&quot; is offered as the default.
27096 </DD>
27098  <DT> first-collection-with-inbox-default</DT>
27100  <DD> Instead of offering the most recently visited folder in the default
27101 collection, the default collection is offered but with &quot;Inbox&quot; as
27102 the default folder.
27103 If you type in a folder name it will be in the default collection.
27104 If you simply accept the default, however, your &quot;Inbox&quot; will be opened.
27105 </DD>
27107  <DT> most-recent-folder</DT>
27109  <DD> The last accepted value simply causes the most recently opened
27110 folder to be offered as the default regardless of the currently opened
27111 folder.
27112 </DD>
27113 </DL>
27116 NOTE: The default while a newsgroup is open remains the same; the last
27117 open newsgroup.
27120 <UL>   
27121 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27122 </UL><P>
27123 &lt;End of help on this topic&gt;
27124 </BODY>
27125 </HTML>
27126 ====== h_config_thread_lastreply_char =====
27127 <HTML>
27128 <HEAD>
27129 <TITLE>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></TITLE>
27130 </HEAD>
27131 <BODY>
27132 <H1>OPTION: <!--#echo var="VAR_threading-lastreply-character"--></H1>
27134 The <!--#echo var="VAR_threading-lastreply-character"--> option has a small effect on the MESSAGE
27135 INDEX display when using a
27136 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
27137 of &quot;show-thread-structure&quot;, &quot;mutt-like&quot;, or
27138 &quot;show-structure-in-from&quot;; and sorting by Threads or OrderedSubject.
27139 The value of this option is a single character.
27140 This character is used instead of the vertical line character when there are
27141 no more replies directly to the parent of the current message.
27142 It can be used to &quot;round-off&quot; the bottom of the vertical line
27143 by setting it to a character such as a backslash (&#92;) or
27144 a backquote (&#96;).
27145 The default value of this option is the backslash character (&#92;).
27146 This option may not be set to the Empty Value.
27147 In that case, the default will be used instead.
27150 <UL>   
27151 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27152 </UL><P>
27153 &lt;End of help on this topic&gt;
27154 </BODY>
27155 </HTML>
27156 ====== h_config_thread_indicator_char =====
27157 <HTML>
27158 <HEAD>
27159 <TITLE>OPTION: <!--#echo var="VAR_threading-indicator-character"--></TITLE>
27160 </HEAD>
27161 <BODY>
27162 <H1>OPTION: <!--#echo var="VAR_threading-indicator-character"--></H1>
27164 The <!--#echo var="VAR_threading-indicator-character"--> option has a small effect on the MESSAGE
27165 INDEX display when using a
27166 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
27167 than &quot;none&quot; and sorting by Threads or OrderedSubject.
27168 The value of this option is a single character.
27169 This character is used to indicate that part of a thread (a conversation) is
27170 hidden beneath a message.
27171 The message could be expanded
27172 if desired with the &quot;/&quot; Collapse/Expand command.
27173 By default, the value of this option is the greater than sign (&gt;).
27175 If this option is set to the Empty Value, then the column (and the following
27176 blank column) will be deleted from the display.
27179 This option is closely related to the
27180 <A HREF="h_config_thread_exp_char"><!--#echo var="VAR_threading-expanded-character"--></A> option.
27181 Another similar option that affects the thread display is the
27182 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
27185 <UL>   
27186 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27187 </UL><P>
27188 &lt;End of help on this topic&gt;
27189 </BODY>
27190 </HTML>
27191 ====== h_config_thread_exp_char =====
27192 <HTML>
27193 <HEAD>
27194 <TITLE>OPTION: <!--#echo var="VAR_threading-expanded-character"--></TITLE>
27195 </HEAD>
27196 <BODY>
27197 <H1>OPTION: <!--#echo var="VAR_threading-expanded-character"--></H1>
27199 The <!--#echo var="VAR_threading-expanded-character"--> option has a small effect on the MESSAGE
27200 INDEX display when using a
27201 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A> other
27202 than &quot;none&quot;.
27203 The value of this option is a single character.
27204 This character is used to indicate that part of a thread has been expanded
27205 and could be collapsed if desired with
27206 the &quot;/&quot; Collapse/Expand command.
27207 By default, the value of this option is a dot (.).
27209 If this option is set to the Empty Value, then the column (and the following
27210 blank column) will be deleted from the display.
27213 This option is closely related to the
27214 <A HREF="h_config_thread_indicator_char"><!--#echo var="VAR_threading-indicator-character"--></A> option.
27215 Another similar option that affects the thread display is the
27216 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A> option.
27219 <UL>   
27220 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27221 </UL><P>
27222 &lt;End of help on this topic&gt;
27223 </BODY>
27224 </HTML>
27225 ====== h_config_thread_index_style =====
27226 <HTML>
27227 <HEAD>
27228 <TITLE>OPTION: <!--#echo var="VAR_threading-index-style"--></TITLE>
27229 </HEAD>
27230 <BODY>
27231 <H1>OPTION: <!--#echo var="VAR_threading-index-style"--></H1>
27233 When a folder is sorted by Threads or OrderedSubject,
27234 this option will affect the INDEX displays.
27237 The possible values for this option are:
27239 <DL>
27240 <DT>regular-index-with-expanded-threads</DT>
27241 <DD>This is the default display.
27242 If the configuration option
27243 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
27244 is set to something other than &quot;none&quot;, then this setting
27245 will cause Alpine to start off with a MESSAGE INDEX with all of
27246 the threads expanded.
27247 That is, each message will have a line in the MESSAGE INDEX display.
27248 The Collapse/Expand command (/) may be used to manually collapse or
27249 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
27251 This setting affects the display when the folder is first threaded.
27252 The collapsed state may also be re-initialized by re-sorting the folder manually
27253 using the SortIndex command ($).
27254 After re-sorting the threads will once again all be expanded, even if you
27255 have previously collapsed some of them.
27257 If &quot;<!--#echo var="VAR_threading-display-style"-->&quot; is set to &quot;none&quot;, then
27258 the display will be the regular default Alpine MESSAGE INDEX, but sorted
27259 in a different order.
27260 </DD>
27262 <DT>regular-index-with-collapsed-threads</DT>
27263 <DD>If the configuration option
27264 <A HREF="h_config_thread_disp_style">&quot;<!--#echo var="VAR_threading-display-style"-->&quot;</A>
27265 is set to something other than &quot;none&quot;, then this setting
27266 will cause Alpine to start out with all of the threads collapsed instead of
27267 starting out with all of the threads expanded.
27268 The Collapse/Expand command (/) may be used to manually collapse or
27269 expand a thread or subthread (see also <A HREF="h_config_slash_coll_entire">&quot;<!--#echo var="FEAT_slash-collapses-entire-thread"-->&quot;</A>).
27271 This setting affects the display when the folder is first threaded.
27272 The collapsed state may also be re-initialized by re-sorting the folder manually
27273 using the SortIndex command ($).
27274 After re-sorting the threads will once again all be collapsed, even if you
27275 have previously expanded some of them.
27276 </DD>
27278 <DT>separate-index-screen-always</DT>
27279 <DD>With this setting and the next, you will see an index of threads
27280 instead of an
27281 index of messages, provided you have sorted by Threads or OrderedSubject.
27283 The THREAD INDEX contains a '*' in the first column if any message in the thread
27284 is marked Important.
27285 If not, it contains a '+' if any message in the thread is to you.
27286 The second column is blank. The third column contains a 'D' if all of the
27287 messages in the thread are deleted.
27288 Otherwise, it contains an 'N' if any of the messages in the thread are New.
27290 When you view a particular thread from the THREAD INDEX you will be
27291 in the MESSAGE INDEX display
27292 but the index will only contain messages from the thread you are viewing.
27293 </DD>
27295 <DT>separate-index-screen-except-for-single-messages</DT>
27296 <DD>This is very similar to the option above.
27297 When you are in the THREAD INDEX, one of the available commands
27298 is &quot;ViewThd&quot;.
27299 With the setting &quot;separate-index-screen-always&quot; (the option above)
27300 when you view a particular thread you will be in the
27301 MESSAGE INDEX display and the index will only contain messages from
27302 the thread you are viewing.
27303 If the thread you are viewing consists of a single message, the MESSAGE INDEX
27304 will be an index with only one message in it.
27305 If you use this &quot;separate-index-screen-except-for-single-messages&quot;
27306 setting instead, then that index that contains a single message
27307 will be skipped and you will go directly from the THREAD INDEX into the
27308 MESSAGE TEXT screen.
27309 </DD>
27311 </DL>
27314 <UL>   
27315 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27316 </UL><P>
27317 &lt;End of help on this topic&gt;
27318 </BODY>
27319 </HTML>
27320 ====== h_config_thread_disp_style =====
27321 <HTML>
27322 <HEAD>
27323 <TITLE>OPTION: <!--#echo var="VAR_threading-display-style"--></TITLE>
27324 </HEAD>
27325 <BODY>
27326 <H1>OPTION: <!--#echo var="VAR_threading-display-style"--></H1>
27328 When a folder is sorted by Threads or OrderedSubject,
27329 this option will affect the MESSAGE INDEX display.
27330 By default, Alpine will display the MESSAGE INDEX in the
27331 &quot;show-thread-structure&quot; style if a folder is sorted
27332 by Threads or OrderedSubject.
27335 The possible values for this option are:
27337 <DL>
27338 <DT>none</DT>
27339 <DD>Regular index display.
27340 The same index line as would be displayed without threading is used.
27341 The only difference will be in the order of the messages.
27342 </DD>
27344 <DT>show-thread-structure</DT>
27345 <DD>Threaded Subjects will be indented and vertical bars and horizontal
27346 lines will be added to make it easier to see the relationships among
27347 the messages in a thread (a conversation).
27348 </DD>
27350 <DT>mutt-like</DT>
27351 <DD>This is the same as the option above except that the Subject
27352 is suppressed (is blank) if it matches the previous Subject in the thread.
27353 The name comes from the email client <A HREF="http://www.mutt.org/">Mutt</A>.
27354 Here is an example of what a mutt-like index might look like.
27355 In this example, the first column represents the message number, the
27356 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
27357 is set to &quot;regular-index-with-expanded-threads&quot;, and the
27358 <A HREF="h_config_thread_lastreply_char"><!--#echo var="VAR_threading-lastreply-character"--></A>
27359 is set to a backslash:
27360 <PRE>
27361 &nbsp;&nbsp;&nbsp;1    Some topic
27362 &nbsp;&nbsp;&nbsp;&nbsp;2  . Subject           original message in thread
27363 &nbsp;&nbsp;&nbsp;&nbsp;3    |->               reply to 2
27364 &nbsp;&nbsp;&nbsp;&nbsp;4  . |->               another reply to 2
27365 &nbsp;&nbsp;&nbsp;&nbsp;5  . | &#92;->             reply to 4
27366 &nbsp;&nbsp;&nbsp;&nbsp;6  . |   &#92;->           reply to 5
27367 &nbsp;&nbsp;&nbsp;&nbsp;7    |     &#92;->         reply to 6
27368 &nbsp;&nbsp;&nbsp;&nbsp;8    |->               another reply to 2
27369 &nbsp;&nbsp;&nbsp;&nbsp;9  . |->New subject    another reply to 2 but with a New subject
27370 &nbsp;&nbsp;&nbsp;10    | |->             reply to 9
27371 &nbsp;&nbsp;&nbsp;11    | &#92;->             another reply to 9
27372 &nbsp;&nbsp;&nbsp;12    |   &#92;->           reply to 11
27373 &nbsp;&nbsp;&nbsp;13    &#92;->               final reply to 2
27374 &nbsp;&nbsp;&nbsp;14    Next topic
27375 </PRE>
27376 </DD>
27378 <DT>indent-subject-1</DT>
27379 <DD>Threaded Subjects will be indented one space per level of the conversation.
27380 The bars and lines that show up in the show-thread-structure display will
27381 not be there with this style.
27382 </DD>
27384 <DT>indent-subject-2</DT>
27385 <DD>Same as above but indent two spaces per level instead of one space.
27386 </DD>
27388 <DT>indent-from-1</DT>
27389 <DD>Similar to indent-subject-1, except that instead of indenting the
27390 Subject field one space the From field of a thread will be indented one
27391 space per level of the conversation.
27392 </DD>
27394 <DT>indent-from-2</DT>
27395 <DD>Same as above but indent two spaces per level instead of one space.
27396 </DD>
27398 <DT>show-structure-in-from</DT>
27399 <DD>The structure of the thread is illustrated with indenting, vertical bars,
27400 and horizontal lines just like with the show-thread-structure option, but
27401 the From field is used to show the relationships instead of the Subject field. 
27402 </DD>
27404 </DL>
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_pruning_rule =====
27414 <HTML>
27415 <HEAD>
27416 <TITLE>OPTION: <!--#echo var="VAR_pruning-rule"--></TITLE>
27417 </HEAD>
27418 <BODY>
27419 <H1>OPTION: <!--#echo var="VAR_pruning-rule"--></H1>
27421 By default, Alpine will ask at the beginning of each month whether or not
27422 you want to rename your sent-mail folder to a name like sent-mail-month-year.
27423 (See the feature <A HREF="h_config_prune_uses_iso"><!--#echo var="FEAT_prune-uses-yyyy-mm"--></A> to
27424 change the format of the folder to sent-mail-yyyy-mm.)
27425 It will also ask whether you would like to delete old sent-mail folders.
27426 If you have defined
27427 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>
27429 <A HREF="h_config_pruned_folders"><!--#echo var="VAR_pruned-folders"--></A>
27430 Alpine will also ask about pruning those folders.
27433 With this option you may provide an automatic answer to these questions.
27434 The default value is to ask you what you'd like to do.
27437 The six possible values for this option are:
27439 <DL>
27440 <DT>ask about rename, ask about deleting</DT>
27441 <DD>This is the default.
27442 Alpine will ask whether you want to rename the folders and whether you
27443 want to delete each of the old folders.
27444 </DD>
27446 <DT>ask about rename, don't delete</DT>
27447 <DD>Alpine will ask whether you want to rename the folders, but won't
27448 ask about or delete old folders.
27449 </DD>
27451 <DT>always rename, ask about deleting</DT>
27452 <DD>This means you want to always answer yes and have Alpine automatically
27453 rename the folder if possible.
27454 You will also be asked about deleting old folders.
27455 </DD>
27457 <DT>always rename, don't delete</DT>
27458 <DD>This means you want to always answer yes and have Alpine automatically
27459 rename the folder if possible.
27460 There will be no deleting of old folders.
27461 </DD>
27463 <DT>don't rename, ask about deleting</DT>
27464 <DD>This means you want to always answer no.
27465 Alpine will not rename the folder.
27466 You will be asked about deleting old folders.
27467 </DD>
27469 <DT>don't rename, don't delete</DT>
27470 <DD>This means you want to always answer no.
27471 Alpine will not rename the folder.
27472 There will be no deleting of old folders, either.
27473 </DD>
27474 </DL>
27477 <UL>   
27478 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27479 </UL><P>
27480 &lt;End of help on this topic&gt;
27481 </BODY>
27482 </HTML>
27483 ====== h_config_reopen_rule =====
27484 <HTML>
27485 <HEAD>
27486 <TITLE>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></TITLE>
27487 </HEAD>
27488 <BODY>
27489 <H1>OPTION: <!--#echo var="VAR_folder-reopen-rule"--></H1>
27491 Alpine normally checks for new mail in the currently open folder
27492 and in the INBOX every few <A HREF="h_config_mailcheck">minutes</A>.
27495 There are some situations where automatic new-mail checking does not work.
27496 For example, if a mail folder is opened using the POP protocol or a newsgroup
27497 is being read using the NNTP protocol, then new-mail checking is disabled.
27500 It may be possible to check for new mail in these cases by reopening the
27501 folder.
27502 Alpine does not do this for you automatically, but you may do the commands
27503 manually to cause this to happen.
27504 You reopen by going back to the folder list screen from the message
27505 index screen with the &quot;&lt;&quot; command,
27506 and then going back into the message index screen with
27507 the &quot;&gt;&quot; command.
27508 (Actually, any method you would normally use to open a folder will work the
27509 same as the &quot;&lt;&quot; followed by &quot;&gt;&quot; method.
27510 For example, the GoTo Folder command will work, or you may use L to go to the
27511 Folder List screen and Carriage Return to reopen the folder.)
27514 There are some cases where Alpine knows that reopening the folder should
27515 be useful as a way to discover new mail.
27516 At the time of this writing, connections made using the POP protocol,
27517 news reading using the NNTP protocol, local news reading, and local
27518 ReadOnly folders that are in the traditional UNIX or the MMDF format all
27519 fall into this category.
27520 There are other cases where it <EM>may</EM> be a way to discover new mail, but Alpine
27521 has no way of knowing, so it might also just be an exercise in futility.
27522 All remote, ReadOnly folders other than those listed just above fall into this
27523 category.
27524 The setting of this option together with the type of folder
27525 controls how Alpine will react to the apparent attempt to reopen a folder.
27528 If you don't reopen, then you will just be back in
27529 the message index with no change.
27530 You left the index and came back, but the folder remained &quot;open&quot;
27531 the whole time.
27532 However, if you do reopen the folder, the folder is closed and then reopened.
27533 In this case, the current state of the open folder is lost.
27534 The New status, Important and Answered flags,
27535 selected state, Zoom state, collapsed or expanded state of threads,
27536 current message number,
27537 and any other temporary state is all lost when the reopen happens.
27538 For POP folders (but not NNTP newsgroups) the Deleted flags are also lost.
27541 In the possibilities listed below, the text says &quot;POP/NNTP&quot; in
27542 several places.
27543 That really implies the case where Alpine knows it is a good way to discover
27544 new mail, which is more than just POP and NNTP, but POP and NNTP are
27545 the cases of most interest.
27546 This option probably has more possible values than it deserves. They are:
27548 <DL>
27549 <DT>Always reopen</DT>
27550 <DD>Alpine will not ask whether you want to reopen but will just do the reopen
27551 whenever you type a command that implies a reopen, regardless of the
27552 access method.
27553 In other words, it is assumed you would always answer Yes if asked
27554 about reopening.
27555 </DD>
27557 <DT>Yes for POP/NNTP, Ask about other remote [Yes]</DT>
27558 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27559 will ask you whether to reopen other remote folders,
27560 with a default answer of Yes.
27561 </DD>
27563 <DT>Yes for POP/NNTP, Ask about other remote [No]</DT>
27564 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, but
27565 will ask you whether to reopen other remote folders,
27566 with a default answer of No.
27567 </DD>
27569 <DT>Yes for POP/NNTP, No for other remote</DT>
27570 <DD>Alpine will assume a Yes answer if the access method is POP or NNTP, and
27571 will assume a No answer for all other remote folders.
27572 </DD>
27574 <DT>Always ask [Yes]</DT>
27575 <DD>Alpine will not differentiate based on access method.
27576 It will always ask for all remote folders, with a default answer of Yes.
27577 </DD>
27579 <DT>Always ask [No]</DT>
27580 <DD>Alpine will not differentiate based on access method.
27581 It will always ask for all remote folders, with a default answer of No.
27582 </DD>
27584 <DT>Ask about POP/NNTP [Yes], No for other remote</DT>
27585 <DD>Alpine will ask if the access method is POP or NNTP, with a default answer
27586 of Yes.
27587 It will never attempt to reopen other remote folders.
27588 </DD>
27590 <DT>Ask about POP/NNTP [No], No for other remote</DT>
27591 <DD>This is the default.
27592 Alpine will ask if the access method is POP or NNTP, with a default answer
27593 of No.
27594 It will never attempt to reopen other remote folders.
27595 </DD>
27597 <DT>Never reopen</DT>
27598 <DD>Alpine will never attempt to reopen already open folders.
27599 </DD>
27600 </DL>
27603 Remember, wherever it says POP or NNTP above it really means POP or NNTP or
27604 any of the other situations where it is likely that reopening is a good way
27605 to discover new mail.
27608 There is an alternative that may be of useful in some situations.
27609 Instead of manually checking for new mail you can set up a
27610 <A HREF="h_maildrop">Mail Drop</A>
27611 and automatically check for new mail.
27614 <UL>   
27615 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27616 </UL><P>
27617 &lt;End of help on this topic&gt;
27618 </BODY>
27619 </HTML>
27620 ====== h_config_inc_startup =====
27621 <HTML>
27622 <HEAD>
27623 <TITLE>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></TITLE>
27624 </HEAD>
27625 <BODY>
27626 <H1>OPTION: <!--#echo var="VAR_incoming-startup-rule"--></H1>
27628 This value affects Alpine's behavior when opening the &quot;INBOX&quot; or 
27629 one of the &quot;INCOMING MESSAGE FOLDERS&quot;.
27630 It determines which message will be the <EM>current message</EM> when
27631 the folder is first opened.
27632 The default value is &quot;first-unseen&quot;.
27635 The seven possible values for this option are:
27637 <DL>
27638 <DT>first-unseen</DT>
27639 <DD>The current message is set to the first
27640 unseen message that has not been marked deleted, or the last message if
27641 all of the messages have been seen previously.
27642 Messages which have not been seen or which have been seen but re-marked
27643 as New are considered unseen messages.
27644 See the note at the bottom of this help about newsgroups.
27645 </DD>
27647 <DT>first-recent</DT>
27648 <DD>Similar to the default, but rather than starting on the first
27649 unseen message Alpine starts on the first <EM>recent</EM> message.
27650 A message is recent if it arrived since the last time the folder was
27651 open.  This value causes the current message to be set to the first
27652 recent message if there is one, otherwise to the last
27653 message in the folder.
27654 </DD>
27656 <DT>first-important</DT>
27657 <DD>This will result in the current message being set to the first
27658 message marked Important (but not Deleted).
27659 If no messages are marked Important, then it will be the last message.
27660 Messages are marked Important by <EM>you</EM>, not by the sender, using
27662 <A HREF="h_common_flag">Flag command</A>.
27663 Or they may be marked Important by an Alpine
27664 <A HREF="h_mainhelp_filtering">Filter</A>
27665 that you have set up.
27666 </DD>
27668 <DT>first-important-or-unseen</DT>
27669 <DD>This selects the first of the first unseen and the first important
27670 messages.
27671 </DD>
27673 <DT>first-important-or-recent</DT>
27674 <DD>This selects the first of the first recent and the first important
27675 messages.
27676 </DD>
27678 <DT>first</DT>
27679 <DD>Simply starts you on the <EM>first</EM> undeleted message in the folder.
27680 If all messages are deleted you start on the last message.
27681 </DD>
27683 <DT>last</DT>
27684 <DD>Simply starts you on the <EM>last</EM> undeleted message in the folder
27685 If all messages are deleted you start on the last message.
27686 </DD>
27687 </DL>
27690 NOTE:  For newsgroups in the incoming collection, &quot;first-unseen&quot; and
27691 &quot;first-recent&quot; are the same and are affected by whether or not the
27692 feature 
27693 <A HREF="h_config_news_uses_recent">&quot;<!--#echo var="FEAT_news-approximates-new-status"-->&quot;</A>
27694 is turned on. 
27695 Also, there is no permanent storage in news for an Important flag.
27696 This means that no messages will be marked Important when a newsgroup is
27697 first opened.
27700 <UL>   
27701 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27702 </UL><P>
27703 &lt;End of help on this topic&gt;
27704 </BODY>
27705 </HTML>
27706 ====== h_config_browser =====
27707 <HTML>
27708 <HEAD>
27709 <TITLE>OPTION: <!--#echo var="VAR_url-viewers"--></TITLE>
27710 </HEAD>
27711 <BODY>
27712 <H1>OPTION: <!--#echo var="VAR_url-viewers"--></H1>
27713 <!--chtml if pinemode="os_windows"-->
27714 PC-Alpine users do not need to enter anything here, unless:<UL>
27715 <LI> they want to override, for use with Alpine, the application defined
27716 in the Windows operating system for handling URLs; or
27717 <LI> they are (planning on) using the same configuration file with 
27718 Unix Alpine.
27719 </UL>
27721 Note that if using a viewer that has a space in its path, you should
27722 use the DOS name for that directory or file. Example:
27723 <PRE>
27724 url-viewer=C:&#92;Progra~1&#92;mozilla&#92;mozilla.exe
27725 </PRE>
27726 <HR><P>
27727 <!--chtml endif-->
27728 This option affects Alpine's handling of URLs that are found in 
27729 messages you read.  Normally, only URLs Alpine can handle directly
27730 are automatically offered for selection in the &quot;Message
27731 Text&quot; screen.  When one or more applications
27732 capable of deciphering URLs on their command line are added here, Alpine
27733 will choose the first available to display URLs it cannot handle directly.
27734 A viewer's availability is based on its being specified with a <B>full
27735 directory path</B> and the evaluation of any optionally supplied
27736 parameters described below.
27739 Additionally, to support various connection methods and applications, each
27740 entry in this list can optionally begin with one or more of
27741 the following special tokens.  The allowed tokens include:
27744 <DL>
27745 <DT>_TEST(<VAR>test-string</VAR>)_</DT>
27746 <DD>
27747 The <VAR>test-string</VAR> is a shell command that Alpine will run to
27748 evaluate a viewer's availability.  The command specified by the test
27749 string is run and if its resulting exit status is non-zero, Alpine will
27750 not consider the associated viewer for use.
27751 </DD>
27753 <DT>_SCHEME(<VAR>scheme-list</VAR>)_</DT>
27754 <DD>
27755 The <VAR>scheme-list</VAR> is a list of one or more (comma-delimited)
27756 URL schemes that are to be used with the associated viewer.  This is
27757 the way to configure Alpine to recognize URLs other than the built-in set.
27759 It can also be used to override Alpine's built-in handlers.
27760 For example, you could specify &quot;news&quot; in the <VAR>scheme-list</VAR>,
27761 and Alpine would use (provided it passed all other criteria) the associated
27762 viewer when it encounterd a URL of the form &quot;news:comp.mail.pine&quot;.
27764 </DD>
27765 </DL>
27768 By default, Alpine will simply append a space character followed by the
27769 selected URL prior to launching the command in your specified SHELL.  You can
27770 optionally specify where in the command the selected URL should appear
27771 by using the &quot;_URL_&quot; token.  All occurrences found in the command
27772 will be replaced with the selected URL before the command is handed
27773 to the shell.  If such replacement occurs, the default appending of the
27774 selected URL does not take place.
27777 NOTE: If the viewer you specify has any command-line arguments,
27778 including the &quot;_URL_&quot; token, you will need to add a
27779 double-quote character before the command path and after the last
27780 argument (see the &quot;lynx&quot; example below).
27783 So, here are some example entries:
27784 <PRE>
27785 url-viewers = _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_  /usr/local/bin/netscape
27786               &quot;/usr/local/bin/lynx _URL_&quot;
27787               C:&#92;BIN&#92;NETSCAPE.BAT
27788 </PRE>
27790 This example shows that for the first viewer in the list to be used
27791 the environment variable &quot;DISPLAY&quot; must be defined.  If it
27792 is, then the path and file &quot;/usr/local/bin/netscape&quot; must exist.  
27793 If neither condition is met,
27794 then the path and file &quot;/usr/local/bin/lynx&quot; must exist.  
27795 If it does, then the &quot;_URL_&quot; token is replaced by the selected URL. 
27796 If the path to &quot;lynx&quot; is invalid,
27797 then the final path and file C:&#92;BIN&#92;NETSCAPE.BAT must exist.  
27798 Note that the last
27799 entry is a DOS/Windows path.  This is one way to support Alpine running
27800 on more than one architecture with the same configuration file.<P>
27802 <!--chtml if pinemode="os_windows"-->
27803 <!--chtml else-->
27804 Note that depending on the type of browser used and the method of 
27805 its invocation (such as whether it will open in a separate window) from
27806 the MESSAGE TEXT screen, the browser may &quot;supplant&quot; 
27807 the MESSAGE TEXT screen, and you will have to quit the browser to return to 
27808 it (for example, when using Lynx; to exit Lynx, use the &quot;Q&quot; command).
27809 In other words, launching the browser from Alpine may make Alpine 
27810 &quot;disappear&quot; (although it is still &quot;running&quot;)
27811 until you close the browser again.<P>  
27812 <UL><LI><A HREF="h_config_browser_xterm">Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27813 environment: for advanced users and  systems administrators</A>
27814 </UL>
27815 <!--chtml endif-->
27816 <P>If you are unsure what browsers are available on your system or how to 
27817 specify them in Alpine's <!--#echo var="VAR_url-viewers"--> option for best usability, contact your 
27818 local computing support staff.
27819 <P><UL>
27820 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27821 </UL>
27823 &lt;End of help on this topic&gt;
27824 </BODY>
27825 </HTML>
27826 ====== h_config_history =====
27827 <HTML>
27828 <HEAD>
27829 <TITLE>OPTION: <!--#echo var="VAR_default-directories"--></TITLE>
27830 </HEAD>
27831 <BODY>
27832 <H1>OPTION: <!--#echo var="VAR_default-directories"--></H1>
27834 This option allows you to input a list of directories that Alpine will offer 
27835 for you to use when you are saving or exporting attachments. This is useful
27836 when navigating to specific directories becomes too tedious, or when you 
27837 need to do this on a daily basis, and want Alpine to remember this on a 
27838 permanent basis.
27840 The list of directories saved here can be accessed using the ^Y and ^V commands
27841 in the save prompt for attachments, or the export command.
27843 <P><UL>
27844 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27845 </UL>
27847 &lt;End of help on this topic&gt;
27848 </BODY>
27849 </HTML>
27850 ====== h_config_browser_xterm =====
27851 <HTML>
27852 <HEAD>
27853 <TITLE><!--#echo var="VAR_url-viewers"--> and X windows applications</TITLE>
27854 </HEAD>
27855 <BODY>
27856 <H1>Defining <!--#echo var="VAR_url-viewers"--> in an X windows 
27857 environment: for advanced users and  systems administrators</H1>
27858 If you are using Alpine with an X-terminal (emulator) and want to define an 
27859 X windows-based application in <!--#echo var="VAR_url-viewers"-->, 
27860 you may want to do so in a manner that causes any <B>already</B> 
27861 invoked viewer application to be used for viewing URLs you select from Alpine 
27862 messages, and a <B>new</B> URL-viewer process to be 
27863 started <B>only</B> if the same application has <B>not already</B> 
27864 been launched -- for one reason, to avoid file-locking contentions among 
27865 multiple invocations of the same URL-viewer application.  
27866 (The example entries set in the help screen for the &quot;<!--#echo var="VAR_url-viewers"-->&quot; 
27867 option does not do this.)  A method of doing that would be:<OL>
27868 <LI> use 
27869 the _TEST(<VAR>test-string</VAR>)_ token in the <B>first</B> entry to 
27870 check (using commands appropriate for your Unix shell
27871 in place of <VAR>test-string</VAR>) for the presence of a 
27872 lockfile created by the URL-viewer application -- which implies that the 
27873 application is already running, though this is not foolproof. 
27874 Following that in the same <!--#echo var="VAR_url-viewers"--> entry, specify the 
27875 application with its appropriate command line option(s) to 
27876 show the URL selected from the Alpine message in an already open window of 
27877 that application, or perhaps in a new window of that application.  
27879 <LI> In the 
27880 <B>second</B> entry for the <!--#echo var="VAR_url-viewers"--> option, specify the same 
27881 application without those command line options, but this time using the 
27882 _TEST(...)_ token to check whether the environment variable &quot;DISPLAY&quot;
27883 is defined.
27884 <LI> If you will be using Alpine (with the same .pinerc file) outside of the X 
27885 windows environment (for instance, using VT-100 terminal emulation), you 
27886 may wish to specify a non-X windows URL-viewer application such as Lynx
27887 as the last entry.
27888 </OL><BR>
27889 How exactly you define your <!--#echo var="VAR_url-viewers"--> entries to do this will depend on 
27890 the command shell, the URL-viewer application(s), and possibly the specific 
27891 version of the latter, you are using.  
27893 Relevant command 
27894 line options for the Netscape browser for showing URLs (selected from Alpine) 
27895 when Netscape is already running are discussed in the document
27896 &quot;Remote Control of UNIX Netscape&quot; 
27897 found at the URL (as of 12 Aug. 1998):
27900 <CENTER><A HREF="http://home.netscape.com/newsref/std/x-remote.html">http://home.netscape.com/newsref/std/x-remote.html</A></CENTER>
27902 <P>(If the URL-viewer application is 
27903 <B>not</B> running on the same host as Alpine, but being launched from an 
27904 applications server, you may not be able to use the command line options for 
27905 using an existing invocation of the application in Alpine's <!--#echo var="VAR_url-viewers"--> entry.)
27907 <!--chtml if this-method="shown-to-work"-->
27908 An example using the Korn shell and the Netscape browser (first entry wrapped 
27909 because of its length, but should all appear on one line):
27911 url-viewers = _TEST("test -L /myhomedir/.netscape/lock")_ &quot;/usr/local/bin/netscape -remote 'openURL(_URL_,  new-window)' &amp;&quot;<BR>
27913 _TEST(&quot;test -n '$&#123;DISPLAY}'&quot;)_ &quot;/usr/local/bin/netscape &amp;&quot;<BR>
27914               &quot;/usr/local/bin/lynx '_URL_'&quot;
27916 <!--chtml endif-->
27918 <UL>   
27919 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27920 </UL><P>
27921 &lt;End of help on this topic&gt;
27922 </BODY>
27923 </HTML>
27924 ====== h_config_enable_full_hdr =====
27925 <HTML>
27926 <HEAD>
27927 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></TITLE>
27928 </HEAD>
27929 <BODY>
27930 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-cmd"--></H1>
27932 This feature enables the &quot;H Full Headers&quot; command which toggles between
27933 the display of all headers in the message and the normal edited view of
27934 headers.  The Full Header command also controls which headers are included
27935 for Export, Pipe, Print, Forward, and Reply functions.  (For Reply, the
27936 Full Header mode will respect the
27937 <A HREF="h_config_include_header">&quot;Include-Headers-in-Reply&quot;</A>
27938 feature setting.)
27940 If Full Header mode is turned on and you Forward a message, you will
27941 be asked if you'd like to forward the message as an attachment, as opposed
27942 to including the text of the message in the body of your new message.
27944 If you have also turned on the
27945 <A HREF="h_config_quote_suppression">&quot;Quote Suppression&quot;</A>
27946 option then the Full Headers command actually rotates through three states
27947 instead of just two.
27948 The first is the normal view with long quotes suppressed.
27949 The second is the normal view but with the long quotes included.
27950 The last enables the display of all headers in the message.
27951 When using Export, Pipe, Print, Forward, or Reply the quotes are
27952 never suppressed, so the first two states are identical.
27954 Normally, the Header Mode will reset
27955 to the default behavior when moving to a new message.
27956 The mode can be made to persist from message to message by setting the feature
27957 <A HREF="h_config_quell_full_hdr_reset"><!--#echo var="FEAT_quell-full-header-auto-reset"--></A>.
27959 <UL>   
27960 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27961 </UL><P>
27962 &lt;End of help on this topic&gt;
27963 </BODY>
27964 </HTML>
27965 ====== h_config_enable_full_hdr_and_text =====
27966 <HTML>
27967 <HEAD>
27968 <TITLE>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></TITLE>
27969 </HEAD>
27970 <BODY>
27971 <H1>FEATURE: <!--#echo var="FEAT_enable-full-header-and-text"--></H1>
27973 This feature affects how the &quot;H Full Headers&quot; command displays
27974 message text.  If set, the raw message text will be displayed.  This
27975 especially affects MIME formatted email, where the entire MIME format
27976 will be displayed.  This feature similarly affects how messages are
27977 included for the Export, Pipe, Print, Forward, and Reply functions.
27979 When viewing a raw message that has attachments with this feature set,
27980 you will not be able to view attachments without first leaving full 
27981 headers mode.  This is because MIME parsing is not done on the raw message.
27983 <UL>   
27984 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
27985 </UL><P>
27986 &lt;End of help on this topic&gt;
27987 </BODY>
27988 </HTML>
27989 ====== h_config_enable_pipe =====
27990 <HTML>
27991 <HEAD>
27992 <TITLE>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></TITLE>
27993 </HEAD>
27994 <BODY>
27995 <H1>FEATURE: <!--#echo var="FEAT_enable-unix-pipe-cmd"--></H1>
27997 This feature enables the "| Pipe" command that sends the current message
27998 to the specified command for external processing.
28001 A short description of how the pipe command works is given
28002 <A HREF="h_pipe_command">here</A>.
28005 <UL>   
28006 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28007 </UL><P>
28008 &lt;End of help on this topic&gt;
28009 </BODY>
28010 </HTML>
28011 ====== h_config_quell_full_hdr_reset =====
28012 <HTML>
28013 <HEAD>
28014 <TITLE>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></TITLE>
28015 </HEAD>
28016 <BODY>
28017 <H1>FEATURE: <!--#echo var="FEAT_quell-full-header-auto-reset"--></H1>
28019 The <A HREF="h_common_hdrmode">HdrMode Command</A>
28020 normally resets to the default state when switching to a new message.
28021 For example, if you've used the &quot;H&quot; command to turn on Full
28022 Headers for a message you are viewing, and then you type the Next command
28023 to look at the next message, the full headers will no longer be shown.
28024 Setting this feature disables that reset.
28025 Instead, the Header Mode remains the same from message to message.
28028 The presence or absence of the HdrMode command is determined by the
28029 <A HREF="h_config_enable_full_hdr">&quot;<!--#echo var="FEAT_enable-full-header-cmd"-->&quot;</A>
28030 Feature-List option.
28032 <UL>   
28033 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28034 </UL><P>
28035 &lt;End of help on this topic&gt;
28036 </BODY>
28037 </HTML>
28038 ====== h_config_enable_tab_complete =====
28039 <HTML>
28040 <HEAD>
28041 <TITLE>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></TITLE>
28042 </HEAD>
28043 <BODY>
28044 <H1>FEATURE: <!--#echo var="FEAT_enable-tab-completion"--></H1>
28046 This feature enables the TAB key when at a prompt for a filename. In this
28047 case, TAB will cause the partial name already entered to be automatically
28048 completed, provided the partial name is unambiguous.
28049 This feature is on by default.
28051 Similarly, this feature also enables TAB completion of address book
28052 nicknames when at a prompt for a nickname,
28053 or when typing in an address field in the composer.
28055 &lt;End of help on this topic&gt;
28056 </BODY>
28057 </HTML>
28058 ====== h_config_quit_wo_confirm =====
28059 <HTML>
28060 <HEAD>
28061 <TITLE>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></TITLE>
28062 </HEAD>
28063 <BODY>
28064 <H1>FEATURE: <!--#echo var="FEAT_quit-without-confirm"--></H1>
28066 This feature controls whether or not Alpine will ask for confirmation when a
28067 Quit command is received.
28069 &lt;End of help on this topic&gt;
28070 </BODY>
28071 </HTML>
28072 ====== h_config_quote_replace_noflow =====
28073 <HTML>
28074 <HEAD>
28075 <TITLE>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></TITLE>
28076 </HEAD>
28077 <BODY>
28078 <H1>FEATURE: <!--#echo var="FEAT_quote-replace-nonflowed"--></H1>
28080 This feature, which is only active when
28081 <A HREF="h_config_quote_replace_string"><!--#echo var="VAR_quote-replace-string"--></A> is
28082 also set,
28083 enables quote-replacement on non-flowed messages.  It is off
28084 by default because a non-flowed message is more dependent on its format,
28085 and thus quote-replacement may cause less-than-pleasing results.
28086 Setting this feature will cause quote-replacement similar to that of flowed
28087 messages, but with the added possibility of long lines being wrapped
28088 into new lines if the Quote-Replacement-String is longer than the string
28089 it is replacing, which is &quot;&gt;&nbsp;&quot;.
28091 &lt;End of help on this topic&gt;
28092 </BODY>
28093 </HTML>
28094 ====== h_config_enable_jump =====
28095 <HTML>
28096 <HEAD>
28097 <TITLE>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></TITLE>
28098 </HEAD>
28099 <BODY>
28100 <H1>FEATURE: <!--#echo var="FEAT_enable-jump-shortcut"--></H1>
28102 When this feature is set you may enter a number (followed by RETURN)
28103 and jump to that message number, when in the MESSAGE INDEX or MESSAGE TEXT
28104 screens.  In other words, it obviates the need for typing the "J" for the
28105 Jump command.
28107 &lt;End of help on this topic&gt;
28108 </BODY>
28109 </HTML>
28110 ====== h_config_enable_alt_ed =====
28111 <HTML>
28112 <HEAD>
28113 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></TITLE>
28114 </HEAD>
28115 <BODY>
28116 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-cmd"--></H1>
28118 If this feature is set (the default), and the 
28119 <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
28120 <B>is not</B> set, entering
28121 the ^_ (Ctrl-underscore) key while composing a message will prompt you
28122 for the name of the editor you would like to use.
28124 If the environment variable $EDITOR is set, its value will be offered as
28125 a default.
28127 If the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A> option
28128 <B>is</B> set, the ^_ key will activate the specified
28129 editor without prompting, in which case it is not necessary to
28130 set the &quot;<!--#echo var="FEAT_enable-alternate-editor-cmd"-->&quot; feature.  
28132 <UL>   
28133 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28134 </UL><P>
28135 &lt;End of help on this topic&gt;
28136 </BODY>
28137 </HTML>
28138 ====== h_config_alt_ed_now =====
28139 <HTML>
28140 <HEAD>
28141 <TITLE>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></TITLE>
28142 </HEAD>
28143 <BODY>
28144 <H1>FEATURE: <!--#echo var="FEAT_enable-alternate-editor-implicitly"--></H1>
28146 If this feature and the <A HREF="h_config_editor">&quot;<!--#echo var="VAR_editor"-->&quot;</A>
28147 variable are both set, Alpine will
28148 automatically activate the specified editor when the cursor is moved from
28149 the header of the message being composed into the message text.  For
28150 replies, the alternate editor will be activated immediately.  If this
28151 feature is set but the &quot;<!--#echo var="VAR_editor"-->&quot; variable is not set, then Alpine will
28152 automatically ask for the name of an alternate editor when the cursor
28153 is moved out of the header being composed, or if a reply is being done.
28155 <P><UL>
28156 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28157 </UL>
28159 &lt;End of help on this topic&gt;
28160 </BODY>
28161 </HTML>
28162 ====== h_config_enable_bounce =====
28163 <HTML>
28164 <HEAD>
28165 <TITLE>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></TITLE>
28166 </HEAD>
28167 <H1>FEATURE: <!--#echo var="FEAT_enable-bounce-cmd"--></H1>
28168 <BODY>
28170 Setting this feature enables the "B Bounce" command, which will prompt
28171 for an address and *remail* the message to the new recipient.  This command
28172 is used to re-direct messages that you have received in error, or need to
28173 be redirected for some other reason (e.g. list moderation).  The final
28174 recipient will see a header indicating that you have Resent the msg, but
28175 the message's From: header will show the original author of the message,
28176 and replies to it will go back to that author, and not to you.
28178 &lt;End of help on this topic&gt;
28179 </BODY>
28180 </HTML>
28181 ====== h_config_enable_agg_ops =====
28182 <HTML>
28183 <HEAD>
28184 <TITLE>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></TITLE>
28185 </HEAD>
28186 <BODY>
28187 <H1>FEATURE: <!--#echo var="FEAT_enable-aggregate-command-set"--></H1>
28189 When this feature is set you may use the commands and subcommands that relate to
28190 performing operations on more than one message at a time.  We call these
28191 &quot;aggregate operations&quot;.  In particular, the 
28192 <!--chtml if pinemode="function_key"-->&quot;F5
28193 <!--chtml else-->&quot;;
28194 <!--chtml endif--> Select&quot;, 
28196 <!--chtml if pinemode="function_key"-->
28197 &quot;F6
28198 <!--chtml else-->
28199 &quot;A 
28200 <!--chtml endif-->
28201 Apply&quot;, and 
28202 <!--chtml if pinemode="function_key"-->
28203 &quot;F4
28204 <!--chtml else-->
28205 &quot;Z 
28206 <!--chtml endif-->
28207 Zoom&quot; commands are enabled by this feature.  Select is used to
28208 &quot;tag&quot; one or more messages meeting the specified criteria.  Apply can
28209 then be used to apply any message command to all of the selected/tagged
28210 messages.  Further, the Zoom command allows you to toggle the MESSAGE INDEX
28211 view between just those Selected and all messages in the folder.
28213 This feature also enables the 
28214 <!--chtml if pinemode="function_key"-->
28215 &quot;F7&quot; 
28216 <!--chtml else-->
28217 &quot;^X&quot; 
28218 <!--chtml endif-->
28220 subcommand in the MESSAGE INDEX 
28221 WhereIs command that causes all messages matching the WhereIs argument to 
28222 become selected; and the Select, Select Current, and ZoomMode commands in the
28223 <A HREF="h_folder_maint">FOLDER LIST screen</A>.
28225 Some related help topics are
28226 <UL>
28227 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
28228 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
28229 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>,
28230 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
28231 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
28232 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
28233 </UL>
28235 <UL>   
28236 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28237 </UL><P>
28238 &lt;End of help on this topic&gt;
28239 </BODY>
28240 </HTML>
28242 ====== h_config_enable_flag =====
28243 <HTML>
28244 <HEAD>
28245 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></TITLE>
28246 </HEAD>
28247 <BODY>
28248 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-cmd"--></H1>
28250 Setting this feature enables the
28251 <A HREF="h_common_flag">&quot;* Flag&quot;</A>
28252 command that allows you to
28253 manipulate the status flags associated with a message.  By default, Flag
28254 will set the "Important" flag, which results in an asterisk being
28255 displayed in column one of the MESSAGE INDEX for such messages.
28257 &lt;End of help on this topic&gt;
28258 </BODY>
28259 </HTML>
28260 ====== h_config_flag_screen_default =====
28261 <HTML>
28262 <HEAD>
28263 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></TITLE>
28264 </HEAD>
28265 <BODY>
28266 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-implicitly"--></H1>
28268 The feature modifies the behavior of the
28269 <a href="h_common_flag">Flag</a>
28270 command (provided it too is
28271 <A HREF="h_config_enable_flag">enabled</A>).
28272 By default, when the "* Flag" command is selected,
28273 Alpine offers a prompt to set one of several flags and also offers the
28274 option of entering the detailed flag manipulation screen via the "^T"
28275 key. Enabling this feature causes Alpine to immediately enter the detailed
28276 flag screen rather than first offer the simple prompt.
28278 <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.
28280 &lt;End of help on this topic&gt;
28281 </BODY>
28282 </HTML>
28283 ====== h_config_flag_screen_kw_shortcut =====
28284 <HTML>
28285 <HEAD>
28286 <TITLE>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></TITLE>
28287 </HEAD>
28288 <BODY>
28289 <H1>FEATURE: <!--#echo var="FEAT_enable-flag-screen-keyword-shortcut"--></H1>
28291 This feature modifies the behavior of the
28292 <a href="h_common_flag">Flag</a> command
28293 and the <A HREF="h_index_cmd_select">Select</A> command.
28294 This feature is set by default.
28295 When this feature is not set, when the "* Flag" command is selected,
28296 Alpine offers a prompt to set one of several flags and also offers the
28297 option of entering the detailed flag manipulation screen via the "^T"
28298 key.
28299 If you have
28300 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
28301 defined, then enabling this feature adds a shortcut way to set or unset
28302 keywords.
28303 You use &quot;*&quot; followed by the first letter of a keyword (or the nickname of
28304 a keyword if you've given it a nickname) and that will set the keyword.
28306 An example is easier to understand than the explanation.
28307 The flag command can always be used to set the system flags.
28308 For example, to set the Answered flag you would type
28310 <CENTER><SAMP>* A</SAMP></CENTER>
28312 Now suppose you have defined a keyword &quot;Work&quot; using the <!--#echo var="VAR_keywords"-->
28313 option in the Config screen.
28314 By default, to set a keyword like &quot;Work&quot; you would usually
28315 have to go to the Flag Details screen using
28316 the &quot;^T To Flag Details&quot; command.
28317 Instead, if you have enabled this feature, you may type
28319 <CENTER><SAMP>* W</SAMP></CENTER>
28321 to set the Work flag, or
28323 <CENTER><SAMP>* ! W</SAMP></CENTER>
28325 to unset it.
28326 Just like for the other flag setting commands, the case of the letter does
28327 not matter, so &quot;w&quot; or &quot;W&quot; both set the &quot;Work&quot;
28328 keyword.
28330 Notice that you can only use this trick for one keyword that begins
28331 with &quot;W&quot;.
28332 If you happen to have a &quot;Work&quot; keyword and another keyword that is
28333 &quot;WIFI&quot; the &quot;* W&quot; command will set the first one in
28334 your list of keywords.
28335 Also, there are five letters that are reserved for system
28336 flags and the NOT command.
28337 If you type &quot;* A&quot; it will always set the Answered flag, not
28338 your &quot;Aardvark&quot; keyword.
28339 In order to set the &quot;Aardvark&quot; keyword you'll still have to use
28340 the Flag Details screen.
28342 Because enabling the
28343 <A HREF="h_config_flag_screen_default"><!--#echo var="FEAT_enable-flag-screen-implicitly"--></A>
28344 option causes Alpine to skip directly to the Flag Details screen when the
28345 Flag command is used, 
28346 setting it will cause this feature to have no effect at all.
28348 Similarly, when Selecting by Keyword, setting this option will allow you
28349 to use Keyword initials instead of full keywords.
28351 &lt;End of help on this topic&gt;
28352 </BODY>
28353 </HTML>
28354 ====== h_config_can_suspend =====
28355 <HTML>
28356 <HEAD>
28357 <TITLE>FEATURE: <!--#echo var="FEAT_enable-suspend"--></TITLE>
28358 </HEAD>
28359 <BODY>
28360 <H1>FEATURE: <!--#echo var="FEAT_enable-suspend"--></H1>
28362 Setting this feature will allow you to type ^Z (Control Z) to 
28363 <!--chtml if pinemode="os_windows"-->
28364 minimize Alpine into its icon, bringing into focus whatever
28365 application is running behind the PC-Alpine window.
28366 <!--chtml else-->
28367 temporarily suspend Alpine.
28370 This does not exit Alpine, but puts it in the background to watch
28371 for new mail and such.  Normally, you type a command, such
28372 as &quot;fg&quot; at your system prompt to return to your Alpine session.
28375 The <A HREF="h_config_suspend_spawns"><!--#echo var="FEAT_use-subshell-for-suspend"--></A> feature
28376 adjusts whether Alpine is placed into the background of the shell its 
28377 running in or starts a news shell.
28378 <!--chtml endif-->
28381 <UL>   
28382 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28383 </UL><P>
28384 &lt;End of help on this topic&gt;
28385 </BODY>
28386 </HTML>
28387 ====== h_config_take_lastfirst ======
28388 <HTML>
28389 <HEAD>
28390 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></TITLE>
28391 </HEAD>
28392 <BODY>
28393 <H1>FEATURE: <!--#echo var="FEAT_disable-take-last-comma-first"--></H1>
28395 Normally, when TakeAddr is used to copy an address from a message into
28396 an address book entry, Alpine will attempt to rewrite the full name of the
28397 address in the form
28400 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Last, First<P>
28402 instead of<P>
28404 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;First Last
28407 It does this because many people find it useful to sort by Last name
28408 instead of First name.  If this feature is set, then the TakeAddr command
28409 will not attempt to reverse the name in this manner.
28411 &lt;End of help on this topic&gt;
28412 </BODY></HTML>
28413 ====== h_config_disable_regex ======
28414 <HTML>
28415 <HEAD>
28416 <TITLE>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></TITLE>
28417 </HEAD>
28418 <BODY>
28419 <H1>FEATURE: <!--#echo var="FEAT_disable-regular-expression-matching-for-alternate-addresses"--></H1>
28421 Normally, the
28422 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
28423 option is interpreted as a regular expression.
28424 One type of address that might cause trouble is an address that
28425 contains a plus sign.
28426 If you want to have an address with a plus as one of your
28427 <!--#echo var="VAR_alt-addresses"-->
28428 and you don't want to use regular expressions, then setting this
28429 feature will cause Alpine to treat the addresses you list literally instead.
28431 &lt;End of help on this topic&gt;
28432 </BODY></HTML>
28433 ====== h_config_take_fullname ======
28434 <HTML>
28435 <HEAD>
28436 <TITLE>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></TITLE>
28437 </HEAD>
28438 <BODY>
28439 <H1>FEATURE: <!--#echo var="FEAT_disable-take-fullname-in-addresses"--></H1>
28441 Normally, when TakeAddr is used to copy an address or addresses
28442 from a message into an address book entry, Alpine will try to preserve
28443 the full name associated with each address in the list of addresses.
28444 The reason for this is so that if the entry is a list or later becomes a
28445 list, then information about the individual addresses in the list
28446 is preserved.
28447 If you would rather just have the simple addresses in the list of addresses,
28448 set this feature. For example, with the default setting you might
28449 see something like this in the ADDRESS BOOK editor after you type TakeAddr
28451 <PRE>
28452  Nickname  : nick
28453  Fullname  : Bedrock Elders
28454  Fcc       :
28455  Comment   :
28456  Addresses : Fred Flintstone &lt;flint@bedrock.org&gt;,
28457              Barney Rubble &lt;rubble@bedrock.org&gt;
28458 </PRE>
28460 but with this feature set it would look like
28462 <PRE>
28463  Nickname  : nick
28464  Fullname  : Bedrock Elders
28465  Fcc       :
28466  Comment   :
28467  Addresses : flint@bedrock.org,
28468              rubble@bedrock.org
28469 </PRE>
28471 instead. Note the difference in the Addresses field.
28473 &lt;End of help on this topic&gt;
28474 </BODY></HTML>
28475 ====== h_config_print_from ======
28476 <HTML>
28477 <HEAD>
28478 <TITLE>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></TITLE>
28479 </HEAD>
28480 <BODY>
28481 <H1>FEATURE: <!--#echo var="FEAT_print-includes-from-line"--></H1>
28483 If this feature is set, then the Berkeley-mail style From line is included
28484 at the start of each message that is printed.  This line looks something
28485 like the following, with the address replaced by the address from the
28486 From line of the message being printed:
28488 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;From user@domain.somewhere.com Mon May 13
28489 14:11:06 1998
28491 &lt;End of help on this topic&gt;
28492 </BODY>
28493 </HTML>
28494 ====== h_config_expanded_distlists ======
28495 <HTML>
28496 <HEAD>
28497 <TITLE>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></TITLE>
28498 </HEAD>
28499 <BODY>
28500 <H1>FEATURE: <!--#echo var="FEAT_expanded-view-of-distribution-lists"--></H1>
28501 If this feature is set, then distribution lists in the address book
28502 screen will always be expanded automatically.
28504 &lt;End of help on this topic&gt;
28505 </BODY>
28506 </HTML>
28507 ====== h_config_compose_news_wo_conf ======
28508 <HTML>
28509 <HEAD>
28510 <TITLE>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></TITLE>
28511 </HEAD>
28512 <BODY>
28513 <H1>FEATURE: <!--#echo var="FEAT_compose-sets-newsgroup-without-confirm"--></H1>
28514 This feature controls one aspect of Alpine's Composer.  If you enter the
28515 composer while reading a newsgroup, you will normally be prompted to
28516 determine whether you intend the new message to be posted to the current
28517 newsgroup or not.  If this feature is set, Alpine will not prompt you
28518 in this situation, and will assume that you do indeed wish to post
28519 to the newsgroup you are reading.
28521 &lt;End of help on this topic&gt;
28522 </BODY>
28523 </HTML>
28524 ====== h_config_compose_rejects_unqual ======
28525 <HTML>
28526 <HEAD>
28527 <TITLE>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></TITLE>
28528 </HEAD>
28529 <BODY>
28530 <H1>FEATURE: <!--#echo var="FEAT_compose-rejects-unqualified-addrs"--></H1>
28532 This feature controls one aspect of the message composer; in particular,
28533 what happens when an unqualified name is entered into an address header.
28534 If set, unqualified names entered as addresses will be treated as errors
28535 unless they match an addressbook nickname.  Alpine will not attempt to turn
28536 them into complete addresses by adding your local domain.<P>
28538 A complete (fully qualified) address is one containing a username followed
28539 by an &quot;@&quot; (&quot;at&quot;) symbol, followed by a domain name (e.g.
28540 &quot;jsmith@example.com&quot;).  An unqualified name is one <B>without</B> 
28541 the &quot;@&quot; symbol and domain name (e.g. &quot;jsmith&quot;). 
28543 (See also <A HREF="h_address_format">Explanation of Address formats</A>.)
28547 When you enter a fully qualified address, Alpine does not interpret or
28548 modify it, but simply passes it on to the mail-transport-agent (MTA) for
28549 your system.  Alpine conforms to the Internet standards governing message
28550 headers and will not send an unqualifed name to the MTA.  Therefore, when
28551 you enter an unqualified name, Alpine will normally attempt to turn it into
28552 a fully qualified address, first by checking to see if you have entered a
28553 matching nickname in your addressbook, or failing that, by simply adding
28554 your own domain to the name entered.  So if your address is
28555 &quot;jsmith@example.com&quot; and you enter &quot;fred&quot;, then (assuming 
28556 &quot;fred&quot; is not a nickname in your addressbook), Alpine will turn 
28557 that into &quot;fred@example.com&quot;.<P>
28559 There are situations where it is not desirable for Alpine to interpret such
28560 unqualified names as valid (local) addresses.  For example, if &quot;fred&quot;
28561 turned out to be a typo (intended to be an addressbook nickname), but
28562 there actually was a &quot;fred&quot; in your local domain, the message might 
28563 be mis-delivered without your realizing it.  In order to reduce the likelihood
28564 of such accidents, setting this feature will cause Alpine to treat such
28565 addresses as errors, and require that you explicitly enter the full local
28566 address (e.g. &quot;fred@example.com&quot;) or correct the name so that it 
28567 matches an address book nickname.<P>
28569 Consider this a safety feature against mis-directed mail.
28571 <UL>   
28572 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28573 </UL><P>
28574 &lt;End of help on this topic&gt;
28575 </BODY>
28576 </HTML>
28577 ====== h_config_quell_local_lookup ======
28578 <HTML>
28579 <HEAD>
28580 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></TITLE>
28581 </HEAD>
28582 <BODY>
28583 <H1>FEATURE: <!--#echo var="FEAT_quell-user-lookup-in-passwd-file"--></H1>
28585 This feature controls an aspect of Alpine's Composer, and if needed, will
28586 usually be set by your system manager in Alpine's system-wide configuration
28587 file. Specifically, if this feature is set, Alpine will not attempt to look
28588 in the system password file to find a Full Name for the entered address.
28590 Normally, names you enter into address fields (e.g. To: or Cc:) are
28591 checked against your address book(s) to see if they match an address book
28592 nickname.  Failing that, (in Unix Alpine) the name is then checked against
28593 the Unix password file.  If the entered name matches a username in the
28594 system password file, Alpine extracts the corresponding Full Name information
28595 for that individual, and adds that to the address being entered.
28597 However, password file matching can have surprising (incorrect) results if
28598 other users of the system do not receive mail at the domain you are using.
28599 That is, if either the 
28600 <A HREF="h_config_user_dom">&quot;<!--#echo var="VAR_user-domain"-->&quot;</A> or 
28601 <A HREF="h_config_domain_name">&quot;<!--#echo var="VAR_use-only-domain-name"-->&quot;</A>
28602 option
28603 is set such that the administrative domain of other users on the system
28604 isn't accurately reflected, Alpine should be told that a passwd file match
28605 is coincidental, and Full Name info will be incorrect.  For example, a
28606 personal name from the password file could get falsely paired with the
28607 entered name as it is turned into an address in the configured domain.
28609 If you are seeing this behavior, enabling this feature will prevent Unix
28610 Alpine from looking up names in the password file to find the Full Name
28611 for incomplete addresses you enter.<P>
28612 <UL>
28613 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28614 </UL>
28616 &lt;End of help on this topic&gt;
28617 </BODY>
28618 </HTML>
28619 ====== h_config_tab_checks_recent ======
28620 <HTML>
28621 <HEAD>
28622 <TITLE>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></TITLE>
28623 </HEAD>
28624 <BODY>
28625 <H1>FEATURE: <!--#echo var="FEAT_tab-checks-recent"--></H1>
28627 In a FOLDER LIST screen, the TAB key usually just changes which
28628 folder is highlighted.
28629 If this feature is set, then the TAB key will cause the number of
28630 recent messages and the total number of messages in the highlighted folder
28631 to be displayed instead.
28634 &lt;End of help on this topic&gt;
28635 </BODY>
28636 </HTML>
28637 ====== h_config_maildrops_preserve_state ======
28638 <HTML>
28639 <HEAD>
28640 <TITLE>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></TITLE>
28641 </HEAD>
28642 <BODY>
28643 <H1>FEATURE: <!--#echo var="FEAT_maildrops-preserve-state"--></H1>
28645 This feature affects the way <A HREF="h_maildrop">Mail Drops</A> work.
28646 Normally, when mail is moved from a Mail Drop folder to a destination
28647 folder, it is delivered as new mail.
28648 Any Seen/New, Answered, Important/Flagged state that has changed will be
28649 ignored.
28650 All of the mail will be considered unSeen, unAnswered, and unImportant after
28651 it is moved.
28653 If this feature is set, then the state changes that have been made
28654 to the messages in the Mail Drop folder will be preserved.
28656 In any case, messages that are already marked Deleted when the
28657 mail is to be moved from the Mail Drop will be ignored.
28659 &lt;End of help on this topic&gt;
28660 </BODY>
28661 </HTML>
28662 ====== h_config_preopen_stayopens ======
28663 <HTML>
28664 <HEAD>
28665 <TITLE>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></TITLE>
28666 </HEAD>
28667 <BODY>
28668 <H1>FEATURE: <!--#echo var="FEAT_preopen-stayopen-folders"--></H1>
28670 This feature is related to the option
28671 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28672 Normally, Stay Open folders are only opened on demand, when the user
28673 asks to open them.
28674 From then on they are kept open for the duration of the session.
28675 However, if this feature is set, then the Stay Open folders will all be
28676 opened at startup, at the same time that the INBOX is opened.
28679 &lt;End of help on this topic&gt;
28680 </BODY>
28681 </HTML>
28682 ====== h_config_expunge_inbox ======
28683 <HTML>
28684 <HEAD>
28685 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></TITLE>
28686 </HEAD>
28687 <BODY>
28688 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-inbox"--></H1>
28690 The INBOX is normally treated differently from regular folders in several
28691 ways.
28692 One of the differences is that the normal &quot;close&quot; sequence of
28693 events is deferred until Alpine is exited, instead of happening when you
28694 leave the INBOX to view another folder.
28695 The &quot;close&quot; sequence normally includes the Expunging
28696 of deleted messages
28697 (either automatically or after a prompt, controlled by the features
28698 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28699 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28700 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28701 handling of the
28702 <A HREF="h_config_read_message_folder"><!--#echo var="VAR_read-message-folder"--></A>.
28705 If this feature is set the &quot;close&quot; sequence handling will take
28706 place every time you leave the INBOX.
28707 The INBOX will still be kept open, but the offer to Expunge and the archiving
28708 to the <!--#echo var="VAR_read-message-folder"-->
28709 will take place each time you leave the INBOX instead of only once at the
28710 end of the session.
28713 &lt;End of help on this topic&gt;
28714 </BODY>
28715 </HTML>
28716 ====== h_config_expunge_stayopens ======
28717 <HTML>
28718 <HEAD>
28719 <TITLE>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></TITLE>
28720 </HEAD>
28721 <BODY>
28722 <H1>FEATURE: <!--#echo var="FEAT_offer-expunge-of-stayopen-folders"--></H1>
28724 This feature is related to the option
28725 <A HREF="h_config_permlocked">&quot;<!--#echo var="VAR_stay-open-folders"-->&quot;</A>.
28726 Stay Open folders are treated differently from regular folders in several
28727 ways.
28728 One of the differences is that the normal &quot;close&quot; sequence of
28729 events is deferred until Alpine is exited, instead of happening when you
28730 leave the folder to view another folder.
28731 The &quot;close&quot; sequence normally includes the Expunging
28732 of deleted messages
28733 (either automatically or after a prompt, controlled by the features
28734 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>,
28735 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>, and
28736 <A HREF="h_config_expunge_manually"><!--#echo var="FEAT_expunge-only-manually"--></A>), and the
28737 handling of
28738 <A HREF="h_config_archived_folders"><!--#echo var="VAR_incoming-archive-folders"--></A>.
28741 If this feature is set the &quot;close&quot; sequence handling will take
28742 place when you leave the Stay Open folder.
28743 The folder will still be kept open, but the offer to Expunge and the archiving
28744 will take place each time you leave the folder instead of only once at the
28745 end of the session.
28746 This feature does not affect the INBOX, which will still only be processed
28747 when you exit Alpine.
28748 However, there is a similar feature that affects only the INBOX called
28749 <A HREF="h_config_expunge_inbox">&quot;<!--#echo var="FEAT_offer-expunge-of-inbox"-->&quot;</A>.
28752 &lt;End of help on this topic&gt;
28753 </BODY>
28754 </HTML>
28755 ====== h_config_preserve_start_stop ======
28756 <HTML>
28757 <HEAD>
28758 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></TITLE>
28759 </HEAD>
28760 <BODY>
28761 <H1>FEATURE: <!--#echo var="FEAT_preserve-start-stop-characters"--></H1>
28763 This feature controls how special control key characters, typically
28764 Ctrl-S and Ctrl-Q, are interpreted when input to Alpine.  These characters
28765 are known as the "stop" and "start" characters and are sometimes used in
28766 communications paths to control data flow between devices that operate at
28767 different speeds.
28771 By default, Alpine turns the system's handling of these special characters
28772 off except during printing.  However, if you see Alpine reporting input errors
28773 such as:
28775 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[ Command "^Q" not defined for this screen.]
28777 and, at the same time, see your display become garbled, then it is likely
28778 that setting this option will solve the problem.  Be aware, though, that
28779 enabling this feature will also cause Alpine to ostensibly "hang" 
28780 whenever the Ctrl-S key combination is entered as the system is now
28781 interpreting such input as a "stop output" command.  To "start
28782 output"  again, simply type Ctrl-Q. 
28784 &lt;End of help on this topic&gt;
28785 </BODY>
28786 </HTML>
28787 ====== h_config_enable_incoming ======
28788 <HTML>
28789 <HEAD>
28790 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></TITLE>
28791 </HEAD>
28792 <BODY>
28793 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders"--></H1>
28795 Alpine's Incoming Message Folders collection
28796 provides a convenient way to access multiple incoming folders.
28797 It is also useful if you have accounts on multiple computers.
28800 If set, this feature defines a pseudo-folder collection called
28801 &quot;INCOMING MESSAGE FOLDERS&quot;.  Initially, the only folder included
28802 in this collection will be your INBOX, which will no longer show up in
28803 your Default folder collection.
28806 You may add more folders to the Incoming Message Folders collection by
28807 using the
28808 <!--chtml if pinemode="function_key"-->
28809 &quot;F10
28810 <!--chtml else-->
28811 &quot;A
28812 <!--chtml endif-->
28813 Add&quot; command in the FOLDER LIST screen.  You will be prompted for
28814 the host the folder is stored on (which defaults to the same host used
28815 for your INBOX), a nickname, and the actual folder name.  Once a set
28816 of Incoming Message Folders are defined, the TAB key (in MESSAGE INDEX
28817 or MESSAGE TEXT screens) may be used to scan the folders for those
28818 with Recent messages.  If you add more folders to
28819 your <!--#echo var="VAR_incoming-folders"--> collection, turning this feature back off will have
28820 no effect.
28822 NOTE: Normally the software that actually delivers mail (the stuff that happens
28823 before Alpine is involved) is in a better position to do delivery filtering
28824 than is Alpine itself.
28825 If possible, you may want to look at programs such as
28826 &quot;filter&quot; or &quot;procmail&quot;, which are examples of delivery
28827 filtering programs.
28828 If you'd prefer to have Alpine do the filtering for you, you may set that
28830 Look <A HREF="h_rules_filter">here</A> for help with Alpine filtering.
28832 <UL>   
28833 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28834 </UL><P>
28835 &lt;End of help on this topic&gt;
28836 </BODY>
28837 </HTML>
28838 ====== h_config_enable_incoming_checking ======
28839 <HTML>
28840 <HEAD>
28841 <TITLE>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></TITLE>
28842 </HEAD>
28843 <BODY>
28844 <H1>FEATURE: <!--#echo var="FEAT_enable-incoming-folders-checking"--></H1>
28846 This feature is only operational if you have enabled the optional
28847 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> collection.
28848 If you do have Incoming Message Folders and you also set this feature,
28849 then the number of Unseen messages in each folder will be displayed
28850 in the FOLDER LIST screen for the Incoming Message Folders.
28851 The number of Unseen messages in a folder will be displayed in parentheses
28852 to the right of the name of each folder.
28853 If there are no Unseen messages in a folder then only the name
28854 is displayed, not a set of parentheses with zero inside them.
28855 A redraw command, Ctrl-L, can be used in the FOLDER LIST screen for
28856 the Incoming Message Folders to cause an immediate update.
28858 If a check for Unseen messages fails for a particular folder then Alpine
28859 will no longer attempt to check that folder for the duration of the
28860 session and this will be indicated by a question mark inside the
28861 parentheses.
28863 The features
28864 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>,
28865 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>,
28866 <A HREF="h_config_incoming_list"><!--#echo var="VAR_incoming-check-list"--></A>,
28867 <A HREF="h_config_incoming_interv"><!--#echo var="VAR_incoming-check-interval"--></A>,
28868 <A HREF="h_config_incoming_second_interv"><!--#echo var="VAR_incoming-check-interval-secondary"--></A>, and
28869 <A HREF="h_config_incoming_timeo"><!--#echo var="VAR_incoming-check-timeout"--></A>
28870 all affect how this feature behaves.
28872 <UL>   
28873 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28874 </UL><P>
28875 &lt;End of help on this topic&gt;
28876 </BODY>
28877 </HTML>
28878 ====== h_config_incoming_checking_total ======
28879 <HTML>
28880 <HEAD>
28881 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></TITLE>
28882 </HEAD>
28883 <BODY>
28884 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-includes-total"--></H1>
28886 This option has no effect unless the feature
28887 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28888 is set, which in turn has no effect unless
28889 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28890 is set.
28892 When incoming folder checking is turned on the default is to display
28893 the number of unseen messages in each folder.
28894 More precisely, it is the number of undeleted unseen messages.
28895 Using this option you may also display the total number of messages
28896 in each folder.
28897 Instead of a single number representing the number of unseen messages
28898 you will get two numbers separated by a slash character.
28899 The first is the number of unseen messages and the second is the
28900 total number of messages.
28902 You may also use the recent message count instead of the unseen message
28903 count by turning on the feature
28904 <A HREF="h_config_incoming_checking_recent"><!--#echo var="FEAT_incoming-checking-uses-recent"--></A>.
28906 <UL>   
28907 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28908 </UL><P>
28909 &lt;End of help on this topic&gt;
28910 </BODY>
28911 </HTML>
28912 ====== h_config_incoming_checking_recent ======
28913 <HTML>
28914 <HEAD>
28915 <TITLE>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></TITLE>
28916 </HEAD>
28917 <BODY>
28918 <H1>FEATURE: <!--#echo var="FEAT_incoming-checking-uses-recent"--></H1>
28920 This option has no effect unless the feature
28921 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
28922 is set, which in turn has no effect unless
28923 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A>
28924 is set.
28926 When incoming folder checking is turned on the default is to display
28927 the number of unseen messages in each folder.
28928 More precisely, it is the number of undeleted unseen messages.
28929 Using this option you may display the number of recent messages instead
28930 of the number of unseen messages.
28931 A message is only counted as recent if this is the first session to
28932 see it, so the recent count might be less than the unseen count.
28933 The difference between the two would be accounted for by the unseen messages
28934 in the folder which were there previously but have not been looked at yet.
28936 If you simultaneously run more than one email client at a time
28937 (for example, you run more than one Alpine in parallel) then turning
28938 this feature on can cause some confusion.
28939 The confusion stems from the fact that each message is only considered to be
28940 recent in one session.
28941 That means that the counts of new messages may be different in the two
28942 Alpines running side by side, because each incoming message will only be
28943 counted as recent in one of the two sessions.
28945 You may also display the total number of messages
28946 in each folder by using the
28947 <A HREF="h_config_incoming_checking_total"><!--#echo var="FEAT_incoming-checking-includes-total"--></A>
28948 option.
28950 <UL>   
28951 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
28952 </UL><P>
28953 &lt;End of help on this topic&gt;
28954 </BODY>
28955 </HTML>
28956 ====== h_config_attach_in_reply ======
28957 <HTML>
28958 <HEAD>
28959 <TITLE>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></TITLE>
28960 </HEAD>
28961 <BODY>
28962 <H1>FEATURE: <!--#echo var="FEAT_include-attachments-in-reply"--></H1>
28964 This feature controls an aspect of Alpine's Reply command. If set, any MIME
28965 attachments that were part of the original message will automatically be
28966 included in the Reply.
28968 &lt;End of help on this topic&gt;
28969 </BODY>
28970 </HTML>
28971 ====== h_config_include_header =====
28972 <HTML>
28973 <HEAD>
28974 <TITLE>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></TITLE>
28975 </HEAD>
28976 <BODY>
28977 <H1>FEATURE: <!--#echo var="FEAT_include-header-in-reply"--></H1>
28979 This feature controls an aspect of Alpine's Reply command. If set, and the
28980 original message is being included in the reply, then headers from that
28981 message will also be part of the reply.
28983 &lt;End of help on this topic&gt;
28984 </HEAD>
28985 </HTML>
28986 ====== h_config_sig_at_bottom =====
28987 <HTML>
28988 <HEAD>        
28989 <TITLE>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></TITLE>
28990 </HEAD>
28991 <BODY>
28992 <H1>FEATURE: <!--#echo var="FEAT_signature-at-bottom"--></H1>
28994 This feature controls an aspect of Alpine's Reply command.  If this feature
28995 is set, and the original message is being included in the reply, then the
28996 contents of your signature file (if any) will be inserted after the included
28997 message.
28999 This feature does not affect the results of a Forward command.
29001 &lt;End of help on this topic&gt;
29002 </BODY>
29003 </HTML>
29004 ====== h_config_sigdashes =====
29005 <HTML>
29006 <HEAD>
29007 <TITLE>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></TITLE>
29008 </HEAD>
29009 <BODY>
29010 <H1>FEATURE: <!--#echo var="FEAT_enable-sigdashes"--></H1>
29012 This feature enables support for the common USENET news convention 
29013 of preceding a message signature with the special line consisting of 
29014 the three characters &quot;--&nbsp;&quot; (i.e., dash, dash, and space).
29017 When enabled and a
29018 &quot;<A HREF="h_config_signature_file"><!--#echo var="VAR_signature-file"--></A>&quot; exists,
29019 Alpine will insert the special line before including the file's text (unless
29020 the special line already exists somewhere in the file's text).
29023 In addition, when you Reply or Followup to a message containing one of
29024 these special lines and choose to include its text, Alpine will observe
29025 the convention of not including text beyond the special line in your
29026 reply.
29027 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
29028 mode is enabled and turned on, then Alpine <EM>will</EM>
29029 include the text beyond the special line regardless of the setting of
29030 this feature.
29033 See also &quot;<a href="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></a>&quot;
29034 for a related feature.
29037 <UL>   
29038 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29039 </UL><P>
29040 &lt;End of help on this topic&gt;
29041 </BODY>
29042 </HTML>
29043 ====== h_config_new_thread_blank_subject =====
29044 <HTML>
29045 <HEAD>
29046 <TITLE>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></TITLE>
29047 </HEAD>
29048 <BODY>
29049 <H1>FEATURE: <!--#echo var="FEAT_new-thread-on-blank-subject"--></H1>
29051 When this feature is enabled (the default) Alpine will create a new thread
29052 every time that the subject line becomes empty at any time during composition.
29055 This behavior is particularly useful in case you are replying to a message.
29056 Replying to a message causes the message to be in the same thread than the
29057 original message that is being replied to. However, many authors want to create
29058 a new message (in a different thread) while replying to a message, and they do
29059 this by changing the full subject, by first deleting the original subject and
29060 typing the new subject of the current message.
29063 Enabling this feature causes that any time that the subject is deleted, the 
29064 message being composed will be considered the first message of a new thread.
29067 <UL>   
29068 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29069 </UL><P>
29070 &lt;End of help on this topic&gt;
29071 </BODY>
29072 </HTML>
29073 ====== h_config_strip_sigdashes =====
29074 <HTML>
29075 <HEAD>
29076 <TITLE>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></TITLE>
29077 </HEAD>
29078 <BODY>
29079 <H1>FEATURE: <!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></H1>
29081 This feature doesn't do anything if the feature
29082 &quot;<A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A>&quot; is turned on.
29083 However, if the &quot;<!--#echo var="FEAT_enable-sigdashes"-->&quot; feature is not turned on,
29084 then turning on this feature enables support for the convention
29085 of not including text beyond the sigdashes line when Replying or Following
29086 up to a message and including the text of that message.
29087 If <A HREF="h_config_enable_full_hdr">&quot;Full Header&quot;</A>
29088 mode is enabled and turned on, then Alpine <EM>will</EM>
29089 include the text beyond the special line regardless of the setting of
29090 this feature.
29092 In other words, this is a way to turn on the signature stripping behavior
29093 without also turning on the dashes-adding behavior.
29095 <UL>   
29096 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29097 </UL><P>
29098 &lt;End of help on this topic&gt;
29099 </BODY>
29100 </HTML>
29101 ====== h_config_forward_as_attachment =====
29102 <HTML>
29103 <HEAD>
29104 <TITLE>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></TITLE>
29105 </HEAD>
29106 <BODY>
29107 <H1>FEATURE: <!--#echo var="FEAT_forward-as-attachment"--></H1>
29109 This feature affects the way forwarded message text is handled.  When set, rather than 
29110 include the text of the forwarded message below any additional text you provide in the
29111 composer, the forwarded message is attached in its entirety to the message you send.
29113 This is useful in that it keeps the text you provide in the composer distinct from the
29114 text of the forwarded message.  Similarly, it allows the recipient to 
29115 conveniently operate on the forwarded message.  For example, they might reply directly to
29116 the sender of the forwarded message, or process it as part of a spam report.
29117 <UL>   
29118 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29119 </UL><P>
29120 &lt;End of help on this topic&gt;
29121 </BODY>
29122 </HTML>
29123 ====== h_config_preserve_field =====
29124 <HTML>
29125 <HEAD>
29126 <TITLE>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></TITLE>
29127 </HEAD>
29128 <BODY>
29129 <H1>FEATURE: <!--#echo var="FEAT_preserve-original-fields"--></H1>
29131 This feature affects Alpine's behavior when one replies to a message. 
29132 When you receive a message, some or all of the recipients of the message 
29133 have been added to the To: and Cc: fields. If you reply to such message, 
29134 and this feature is disabled, then the original sender of the message is 
29135 added to the To: field, and all other recipients are added to the Cc: 
29136 field, while your address is added to the From: field.
29139 However, if this feature is enabled, then Alpine will preserve the 
29140 original fields as sent in the original message, so the Cc: and To: 
29141 fields will be preserved. The sender's address will be added to the To: 
29142 field, while your address is added to the From: field.
29145 The behavior of this feature is that replies to all messages will behave 
29146 in the way described above. If you only intend this to happen on a per 
29147 message basis, then keep this feature disabled, and when replying to a 
29148 message you will see a new option in the menu for the &quot;Reply to all 
29149 recipients?&quot; question. In this case, pressing &quot;p&quot; will 
29150 make Alpine toggle its question so you can preserve the To: and Cc: 
29151 fields for that message only.
29153 <UL>   
29154 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29155 </UL><P>
29156 &lt;End of help on this topic&gt;
29157 </BODY>
29158 </HTML>
29159 ====== h_config_sub_lists =====
29160 <HTML>
29161 <HEAD>
29162 <TITLE>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></TITLE>
29163 </HEAD>
29164 <BODY>
29165 <H1>FEATURE: <!--#echo var="FEAT_enable-partial-match-lists"--></H1>
29167 This feature affects the subcommands available when Saving, 
29168 or when Opening a new folder. If set, the subcommand ^X ListMatches will be
29169 available. This command allows you to type in a substring of the folder
29170 you are looking for and when you type ^X it will display all folders
29171 that contain that substring in their names.
29172 This feature is set by default.
29175 &lt;End of help on this topic&gt;
29176 </BODY>
29177 </HTML>
29178 ====== h_config_scramble_message_id =====
29179 <HTML>
29180 <HEAD>
29181 <TITLE>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></TITLE>
29182 </HEAD>
29183 <BODY>
29184 <H1>FEATURE: <!--#echo var="FEAT_scramble-message-id"--></H1>
29186 Normally the Message-ID header that Alpine generates when sending a message
29187 contains the name of the computer from which the message is being sent.
29188 Some believe that this hostname could be used by spammers or could
29189 be used by others for nefarious purposes.
29190 If this feature is set, that name will be transformed with a simple
29191 Rot13 transformation.
29192 The result will still have the correct syntax for a Message-ID but the
29193 part of the MessageID that is often a domain name will not be an actual
29194 domain name because the letters will be scrambled.
29196 In addition, other information such as the name program, version, and
29197 a code for operating system used to build Alpine, will be encoded using
29198 the Rot13 transformation, except for the version number which will be
29199 encoded using a Rot5 transformation.
29201 It is possible (but unlikely?) that some spam detection
29202 software will use that as a reason to reject the mail as spam.
29203 It has also been reported that some spam detection software uses the
29204 fact that there are no dots after the &quot;@&quot; as a reason to reject
29205 messages.
29206 If your PC-Alpine Message-ID is using a name without a dot that is because
29207 that is what Windows thinks is your &quot;Full computer name&quot;.
29208 The method used to set this varies from one type of Windows to another but
29209 check under Settings -> Control Panel -> System and
29210 look for Network Identification or Computer Name or something similar.
29211 How to set it is beyond the scope of Alpine.
29214 &lt;End of help on this topic&gt;
29215 </BODY>
29216 </HTML>
29217 ====== h_downgrade_multipart_to_text =====
29218 <HTML>
29219 <HEAD>
29220 <TITLE>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></TITLE>
29221 </HEAD>
29222 <BODY>
29223 <H1>FEATURE: <!--#echo var="FEAT_downgrade-multipart-to-text"--></H1>
29226 This feature affects Alpine's behavior when sending mail.  Internet
29227 standards require Alpine to translate all non-ASCII characters in
29228 messages that it sends using MIME encoding.  This encoding can be
29229 ostensibly broken for recipients if any agent between Alpine and the
29230 recipient, such as an email list expander, appends text to the
29231 message, such as list information or advertising.  When sending such
29232 messages Alpine attempts to protect such encoding by placing extra
29233 MIME boundaries around the message text.
29235 These extra boundaries are invisible to recipients that 
29236 use MIME-aware email programs (the vast majority).  However, if
29237 you correspond with users of email programs that are not MIME-aware,
29238 or do not handle the extra boundaries gracefully, you can
29239 use this feature to prevent Alpine from including the extra
29240 MIME information.  Of course, it will increase the likelihood
29241 that non-ASCII text you send may appear corrupt to the recipient.
29243 &lt;End of help on this topic&gt;
29244 </BODY>
29245 </HTML>
29246 ====== h_config_show_sort =====
29247 <HTML>
29248 <HEAD>
29249 <TITLE>FEATURE: <!--#echo var="FEAT_show-sort"--></TITLE>
29250 </HEAD>
29251 <BODY>
29252 <H1>FEATURE: <!--#echo var="FEAT_show-sort"--></H1>
29254 If this feature is set and there is sufficient space on the screen,
29255 a short indication of the current sort order will be
29256 added in the titlebar (the top line on the screen), before the name
29257 of the folder.
29258 For example, with the default Arrival sort in effect,
29259 the display would have the characters
29261 <P><CENTER>[A]</CENTER><P>
29263 added between the title of the screen and the folder name.
29264 The letters are the same as the letters you may type to manually
29265 sort a folder with the SortIndex command ($).
29266 The letters in the table below are the ones that may show
29267 up in the titlebar line.
29269 <TABLE>   
29270 <TR> <TD> A </TD> <TD> <EM>A</EM>rrival        </TD> </TR>
29271 <TR> <TD> S </TD> <TD> <EM>S</EM>ubject        </TD> </TR>
29272 <TR> <TD> F </TD> <TD> <EM>F</EM>rom           </TD> </TR>
29273 <TR> <TD> T </TD> <TD> <EM>T</EM>o             </TD> </TR>
29274 <TR> <TD> C </TD> <TD> <EM>C</EM>c             </TD> </TR>
29275 <TR> <TD> D </TD> <TD> <EM>D</EM>ate           </TD> </TR>
29276 <TR> <TD> Z </TD> <TD> si<EM>Z</EM>e           </TD> </TR>
29277 <TR> <TD> O </TD> <TD> <EM>O</EM>rderedsubject </TD> </TR>
29278 <TR> <TD> E </TD> <TD> scor<EM>E</EM>          </TD> </TR>
29279 <TR> <TD> H </TD> <TD> t<EM>H</EM>read         </TD> </TR>
29280 </TABLE>
29282 If the sort order is Reversed, the letter above will be preceded by the letter
29283 &quot;R&quot;, for example
29285 <P><CENTER>[RS]</CENTER><P>
29287 means that a Reverse Subject sort is in effect.
29288 For the case where the sort is in Reverse Arrival order, the &quot;A&quot; is
29289 left out, and just an &quot;R&quot; is shown.
29291 <P><CENTER>[R]</CENTER>
29294 &lt;End of help on this topic&gt;
29295 </BODY>
29296 </HTML>
29297 ====== h_config_disable_reset_disp =====
29298 <HTML>
29299 <HEAD>
29300 <TITLE>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></TITLE>
29301 </HEAD>
29302 <BODY>
29303 <H1>FEATURE: <!--#echo var="FEAT_disable-terminal-reset-for-display-filters"--></H1>
29305 UNIX Alpine only.
29307 This feature affects Alpine's behavior when using
29308 <A HREF="h_config_display_filters"><!--#echo var="VAR_display-filters"--></A>.
29309 Normally, before the display filter is run, the terminal mode is reset
29310 to what it was before you started Alpine.
29311 This may be necessary if the filter requires the use of the terminal.
29312 For example, it may need to interact with you.
29313 If you set this feature, then the terminal mode will not be reset.
29314 One thing that turning on this feature should fix is the coloring of
29315 <A HREF="h_config_quote_color">quoted text</A> in the message view, which
29316 breaks because the terminal reset resets the color state of the terminal.
29319 &lt;End of help on this topic&gt;
29320 </BODY>
29321 </HTML>
29322 ====== h_config_disable_sender =====
29323 <HTML>
29324 <HEAD>
29325 <TITLE>FEATURE: <!--#echo var="FEAT_disable-sender"--></TITLE>
29326 </HEAD>
29327 <BODY>
29328 <H1>FEATURE: <!--#echo var="FEAT_disable-sender"--></H1>
29330 This feature affects Alpine's generation of the &quot;Sender:&quot; or
29331 <A HREF="h_config_use_sender_not_x">&quot;X-X-Sender&quot;</A>
29332 header fields.
29333 By default, Alpine will generate such a header in situations where the
29334 username or domain are not the same as
29335 the &quot;From:&quot; header on the message.
29336 With this feature set,
29337 no &quot;Sender:&quot; or &quot;X-X-Sender&quot; header will be generated.
29338 This may be desirable on a system that is virtually hosting many domains,
29339 and the sysadmin has other methods available for tracking a message to
29340 its originator.
29342 See also <A HREF="h_config_allow_chg_from">&quot;<!--#echo var="FEAT_allow-changing-from"-->&quot;</A>.
29345 &lt;End of help on this topic&gt;
29346 </BODY>
29347 </HTML>
29348 ====== h_config_use_sender_not_x =====
29349 <HTML>
29350 <HEAD>
29351 <TITLE>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></TITLE>
29352 </HEAD>
29353 <BODY>
29354 <H1>FEATURE: <!--#echo var="FEAT_use-sender-not-x-sender"--></H1>
29356 Normally Alpine adds a header line
29357 labeled &quot;X-X-Sender&quot;, if the sender is
29358 different from the From: line.
29359 The standard specifies that this header
29360 line should be labeled &quot;Sender&quot;, not &quot;X-X-Sender&quot;.
29361 Setting this feature causes
29362 &quot;Sender&quot; to be used instead of &quot;X-X-Sender&quot;.
29364 See also <A HREF="h_config_disable_sender">&quot;<!--#echo var="FEAT_disable-sender"-->&quot;</A>.
29367 &lt;End of help on this topic&gt;
29368 </BODY>
29369 </HTML>
29370 ====== h_config_use_fk =====
29371 <HTML>
29372 <HEAD>
29373 <TITLE>FEATURE: <!--#echo var="FEAT_use-function-keys"--></TITLE>
29374 </HEAD>
29375 <BODY>
29376 <H1>FEATURE: <!--#echo var="FEAT_use-function-keys"--></H1>
29378 This feature specifies that Alpine will respond to function keys instead of
29379 the normal single-letter commands. In this mode, the key menus at the
29380 bottom of each screen will show function key designations instead of the
29381 normal mnemonic key.
29384 &lt;End of help on this topic&gt;
29385 </BODY>
29386 </HTML>
29387 ====== h_config_cancel_confirm =====
29388 <HTML>
29389 <HEAD>
29390 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></TITLE>
29391 </HEAD>
29392 <BODY>
29393 <H1>FEATURE: <!--#echo var="FEAT_compose-cancel-confirm-uses-yes"--></H1>
29395 This feature affects what happens when you type ^C to cancel a composition.
29396 By default, if you attempt to cancel a composition by typing ^C, you will be
29397 asked to confirm the cancellation by typing a &quot;C&quot;
29398 for <EM>C</EM>onfirm.
29399 It logically ought to be a &quot;Y&quot; for <EM>Y</EM>es, but that is
29400 risky because the &quot;^C Y&quot; needed to cancel a message
29401 is close (on the keyboard) to the &quot;^X Y&quot; needed to send a message.
29403 If this feature is set the confirmation asked for
29404 will be a &quot;<EM>Y</EM>es&quot;
29405 instead of a &quot;<EM>C</EM>onfirm&quot; response.
29408 &lt;End of help on this topic&gt;
29409 </BODY>
29410 </HTML>
29411 ====== h_config_compose_maps_del =====
29412 <HTML>
29413 <HEAD>
29414 <TITLE>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></TITLE>
29415 </HEAD>
29416 <BODY>
29417 <H1>FEATURE: <!--#echo var="FEAT_compose-maps-delete-key-to-ctrl-d"--></H1>
29419 This feature affects the behavior of the DELETE key.
29420 If set, Delete will be equivalent to ^D, and delete
29421 the current character.  Normally Alpine defines the Delete key
29422 to be equivalent to ^H, which deletes the <EM>previous</EM>
29423 character.
29426 &lt;End of help on this topic&gt;
29427 </BODY>
29428 </HTML>
29429 ====== h_config_compose_bg_post =====
29430 <HTML>
29431 <HEAD>
29432 <TITLE>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></TITLE>
29433 </HEAD>
29434 <BODY>
29435 <H1>FEATURE: <!--#echo var="FEAT_enable-background-sending"--></H1>
29437 This feature affects the behavior of Alpine's mail sending.  If set, this
29438 feature enables a subcommand in the composer's "Send?" confirmation
29439 prompt.  The subcommand allows you to tell Alpine to handle the actual
29440 posting in the background.  While this feature usually allows posting
29441 to appear to happen very fast, it has no affect on the actual delivery
29442 time it takes a message to arrive at its destination.
29445 Please Note:
29446 <OL>
29447  <LI>This feature will have no effect if the feature
29448        <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A>
29449        is set.
29450  <LI>This feature isn't supported on all systems.  All DOS and Windows,
29451        as well as several Unix ports, do not recognize this feature.
29452  <LI>Error handling is significantly different when this feature is
29453         enabled.  Any message posting failure results in the message
29454         being appended to your &quot;Interrupted&quot; mail folder.  When you
29455         type the <A HREF="h_common_compose">C</A>ompose command,
29456         Alpine will notice this folder and
29457         offer to extract any messages contained.  Upon continuing a 
29458         failed message, Alpine will display the nature of the failure 
29459         in the status message line.
29460  <LI> <EM>WARNING</EM>: Under extreme conditions, it is possible
29461         for message data to
29462         get lost.  <EM>Do</EM> <EM>not</EM> enable this feature
29463         if you typically run close to any sort of disk-space limits or quotas.
29464 </OL>
29466 &lt;End of help on this topic&gt;
29467 </BODY>
29468 </HTML>
29469 ====== h_config_compose_dsn =====
29470 <HTML>
29471 <HEAD>
29472 <TITLE>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></TITLE>
29473 </HEAD>
29474 <BODY>
29475 <H1>FEATURE: <!--#echo var="FEAT_enable-delivery-status-notification"--></H1>
29477 This feature affects the behavior of Alpine's mail sending.  If set, this
29478 feature enables a subcommand in the composer's &quot;Send?&quot; confirmation
29479 prompt.  The subcommand allows you to tell Alpine to request the type of
29480 Delivery Status Notification (DSN) that you would like.  Most users will
29481 be happy with the default, and need not enable this feature.
29483 If the feature
29484 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29485 then this feature has no effect and the type of DSN is not selectable.
29488 Turning on this feature and then turning on the DSNOpts from the send
29489 prompt reveals four on-off toggles at the bottom of the screen.
29490 The &quot;X&quot; command toggles between NoErrRets and ErrRets.  NoErrRets requests
29491 that no notification be returned to you, even if there is a delivery
29492 failure.  The &quot;D&quot; key toggles between Delay and NoDelay.  This tells the
29493 server that you are willing (or not) to receive delay notifications, which
29494 happen when there is an unusual delay at some mail server (in that mail
29495 server's opinion).  The &quot;S&quot; key toggles between Success and NoSuccess.
29496 Success requests that you be sent a DSN message when the message is
29497 successfully delivered to the recipients mailbox.  Setting NoErrRets will
29498 automatically turn off Delay and Success notification, and will flip the
29499 toggles to show that.  Similarly, turning on Delay and/or Success will
29500 automatically toggle the &quot;X&quot; key to ErrRets.  The fourth command, the
29501 &quot;H&quot; key, toggles between RetHdrs and RetFull.  RetFull requests that
29502 the full message be returned in any failed DSN.  RetHdrs requests that
29503 only the headers be returned in any failed DSN.  Notice that this command
29504 applies only to failed delivery status reports.  For delay or success
29505 reports, the full message is never returned, only the headers are returned.
29508 If you don't enable the DSN feature or if you don't turn it on for a
29509 particular message, the default is that you will be notified about failures,
29510 you might be notified about delays, and you won't be notified about
29511 successes.  You will usually receive the full message back when there is
29512 a failure.
29515 If you turn on the DSNOpts the default is to return as much information as
29516 possible to you.  That is, by default, the Success and Delay options are
29517 turned on and the full message will be returned on failure.
29520 The sending prompt will display the current DSN request (if any) in a
29521 shorthand form.  It will be:
29523 <P><CENTER>[Never]</CENTER>
29526 if you have requested NoErrRets.  Otherwise, it will look something like:
29528 <P><CENTER>[FDS-Hdrs]</CENTER>
29531 The &quot;F&quot; will always be there, indicating that you will be notified
29532 of failures.  (Alpine doesn't provide a way to request no failure notification
29533 and at the same time request either success or delay notification.  The only
29534 way to request no failure notifications is to request no notifications at
29535 all with NoErrRets.)  The &quot;D&quot; and/or &quot;S&quot; will be present if you have
29536 requested Delay and/or Success notification.  If one of those is missing,
29537 that means you are requesting no notification of the corresponding type.
29538 After the dash it will say either Hdrs or Full.  Hdrs means to return only
29539 the headers and Full means to return the full message (applies to
29540 failure notifications only).
29543 NOTE: This feature relies on your system's mail transport agent or
29544 configured
29545 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
29546 having the negotiation mechanism introduced in
29547 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
29548 &quot;Delivery Status Notification&quot; (DSN).  If the mail tranport agent you
29549 are using doesn't support DSN, a short warning will be shown to you on
29550 the message line at the bottom of the screen after you send your message,
29551 but your message will have been sent anyway.
29554 Note that DSNs don't provide a mechanism to request read receipts.  That
29555 is, if you request notification on success you are notified when the
29556 message is delivered to the mailbox, not when the message is read.
29559 ESMTP allows for graceful migration to upgraded mail transfer agents, but
29560 it is possible that this feature might cause problems for some servers. 
29563 &lt;End of help on this topic&gt;
29564 </BODY>
29565 </HTML>
29566 ====== h_config_auto_zoom =====
29567 <HTML>
29568 <HEAD>
29569 <TITLE>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></TITLE>
29570 </HEAD>
29571 <BODY>
29572 <H1>FEATURE: <!--#echo var="FEAT_auto-zoom-after-select"--></H1>
29574 This feature affects the behavior of the Select command.
29575 If set, the select command will automatically perform a zoom
29576 after the select is complete.
29577 This feature is set by default.
29579 Some related help topics are
29580 <UL>
29581 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29582 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29583 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29584 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29585 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29586 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29587 </UL>
29590 &lt;End of help on this topic&gt;
29591 </BODY>
29592 </HTML>
29593 ====== h_config_auto_unzoom =====
29594 <HTML>
29595 <HEAD>
29596 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></TITLE>
29597 </HEAD>
29598 <BODY>
29599 <H1>FEATURE: <!--#echo var="FEAT_auto-unzoom-after-apply"--></H1>
29601 This feature affects the behavior of the Apply command.  If set, and if
29602 you are currently looking at a Zoomed Index view of selected messages,
29603 the Apply command will do the operation you specify, but then will
29604 implicitly do an &quot;UnZoom&quot;, so that you will automatically be back in
29605 the normal Index view after the Apply. 
29606 This feature is set by default.
29609 Some related help topics are
29610 <UL>
29611 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29612 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29613 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29614 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
29615 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29616 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29617 </UL>
29619 &lt;End of help on this topic&gt;
29620 </BODY>
29621 </HTML>
29622 ====== h_config_auto_unselect =====
29623 <HTML>
29624 <HEAD>
29625 <TITLE>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></TITLE>
29626 </HEAD>
29627 <BODY>
29628 <H1>FEATURE: <!--#echo var="FEAT_auto-unselect-after-apply"--></H1>
29630 This feature affects the behavior of the Apply command.  If set,
29631 the Apply command will do the operation you specify, but then will
29632 implicitly do an &quot;UnSelect All&quot;, so that you will automatically be back in
29633 the normal Index view after the Apply. 
29636 Some related help topics are
29637 <UL>
29638 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
29639 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
29640 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
29641 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>, and
29642 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
29643 <LI> <A HREF="h_config_select_wo_confirm"><!--#echo var="FEAT_select-without-confirm"--></A>.
29644 </UL>
29646 &lt;End of help on this topic&gt;
29647 </BODY>
29648 </HTML>
29649 ====== h_config_fast_recent =====
29650 <HTML>
29651 <HEAD>
29652 <TITLE>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></TITLE>
29653 </HEAD>
29654 <BODY>
29655 <H1>FEATURE: <!--#echo var="FEAT_enable-fast-recent-test"--></H1>
29657 This feature controls the behavior of the TAB key when traversing folders
29658 in the optional 
29659 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
29660 collection or in optional <!--#echo var="VAR_news-collections"-->.
29663 When the TAB
29664 (<A HREF="h_common_nextnew">NextNew</A>)
29665 key is pressed, the default behavior is to
29666 explicitly examine the status of the folder for the number of recent
29667 messages (messages delivered since the last time it was viewed).
29668 Depending on the size and number of messages in the folder, this test
29669 can be time consuming.
29672 Enabling this feature will cause Alpine to only test for the existence of
29673 any recent messages rather than to obtain the count.  This is much faster
29674 in many cases.  The downside is that you're not given the number of recent
29675 messages when prompted to view the next folder.
29676 If the feature
29677 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
29678 is turned on, then the present feature will have no effect.
29681 <UL>   
29682 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29683 </UL><P>
29684 &lt;End of help on this topic&gt;
29685 </BODY>
29686 </HTML>
29687 ====== h_config_arrow_nav =====
29688 <HTML>
29689 <HEAD>
29690 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></TITLE>
29691 </HEAD>
29692 <BODY>
29693 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation"--></H1>
29695 This feature controls the behavior of the left and right arrow keys.
29696 If set, the left and right arrow keys will operate like the usual
29697 navigation keys &lt; and &gt;.
29698 This feature is set by default.
29701 If you set this feature, and do not like the changed behavior of the up/down 
29702 arrow 
29703 keys when navigating through the FOLDER LIST screen -- 
29704 <B>first</B> from column to column, if more than one folder is 
29705 displayed per row, 
29706 and <B>then</B> from row to row -- you may either also wish to set the feature 
29707 &quot;<A HREF="h_config_relaxed_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></A>&quot;, 
29708 &quot;<A HREF="h_config_single_list"><!--#echo var="FEAT_single-column-folder-list"--></A>&quot;, or
29709 use the ^P/^N (instead of up/down arrow) keys to move up/down the list of 
29710 folders in each column.
29712 <UL>   
29713 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29714 </UL><P>
29715 &lt;End of help on this topic&gt;
29716 </BODY>
29717 </HTML>
29718 ====== h_config_relaxed_arrow_nav =====
29719 <HTML>
29720 <HEAD>
29721 <TITLE>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></TITLE>
29722 </HEAD>
29723 <BODY>
29724 <H1>FEATURE: <!--#echo var="FEAT_enable-arrow-navigation-relaxed"--></H1>
29726 This feature controls the behavior of the left, right, up and down
29727 arrow keys in the FOLDER LIST screen when the &quot;<A
29728 HREF="h_config_arrow_nav"><!--#echo var="FEAT_enable-arrow-navigation"--></A>&quot; feature is
29729 set.
29730 This feature is set by default.
29734 When this feature is set, the left and right
29735 arrow keys in the FOLDER LIST screen
29736 move the highlight bar to the left or right, and the up and
29737 down arrows move it up or down.
29740 When the &quot;<!--#echo var="FEAT_enable-arrow-navigation"-->&quot; feature is set and this
29741 feature is not set;
29742 the left and right arrow keys in the Folder List screen strictly
29743 track the commands bound to the '&lt;' and '&gt;' keys, and the up
29744 and down arrow keys move the highlight bar to the previous and next
29745 folder or directory name.
29748 <UL>   
29749 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
29750 </UL><P>
29751 &lt;End of help on this topic&gt;
29752 </BODY>
29753 </HTML>
29754 ====== h_config_alt_compose_menu =====
29755 <HTML>
29756 <HEAD>
29757 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></TITLE>
29758 </HEAD>
29759 <BODY>
29760 <H1>FEATURE: <!--#echo var="FEAT_alternate-compose-menu"--></H1>
29762 This feature controls the menu that is displayed when Compose is selected.
29763 If set, a list of options will be presented, with each option representing
29764 the type of composition that could be used. This feature is most useful for
29765 users who want to avoid being prompted with each option separately, or who
29766 want to avoid the checking of remote postponed or form letter folders.
29767 The possible types of composition are:
29770 New, for starting a new composition. Note that if New is selected and roles
29771 are set, roles are checked for matches and applied according to the setting
29772 of the matching role.
29775 Interrupted, for continuing an interrupted composition. This option is only
29776 offered if an interrupted message folder is detected.
29779 Postponed, for continuing postponed compositions. This option is offered
29780 if a <!--#echo var="VAR_postponed-folder"--> is set in the config REGARDLESS OF whether or not
29781 the postponed folder actually exists. This option is especially handy
29782 for avoiding having to check for the existence of a remote postponed folder.
29785 Form, for using form letters. This option is offered if the <!--#echo var="VAR_form-letter-folder"-->
29786 is set in the config, and is not checked for existence for reasons similar
29787 to those explained by the postponed option.
29790 setRole, for selecting a role to apply to a composition.
29793 &lt;End of help on this topic&gt;
29794 </BODY>
29795 </HTML>
29796 ====== h_config_alt_role_menu =====
29797 <HTML>
29798 <HEAD>
29799 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></TITLE>
29800 </HEAD>
29801 <BODY>
29802 <H1>FEATURE: <!--#echo var="FEAT_alternate-role-menu"--></H1>
29804 Normally the <A HREF="h_common_role">Role Command</A> allows you to choose
29805 a role and compose a new message using that role.
29806 When this feature is set, the role command will first ask whether you want to
29807 Compose a new message, Forward the current message, Reply to the
29808 current message, or Bounce the current message.
29809 If you are not in the MESSAGE INDEX and are not viewing a message,
29810 then there is no current message and the question will be skipped.
29811 After you have chosen to Compose, Forward, Reply, or Bounce you will
29812 then choose the role to be used.
29814 When Bouncing the &quot;Set From&quot; address is used for the
29815 Resent-From header, the &quot;Set Fcc&quot; value is used for the Fcc
29816 provided that the option
29817 <A HREF="h_config_fcc_on_bounce">&quot;<!--#echo var="FEAT_fcc-on-bounce"-->&quot;</A> is turned on,
29818 and the &quot;Use SMTP Server&quot; value is used for the SMTP server, if
29819 set.
29820 Other actions of the role are ignored when Bouncing.
29823 &lt;End of help on this topic&gt;
29824 </BODY>
29825 </HTML>
29826 ====== h_config_always_spell_check =====
29827 <HTML>
29828 <HEAD>
29829 <TITLE>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></TITLE>
29830 </HEAD>
29831 <BODY>
29832 <H1>FEATURE: <!--#echo var="FEAT_spell-check-before-sending"--></H1>
29834 When this feature is set, every composed message will be spell-checked before
29835 being sent.
29837 &lt;End of help on this topic&gt;
29838 </BODY>
29839 </HTML>
29840 ====== h_config_quell_asterisks =====
29841 <HTML>
29842 <HEAD>
29843 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></TITLE>
29844 </HEAD>
29845 <BODY>
29846 <H1>FEATURE: <!--#echo var="FEAT_suppress-asterisks-in-password-prompt"--></H1>
29848 When you are running Alpine you will sometimes be asked for a password
29849 in a prompt on the third line from the bottom of the screen.
29850 Normally each password character you type will cause an asterisk to echo
29851 on the screen. That gives you some feedback to know that your typing is
29852 being recognized.
29853 There is a very slight security risk in doing it this way because someone
29854 watching over your shoulder might be able to see how many characters there
29855 are in your password.
29856 If you'd like to suppress the echoing of the asterisks set this feature.
29858 &lt;End of help on this topic&gt;
29859 </BODY>
29860 </HTML>
29861 ====== h_config_quell_flowed_text =====
29862 <HTML>
29863 <HEAD>
29864 <TITLE>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></TITLE>
29865 </HEAD>
29866 <BODY>
29867 <H1>FEATURE: <!--#echo var="FEAT_quell-flowed-text"--></H1>
29869 Alpine generates flowed text where possible.
29870 The method for generating flowed text is defined by
29871 <A HREF="http://www.ietf.org/rfc/rfc3676.txt">RFC 3676</A>,
29872 the benefit of doing so is
29873 to send message text that can properly be viewed both on normal width displays
29874 and on displays with smaller or larger than normal screen widths.
29875 With flowed text, a space at the end of a line tells the receiving mail
29876 client that the following line belongs to the same paragraph.
29877 Quoted text will also be affected, with only the innermost
29878 level of &quot;&gt;&quot; quoting being followed by a space.
29879 However, if you have changed the
29880 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
29881 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
29882 quoted text will not be flowed.
29883 For this reason, we recommend that you leave your
29884 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; set to the default.
29886 This feature turns off the generation of flowed text, as it might be
29887 desired to more tightly control how a message is displayed on the receiving end.
29889 If this feature is <EM>not</EM> set, you can control on a message by message
29890 basis whether or not flowed text is generated.
29891 You do this by typing ^V at the Send confirmation prompt that you get
29892 after typing ^X to send a message.
29893 ^V is a toggle that turns flowing off and back on if typed again.
29894 If for some reason flowing cannot be done on a particular message, then the
29895 ^V command will not be available.
29896 This would be the case, for example, if this feature was set, or if your
29897 &quot;<!--#echo var="VAR_reply-indent-string"-->&quot; was set to a non-default value.
29898 If the feature
29899 <A HREF="h_config_send_wo_confirm">&quot;<!--#echo var="FEAT_send-without-confirm"-->&quot;</A> is set,
29900 then the opportunity to control on a message by message basis
29901 whether or not flowed text is generated is lost.
29903 When this feature is not set and you have typed ^V to turn off flowing,
29904 the Send confirmation prompt will change to look like
29906 <CENTER><SAMP>Send message (not flowed)?</SAMP></CENTER>
29908 <A HREF="h_config_strip_ws_before_send">&quot;<!--#echo var="FEAT_strip-whitespace-before-send"-->&quot;</A> will
29909 also turn off the sending of flowed text messages, but it differs in that
29910 it also trims all trailing white space from a message before sending it.
29912 If alternate editors are used extensively, be aware that a message will still
29913 be sent flowed if this feature is unset.  In most cases this will be fine,
29914 but if the editor has a &quot;flowed text&quot; mode, it would be best to
29915 use that.
29917 &lt;End of help on this topic&gt;
29918 </BODY>
29919 </HTML>
29920 ====== h_config_strip_ws_before_send =====
29921 <HTML>
29922 <HEAD>
29923 <TITLE>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></TITLE>
29924 </HEAD>
29925 <BODY>
29926 <H1>FEATURE: <!--#echo var="FEAT_strip-whitespace-before-send"--></H1>
29928 By default, trailing whitespace is not stripped from
29929 a message before sending.  Trailing whitespace should have no effect on an
29930 email message, and in flowed text can aid in delimiting paragraphs.
29931 However, the old behavior of stripping trailing whitespace was in place
29932 to better deal with older clients that couldn't handle certain types of
29933 text encodings.  This feature restores the old behavior
29935 Trailing whitespace is of aid to flowed-text-formatted messages, which are
29936 generated by default but can be turned off via the
29937 <A HREF="h_config_quell_flowed_text">&quot;<!--#echo var="FEAT_quell-flowed-text"-->&quot;</A> feature.
29938 <!--#echo var="FEAT_strip-whitespace-before-send"--> also has the effect of turning off sending
29939 of flowed text.
29941 &lt;End of help on this topic&gt;
29942 </BODY>
29943 </HTML>
29944 ====== h_config_alt_reply_menu =====
29945 <HTML>
29946 <HEAD>
29947 <TITLE>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></TITLE>
29948 </HEAD>
29949 <BODY>
29950 <H1>FEATURE: <!--#echo var="FEAT_alternate-reply-menu"--></H1>
29952 Note that if this option is enabled, then the option
29953 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
29954 is ignored. See below to understand why.
29956 When you reply to a message, a series of questions are asked that 
29957 determines how your reply will be handled by Alpine. This feature only 
29958 affects the result of the first question you are asked, and its purpose is 
29959 to set values that could override defaults set in Alpine's main 
29960 configuration screen. As a result, this menu allows you to configure even 
29961 more features than you would be able to do without this option. For 
29962 example, this menu always allows you to override or select a <A 
29963 HREF="h_rules_roles">Role</A> if you have defined one, or allows you to 
29964 override your indent string, regardless of if you have enabled 
29965 <A HREF="h_config_prefix_editing"><!--#echo var="FEAT_enable-reply-indent-string-editing"--></A>.
29966 The full list of options can be found below.
29968 Here is an example of how this option works. After you press Reply,
29969 if you see &quot;A Inc Attach&quot; in the menu, it means that 
29970 if you press &quot;A&quot;, then Alpine will include the attachments
29971 of the original message, and the default is not to include them. 
29972 Conversely, if you see &quot;A No Attach&quot; 
29973 then by pressing &quot;A&quot; Alpine will not include
29974 attachments in your reply, and the default is that Alpine will 
29975 include them in your reply. The value that you see when you 
29976 start your reply is controlled by the option
29977 <A HREF="h_config_attach_in_reply">
29978 <!--#echo var="FEAT_include-attachments-in-reply"-->
29979 </A>. If the feature is enabled, then Alpine will display 
29980 &quot;A No Attach&quot; to override the default behavior. You can
29981 toggle between the two values of this option by pressing &quot;A&quot;.
29982 Remember that the value that you see in the menu is the action that will 
29983 be done when you press the associated command.
29985 Below are your options:
29986 <OL>
29987 <LI><B>A</B>: This determines if Alpine will include or not the 
29988 attachments sent to you in the message that you are replying to. The default 
29989 is to use the value of the configuration option 
29990 <A HREF="h_config_attach_in_reply"><!--#echo var="FEAT_include-attachments-in-reply"--></A> and can be overriden by using this command.
29992 <LI><B>H</B>: This command determines if the headers of a message are
29993 included in the body of the message that is being replied to. By default 
29994 Alpine will use the value of the configuration option 
29995 <A HREF="h_config_include_header"><!--#echo var="FEAT_include-header-in-reply"--></A>. 
29996 Observe that by toggling this option to include headers, text will be toggled
29997 to be included by default.
29999 <LI><B>R</B>: Can be used to set a role different from the default.
30001 <LI><B>S</B>: Determines if Alpine will strip the signature from a 
30002 message. The default is to strip the signature when the message is not
30003 viewed in headers mode, and you either have enabled
30004 <A HREF="h_config_sigdashes"><!--#echo var="FEAT_enable-sigdashes"--></A> 
30006 <A HREF="h_config_strip_sigdashes"><!--#echo var="FEAT_strip-from-sigdashes-on-reply"--></A>.
30008 <LI><B>Ctrl-R</B>: Can be used to edit the 
30009 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>.
30010 </OL>
30012 In order to include the text of the original message in the reply
30013 you either need to press 'y' to include the original text, or 'n' to 
30014 exclude it from the reply. Pressing return will execute the default 
30015 action, which is to include text only if the option
30016 <A HREF="h_config_auto_include_reply"><!--#echo var="FEAT_include-text-in-reply"--></A>
30017 is enabled. However, notice that the default is to include text if you edit the 
30018 reply indent string or if you explicitly set through this menu that you
30019 want headers included in the reply message.
30022 &lt;End of help on this topic&gt;
30023 </BODY>
30024 </HTML>
30025 ====== h_config_del_from_dot =====
30026 <HTML>
30027 <HEAD>
30028 <TITLE>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></TITLE>
30029 </HEAD>
30030 <BODY>
30031 <H1>FEATURE: <!--#echo var="FEAT_compose-cut-from-cursor"--></H1>
30033 This feature controls the behavior of the Ctrl-K command in the composer.
30034 If set, ^K will cut from the current cursor position to the end of the line,
30035 rather than cutting the entire line.
30038 &lt;End of help on this topic&gt;
30039 </BODY>
30040 </HTML>
30041 ====== h_config_print_index =====
30042 <HTML>
30043 <HEAD>
30044 <TITLE>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></TITLE>
30045 </HEAD>
30046 <BODY>
30047 <H1>FEATURE: <!--#echo var="FEAT_print-index-enabled"--></H1>
30049 This feature controls the behavior of the Print command when in the
30050 MESSAGE INDEX screen.  If set, the print command will give you a prompt
30051 asking if you wish to print the message index, or the currently highlighted
30052 message. If not set, the message will be printed.
30055 &lt;End of help on this topic&gt;
30056 </BODY>
30057 </HTML>
30058 ====== h_config_allow_talk =====
30059 <HTML>
30060 <HEAD>
30061 <TITLE>FEATURE: <!--#echo var="FEAT_allow-talk"--></TITLE>
30062 </HEAD>
30063 <BODY>
30064 <H1>FEATURE: <!--#echo var="FEAT_allow-talk"--></H1>
30066 UNIX Alpine only.
30068 By default, permission for others to &quot;talk&quot; to your terminal is turned
30069 off when you are running Alpine.  When this feature is set, permission is
30070 instead turned on.  If enabled, you may see unexpected messages in the
30071 middle of your Alpine screen from someone attempting to contact you via the
30072 &quot;talk&quot; program.
30075 NOTE: The &quot;talk&quot; program has nothing to do with Alpine or email.  The 
30076 talk daemon on your system will attempt to print a message on your screen 
30077 when someone else is trying to contact you.  If you wish to see these
30078 messages while you are running Alpine, you should enable this feature.
30081 If you do enable this feature and see a &quot;talk&quot; message, you must 
30082 suspend or quit Alpine before you can respond.
30085 &lt;End of help on this topic&gt;
30086 </BODY>
30087 </HTML>
30088 ====== h_config_send_filter_dflt =====
30089 <HTML>
30090 <HEAD>
30091 <TITLE>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></TITLE>
30092 </HEAD>
30093 <BODY>
30094 <H1>FEATURE: <!--#echo var="FEAT_compose-send-offers-first-filter"--></H1>
30095 If you have <A HREF="h_config_sending_filter">&quot;<!--#echo var="VAR_sending-filters"-->&quot;</A> 
30096 configured, setting this feature will cause
30097 the first filter in the <!--#echo var="VAR_sending-filters"--> list to be offered as the default
30098 instead of unfiltered, the usual default.
30100 <UL>   
30101 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30102 </UL><P>
30103 &lt;End of help on this topic&gt;
30104 </BODY>
30105 </HTML>
30106 ====== h_config_custom_print =====
30107 <HTML>
30108 <HEAD>
30109 <TITLE>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></TITLE>
30110 </HEAD>
30111 <BODY>
30112 <H1>FEATURE: <!--#echo var="FEAT_print-offers-custom-cmd-prompt"--></H1>
30114 When this feature is set, the print command will have an additional
30115 subcommand called "C CustomPrint".  If selected, you will have
30116 the opportunity to enter any system print command --instead of being 
30117 restricted to using those that have been previously configured in the 
30118 printer setup menu.
30121 &lt;End of help on this topic&gt;
30122 </BODY>
30123 </HTML>
30124 ====== h_config_enable_dot_files =====
30125 <HTML>
30126 <HEAD>
30127 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></TITLE>
30128 </HEAD>
30129 <BODY>
30130 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-files"--></H1>
30132 When this feature is set, files beginning with dot (".") will be
30133 visible in the file browser.  For example, you'll be able to select them
30134 when using the browser to add an attachment to a message.
30136 &lt;End of help on this topic&gt;
30137 </BODY>
30138 </HTML>
30139 ====== h_config_enable_dot_folders =====
30140 <HTML>
30141 <HEAD>        
30142 <TITLE>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></TITLE>
30143 </HEAD>
30144 <BODY>
30145 <H1>FEATURE: <!--#echo var="FEAT_enable-dot-folders"--></H1>
30147 When this feature is set, folders beginning with dot (".") may be added
30148 and viewed.
30150 &lt;End of help on this topic&gt;
30151 </BODY>
30152 </HTML>
30153 ====== h_config_ff_between_msgs =====
30154 <HTML>
30155 <HEAD>
30156 <TITLE>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></TITLE>
30157 </HEAD>
30158 <BODY>
30159 <H1>FEATURE: <!--#echo var="FEAT_print-formfeed-between-messages"--></H1>
30161 Setting this feature causes a formfeed to be printed between messages when
30162 printing multiple messages (with Apply Print command).
30164 &lt;End of help on this topic&gt;
30165 </BODY>
30166 </HTML>
30167 ====== h_config_blank_keymenu =====
30168 <HTML>
30169 <HEAD>
30170 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></TITLE>
30171 </HEAD>
30172 <BODY>
30173 <H1>FEATURE: <!--#echo var="FEAT_disable-keymenu"--></H1>
30175 If this feature is set the command key menu that normally appears on the
30176 bottom two lines of the screen will not usually be there.  Asking for
30177 help with ^G or ? will cause the key menu to appear instead of causing
30178 the help message to come up.  If you want to actually see the help text,
30179 another ^G or ? will show it to you.  After the key menu has popped
30180 up with the help key it will remain there for an O for Other command but
30181 disappear if any other command is typed.
30183 &lt;End of help on this topic&gt;
30184 </BODY>
30185 </HTML>
30186 ====== h_config_enable_mouse =====
30187 <HTML>
30188 <HEAD>
30189 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></TITLE>
30190 </HEAD>
30191 <BODY>
30192 <H1>FEATURE: <!--#echo var="FEAT_enable-mouse-in-xterm"--></H1>
30194 This feature controls whether or not an X terminal mouse can be used with
30195 Alpine.  If set, and the $DISPLAY variable indicates that an X terminal is
30196 being used, the left mouse button on the mouse can be used to select text
30197 or commands.
30198 Clicking on a command at the bottom of the screen will behave as if you had
30199 typed that command.
30200 Clicking on an index line will move the current message highlight to
30201 that line.
30202 Double-clicking on an index line will view the message.
30203 Double-clicking on a link will view the link.
30205 This type of mouse support will also work in some terminal emulators which are
30206 not actually X terminals, but which have extra code to support the xterm
30207 style mouse.
30208 For those emulators you not only need to turn this feature on but you also
30209 have to set the $DISPLAY environment variable even though it isn't needed
30210 for your terminal.
30211 That will cause Alpine to think that it is an xterm and to properly interpret the
30212 escape sequences sent by the mouse.
30214 Note: if this feature is set, the behavior of X terminal cut-and-paste is
30215 also modified.  It is sometimes possible to hold the shift key down while clicking
30216 left or middle mouse buttons for the normal xterm cut/paste operations. 
30217 There is also an Alpine command to toggle this mode on or off.
30218 The command is Ctrl-&#92; (Control-backslash).
30220 &lt;End of help on this topic&gt;
30221 </BODY>
30222 </HTML>
30223 ====== h_config_enable_xterm_newmail =====
30224 <HTML>
30225 <HEAD>        
30226 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></TITLE>
30227 </HEAD>
30228 <BODY>
30229 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></H1>
30231 This feature controls whether or not Alpine will attempt to announce new
30232 mail arrival when it is running in an X terminal window and that window
30233 is iconified.  If set, and the $DISPLAY variable indicates that an X
30234 terminal is being used, Alpine will send appropriate escape sequences to
30235 the X terminal to modify the label on Alpine's icon to indicate that new
30236 mail has arrived. Alpine will also modify the Alpine window's title to
30237 indicate new mail.
30238 See also <a href="h_config_enable_newmail_short_text"><!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></a>.
30240 &lt;End of help on this topic&gt;
30241 </BODY></HTML>
30242 ====== h_config_enable_newmail_short_text =====
30243 <HTML>
30244 <HEAD>        
30245 <TITLE>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></TITLE>
30246 </HEAD>
30247 <BODY>
30248 <H1>FEATURE: <!--#echo var="FEAT_enable-newmail-short-text-in-icon"--></H1>
30250 This feature controls the text to be displayed in an icon in the event
30251 of a new message arrival.  Normally, the message will
30252 be the one that is displayed on the screen.  This feature shortens the
30253 message to a count of the number of new messages in brackets.  This may be
30254 more useful for those who use the window's title bar in the task bar as a
30255 new mail indicator.  This feature is only useful if the
30256 <A HREF="h_config_enable_xterm_newmail"><!--#echo var="FEAT_enable-newmail-in-xterm-icon"--></A>
30257 feature is also set.  Like the <!--#echo var="FEAT_enable-newmail-in-xterm-icon"-->
30258 feature, this feature is only relevant when run in an xterm environment.
30260 &lt;End of help on this topic&gt;
30261 </BODY></HTML>
30262 ====== h_config_copy_to_to_from =====
30263 <HTML>
30264 <HEAD>
30265 <TITLE>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></TITLE>
30266 </HEAD>
30267 <BODY>
30268 <H1>FEATURE: <!--#echo var="FEAT_copy-to-address-to-from-if-it-is-us"--></H1>
30270 This feature affects the From address used when Replying to a message.
30271 It is probably only useful if you have some
30272 <a href="h_config_alt_addresses"><!--#echo var="VAR_alt-addresses"--></a>
30273 defined.
30274 When enabled, it checks to see if any of the addresses in the To or Cc
30275 fields of the message you are replying to is one of your addresses.
30276 If it is, and there is only one of them, then that address is used as
30277 the From address in the message you are composing.
30278 In other words, you will be using a From address that is the same
30279 as the To address that was used to get the mail to you in the first place.
30282 If a role is being used and it has a From address defined, that From address will
30283 be used rather than the one derived from this feature.
30286 <UL>   
30287 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30288 </UL><P>
30289 &lt;End of help on this topic&gt;
30290 </BODY>
30291 </HTML>
30292 ====== h_config_prefix_editing =====
30293 <HTML>
30294 <HEAD>
30295 <TITLE>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></TITLE>
30296 </HEAD>
30297 <BODY>
30298 <H1>FEATURE: <!--#echo var="FEAT_enable-reply-indent-string-editing"--></H1>
30300 This feature affects the Reply command's &quot;Include original message
30301 in Reply?&quot; prompt.  When enabled, it causes the
30302 &quot;Edit Indent String&quot; sub-command to appear which allows 
30303 you to edit the string Alpine would otherwise use to denote included 
30304 text from the message being replied to.<P>
30306 Thus, you can change Alpine's default message quote character (usually
30307 an angle bracket) on a per message basis. So you could change your quoted message to
30308 look, for example, like this:<p>
30310 <pre>On Tues, 26 Jan 1999, John Q. Smith wrote:
30312 John: I just wanted to say hello and to congratulate you
30313 John: on a job well done!</pre><p>
30315 The configuration option
30316 <A HREF="h_config_reply_indent_string">&quot;<!--#echo var="VAR_reply-indent-string"-->&quot;</A>
30317 may be used to change what appears as the default string to be edited.
30319 NOTE: Edited <!--#echo var="VAR_reply-indent-string"--> only apply to the message
30320 currently being replied to.
30322 If you change your <!--#echo var="VAR_reply-indent-string"-->
30323 so that it is not equal to the default value of &quot;&gt;&nbsp;&quot;, then
30324 quoted text will not be flowed
30325 (<A HREF="h_config_quell_flowed_text">Flowed Text</A>)
30326 when you reply.
30327 For this reason, we recommend that you leave your <!--#echo var="VAR_reply-indent-string"-->
30328 set to the default value.
30330 <UL>   
30331 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30332 </UL><P>
30333 &lt;End of help on this topic&gt;
30334 </BODY>
30335 </HTML>
30336 ====== h_config_enable_search_and_repl =====
30337 <HTML>
30338 <HEAD>
30339 <TITLE>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></TITLE>
30340 </HEAD>
30341 <BODY>
30342 <H1>FEATURE: <!--#echo var="FEAT_enable-search-and-replace"--></H1>
30344 This feature modifies the behavior of Alpine's composer.  Setting this
30345 feature causes Alpine to offer the "^R Replace" subcommand, which
30346 allows you to search and replace text strings in a message you are composing, 
30347 inside the "^W Where is" command.  
30351 To search and replace text, first enter the text to be replaced at the 
30352 "Search: " prompt.  Then, rather than pressing Enter to just search for that
30353 text, press ^R, which turns the prompt into 
30357 Search (to replace): 
30361 and then press Enter.  The cursor will highlight the first occurrence 
30362 of the text string you entered, and the prompt will show: 
30366 Replace "<your text string>" with : 
30370 where <your text string> is what you entered at the previous prompt;
30371 here, enter the replacement text.  To only replace the highlighted 
30372 occurrence, simply press Enter now; to replace all occurrences in the 
30373 message, press ^X (Repl All), then Enter.  You will then be asked to confirm 
30374 each replacement.
30378 The command ^R toggles between "Replace" and "Don't Replace"; its subcommand
30379 ^X toggles between "Replace All" and "Replace One."
30383 If you previously searched for text in a message, it will be offered for 
30384 re-use as part of the prompt, shown in [ ] brackets.
30387 &lt;End of help on this topic&gt;
30388 </BODY>
30389 </HTML>
30390 ====== h_config_enable_view_attach =====
30391 <HTML>
30392 <HEAD>
30393 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></TITLE>
30394 </HEAD>
30395 <BODY>
30396 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-attachments"--></H1>
30398 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30399 Setting this feature causes Alpine to present attachments in boldface.
30400 The first available attachment is displayed in inverse.  This is the
30401 "selected" attachment.  Pressing RETURN will cause Alpine to display
30402 the selected attachment.  Use the arrow keys to change which of the
30403 attachments displayed in boldface is the current selection.
30407 Speaking of arrow keys, the Up and Down Arrows will select the next
30408 and previous attachments if one is available on the screen for selection.
30409 Otherwise, they will simply adjust the viewed text one line up or down.
30413 Similarly, when selectable items are present in a message, the Ctrl-F key
30414 can be used to select the next item in the message independent of which
30415 portion of the viewed message is currently displayed. The Ctrl-B key can
30416 be used to select the previous item in the same way. 
30417 <P> 
30418 &lt;End of help on this topic&gt;
30419 </BODY>
30420 </HTML>
30421 ====== h_config_enable_y_print =====
30422 <HTML>
30423 <HEAD>
30424 <TITLE>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></TITLE>
30425 </HEAD>
30426 <BODY>
30427 <H1>FEATURE: <!--#echo var="FEAT_enable-print-via-y-command"--></H1>
30429 This feature modifies the behavior of Alpine's Print command.
30431 By default, Alpine's print command is available by pressing the "%" key.  
30432 (This command is a substantial change from Pine versions before 4.00 -- 
30433 where the print command was "Y" -- based on numerous complaints about 
30434 printing being invoked inadvertently, since Y also means "Yes.")  
30438 This feature is supplied to mitigate any disruption or anxiety users 
30439 might feel as a result of this change.  
30443 Enabling this feature will cause Alpine to recognize both the old
30444 command, "Y" for Prynt, as well the new "%" method for invoking
30445 printing.  Note, key menu labels are not changed as a result of
30446 enabling this feature.
30450 &lt;End of help on this topic&gt;
30451 </BODY>
30452 </HTML>
30453 ====== h_config_enable_lessthan_exit =====
30454 <HTML>
30455 <HEAD>
30456 <TITLE>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></TITLE>
30457 </HEAD>
30458 <BODY>
30459 <H1>FEATURE: <!--#echo var="FEAT_enable-exit-via-lessthan-command"--></H1>
30461 If this feature is set, then on screens where there is an Exit command
30462 but no < command, the < key will perform the same function as the Exit
30463 command.
30464 This feature is set by default.
30466 &lt;End of help on this topic&gt;
30467 </BODY>
30468 </HTML>
30469 ====== h_config_enable_view_url =====
30470 <HTML>
30471 <HEAD>
30472 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></TITLE>
30473 </HEAD>
30474 <BODY>
30475 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-urls"--></H1>
30476 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30477 When this feature is set (the default) Alpine will select possible URLs from the
30478 displayed text and display them in boldface for selection.
30480 The first available URL is displayed in inverse.  This is the
30481 &quot;selected&quot; URL.  Pressing RETURN will cause Alpine to display
30482 the selected URL via either built-in means as with mailto:, imap:,
30483 news:, and nntp:, or via an external application as defined
30484 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30485 variable.
30487 Use the arrow keys to change which of the URLs displayed in boldface
30488 is the current selection.
30490 Speaking of arrow keys, the Up and Down Arrows will select the next
30491 and previous URL if one is available on the screen for selection (unless 
30492 you have set the feature 
30493 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>).
30494 Otherwise, they will simply adjust the viewed text one line up or down.
30496 Similarly, when selectable items are present in a message, the Ctrl-F
30497 key can be used to select the next item in the message independent
30498 of which portion of the viewed message is currently displayed. The
30499 Ctrl-B key can be used to select the previous item in the same way.
30501 <UL>   
30502 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30503 </UL><P>
30504 &lt;End of help on this topic&gt;
30505 </BODY>
30506 </HTML>
30507 ====== h_config_enable_view_web_host =====
30508 <HTML>
30509 <HEAD>
30510 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></TITLE>
30511 </HEAD>
30512 <BODY>
30513 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-web-hostnames"--></H1>
30515 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30516 When this feature is set (the default) Alpine will select possible web hostnames
30517 from the displayed text and display them in boldface for selection.  
30518 This can be useful when you receive messages referencing World Wide Web 
30519 sites without the use of complete URLs; for example, specifying only 
30520 &quot;www.some.site.com&quot; (which will <B>not</B> become a 
30521 selectable 
30522 item by setting <A HREF="h_config_enable_view_url">&quot;<!--#echo var="FEAT_enable-msg-view-urls"-->&quot;</A>) 
30523 rather than explicitly
30524 &quot;http://www.some.site.com&quot;.  
30526 The first available hostname is displayed in inverse.  This is the
30527 &quot;selected&quot; hostname.  Pressing RETURN will cause Alpine to display
30528 the selected hostname via an external application as defined
30529 by the <A HREF="h_config_browser">&quot;url-viewer&quot;</A> 
30530 variable.
30532 Use the arrow keys (unless you have set the feature 
30533 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30534 to change which of the hostnames displayed in
30535 boldface is the current selection.
30537 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30538 key can be used to select the next web hostname in the message independent
30539 of which portion of the viewed message is currently displayed. The
30540 Ctrl-B key can be used to select the previous web hostnames in the same way.
30542 <UL>   
30543 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30544 </UL><P>
30545 &lt;End of help on this topic&gt;
30546 </BODY>
30547 </HTML>
30548 ====== h_config_enable_view_addresses =====
30549 <HTML>
30550 <HEAD>
30551 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></TITLE>
30552 </HEAD>
30553 <BODY>
30554 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-addresses"--></H1>
30556 This feature modifies the behavior of Alpine's MESSAGE TEXT screen.
30557 Setting this feature causes Alpine to select possible email addresses
30558 from the displayed text and display them in boldface for selection.  
30561 The first available email address is displayed in inverse.  This is the
30562 &quot;selected&quot; address.  Pressing RETURN will cause Alpine to enter
30563 the message composition screen with the To: field filled in with the
30564 selected address.
30566 Use the arrow keys (unless you have set the feature 
30567 <A HREF="h_config_enable_view_arrows">&quot;<!--#echo var="FEAT_enable-msg-view-forced-arrows"-->&quot;</A>) 
30568 to change which of the hostnames displayed in
30569 boldface is the current selection.
30571 Similarly, when selectable web hostnames are present in a message, the Ctrl-F
30572 key can be used to select the next web hostname in the message independent
30573 of which portion of the viewed message is currently displayed. The
30574 Ctrl-B key can be used to select the previous web hostnames in the same way.
30576 <UL>   
30577 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30578 </UL><P>
30579 &lt;End of help on this topic&gt;
30580 </BODY>
30581 </HTML>
30582 ====== h_config_enable_view_arrows =====
30583 <HTML>
30584 <HEAD>
30585 <TITLE>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></TITLE>
30586 </HEAD>
30587 <BODY>
30588 <H1>FEATURE: <!--#echo var="FEAT_enable-msg-view-forced-arrows"--></H1>
30590 This feature modifies Up and Down arrow key behavior in Alpine's
30591 MESSAGE TEXT screen when selectable Attachments, URL's, or
30592 web-hostnames are presented. Alpine's usual behavior is to move to
30593 the next or previous selectable item if currently displayed or
30594 simply to adjust the screen view by one line.
30598 Setting this feature causes the UP and Down arrow key to behave as
30599 if no selectable items were present in the message.
30603 Note, the Ctrl-F (next selectable item) and Ctrl-B (previous selectable
30604 item) functionality is unchanged.
30607 &lt;End of help on this topic&gt;
30608 </BODY>
30609 <HTML>
30610 ====== h_config_quell_charset_warning =====
30611 <HTML>
30612 <HEAD>
30613 <TITLE>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></TITLE>
30614 </HEAD>
30615 <BODY>
30616 <H1>FEATURE: <!--#echo var="FEAT_quell-charset-warning"--></H1>
30618 By default, if the message you are viewing contains characters that are
30619 not representable in your
30620 <A HREF="h_config_char_set">&quot;Display Character Set&quot;</A>
30621 then Alpine will
30622 add a warning to the start of the displayed text.
30623 If this option is set, then that editorial message will be suppressed.
30625 Setting this feature also suppresses the comment about the character set
30626 in header lines.
30627 For example, when viewing a message you might see
30629 <CENTER><SAMP>From: &quot;[ISO-8859-2] Name&quot; &lt;address&gt;</SAMP></CENTER>
30631 in the From header if your Character-Set is something other than ISO-8859-2.
30632 If you set this feature, the comment about the character set will
30633 no longer be there.
30635 &lt;End of help on this topic&gt;
30636 </BODY>
30637 </HTML>
30638 ====== h_config_quell_host_after_url =====
30639 <HTML>
30640 <HEAD>
30641 <TITLE>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></TITLE>
30642 </HEAD>
30643 <BODY>
30644 <H1>FEATURE: <!--#echo var="FEAT_quell-server-after-link-in-html"--></H1>
30646 By default, links in HTML text are displayed with the host the link
30647 references appended, within square brackets, to the link text.  Alpine
30648 does this to help indicate where a link will take you, particularly when
30649 the link text might suggest a different destination.
30652 Setting this feature will prevent the server name from being appended
30653 to the displayed text.
30656 &lt;End of help on this topic&gt;
30657 </BODY>
30658 </HTML>
30659 ====== h_config_prefer_plain_text =====
30660 <HTML>
30661 <HEAD>
30662 <TITLE>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></TITLE>
30663 </HEAD>
30664 <BODY>
30665 <H1>FEATURE: <!--#echo var="FEAT_prefer-plain-text"--></H1>
30667 A message being viewed may contain alternate versions of the same content.
30668 Those alternate versions are supposed to be ordered by the sending software such that the
30669 first alternative is the least preferred and the last alternative is the
30670 most preferred. Alpine will normally display the most-preferred version that
30671 it knows how to display. This is most often encountered where the two
30672 alternate versions are a plain text version and an HTML version, with the
30673 HTML version listed last as the most preferred.
30675 If this option is set, then any plain text version will be preferred to
30676 all other versions.
30678 When viewing a message there is a command &quot;A TogglePreferPlain&quot;,
30679 which will temporarily change the sense of this option.
30680 If this option is set you will first see the plain text version of a
30681 message.
30682 If you then type the &quot;A&quot; command, you will see the most preferred version,
30683 most likely HTML, instead.
30684 Typing the &quot;A&quot; command a second time will switch it back.
30685 Alternatively, if the present option is not set you will originally see
30686 the most preferred version of the message and typing &quot;A&quot; will switch to
30687 the plain text version.
30689 &lt;End of help on this topic&gt;
30690 </BODY>
30691 </HTML>
30692 ====== h_config_pass_control =====
30693 <HTML>
30694 <HEAD>
30695 <TITLE>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></TITLE>
30696 </HEAD>
30697 <BODY>
30698 <H1>FEATURE: <!--#echo var="FEAT_pass-control-characters-as-is"--></H1>
30700 It is probably not useful to set this option.
30701 This is a legacy option left behind &quot;just in case&quot;.
30702 Multi-byte characters that have an octet that has the same
30703 value as a control character are permitted through whether or not
30704 this option is turned on.
30706 This feature controls how certain characters contained in messages are
30707 displayed.
30708 If set, all characters in a message will be sent to the
30709 screen. Normally, control characters are displayed as shown below to
30710 avoid a garbled screen and to 
30711 avoid inadvertently changing terminal setup parameters.
30712 Control characters are usually displayed as two character sequences like
30713 <P><CENTER><SAMP> ^C </SAMP></CENTER><P>
30714 for Control-C,
30715 <P><CENTER><SAMP> ^[ </SAMP></CENTER><P>
30716 for ESCAPE,
30717 <P><CENTER><SAMP> ^? </SAMP></CENTER><P>
30718 for DELETE, and
30719 <P><CENTER><SAMP> ~E </SAMP></CENTER><P>
30720 for the character with value 133 (0x85).
30721 (The DEL character is displayed as ^?, regular control characters are displayed
30722 as the character ^ followed by the character obtained by adding the
30723 five low-order bits of the character to 0x40, and the C1
30724 control characters 0x80 - 0x9F are displayed as the character ~ followed by the
30725 character obtained by adding the
30726 five low-order bits of the character to 0x40.)
30727 Sometimes, in cases where changing a single control character into a
30728 two-character sequence would confuse Alpine's display routines,
30729 a question mark is substituted for the control character.
30731 If you wish to filter out regular control characters but pass the
30732 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30733 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.
30735 &lt;End of help on this topic&gt;
30736 </BODY>
30737 </HTML>
30738 ====== h_config_pass_c1_control =====
30739 <HTML>
30740 <HEAD>
30741 <TITLE>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></TITLE>
30742 </HEAD>
30743 <BODY>
30744 <H1>FEATURE: <!--#echo var="FEAT_pass-c1-control-characters-as-is"--></H1>
30746 It is probably not useful to set this option.
30747 This is a legacy option left behind &quot;just in case&quot;.
30748 Multi-byte characters that have an octet that has the same
30749 value as a control character are permitted through whether or not
30750 this option is turned on.
30752 If the feature <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30753 is set, then this feature has no effect.
30754 However, if you wish to filter out regular control characters but pass the
30755 so-called C1 control characters (0x80 <= char < 0xA0) through unchanged, then
30756 you may leave <A HREF="h_config_pass_control"><!--#echo var="FEAT_pass-control-characters-as-is"--></A>
30757 unset and set this feature.
30759 &lt;End of help on this topic&gt;
30760 </BODY>
30761 </HTML>
30762 ====== h_config_fcc_on_bounce =====
30763 <HTML>
30764 <HEAD>
30765 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></TITLE>
30766 </HEAD>
30767 <BODY>
30768 <H1>FEATURE: <!--#echo var="FEAT_fcc-on-bounce"--></H1>
30770 This feature controls an aspect of Alpine's behavior when bouncing a
30771 message. If set, normal FCC ("File Carbon Copy") processing will be
30772 done, just as if you had composed a message to the address you are
30773 bouncing to.  If not set, no FCC of the message will be saved. 
30775 &lt;End of help on this topic&gt;
30776 </BODY>
30777 </HTML>
30778 ====== h_config_show_cursor =====
30779 <HTML>
30780 <HEAD>
30781 <TITLE>FEATURE: <!--#echo var="FEAT_show-cursor"--></TITLE>
30782 </HEAD>
30783 <BODY>
30784 <H1>FEATURE: <!--#echo var="FEAT_show-cursor"--></H1>
30786 This feature controls an aspect of Alpine's displays.  If set, the system
30787 cursor will move to convenient locations in the displays.  For example,
30788 to the beginning of the status field of the highlighted index line, or
30789 to the highlighted word after a successful WhereIs command.  It is intended
30790 to draw your attention to an "interesting" spot on the screen.
30792 &lt;End of help on this topic&gt;
30793 </BODY>
30794 </HTML>
30795 ====== h_config_sort_fcc_alpha =====
30796 <HTML>
30797 <HEAD>
30798 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></TITLE>
30799 </HEAD>
30800 <BODY>
30801 <H1>FEATURE: <!--#echo var="FEAT_sort-default-fcc-alpha"--></H1>
30803 This feature controls an aspect of Alpine's FOLDER LIST screen.
30804 If set, the default Fcc folder will be sorted alphabetically with the other
30805 folders instead of appearing right after the INBOX.
30807 &lt;End of help on this topic&gt;
30808 </BODY>
30809 </HTML>
30810 ====== h_config_sort_save_alpha =====
30811 <HTML>
30812 <HEAD>
30813 <TITLE>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></TITLE>
30814 </HEAD>
30815 <BODY>
30816 <H1>FEATURE: <!--#echo var="FEAT_sort-default-save-alpha"--></H1>
30818 This feature controls an aspect of Alpine's FOLDER LIST screen.
30819 If set, the default save folder will be sorted alphabetically with the other
30820 folders instead of appearing right after the INBOX (and default FCC folder).
30822 &lt;End of help on this topic&gt;
30823 </BODY>
30824 </HTML>
30825 ====== h_config_single_list =====
30826 <HTML>
30827 <HEAD>
30828 <TITLE>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></TITLE>
30829 </HEAD>
30830 <BODY>
30831 <H1>FEATURE: <!--#echo var="FEAT_single-column-folder-list"--></H1>
30833 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30834 the folders will be listed one per line instead of several per line
30835 in the FOLDER LIST display.
30837 &lt;End of help on this topic&gt;
30838 </BODY>
30839 </HTML>
30840 ====== h_config_vertical_list =====
30841 <HTML>
30842 <HEAD>
30843 <TITLE>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></TITLE>
30844 </HEAD>
30845 <BODY>
30846 <H1>FEATURE: <!--#echo var="FEAT_vertical-folder-list"--></H1>
30848 This feature controls an aspect of Alpine's FOLDER LIST screen.  If set,
30849 the folders will be listed alphabetically down the columns rather
30850 than across the columns as is the default.
30852 &lt;End of help on this topic&gt;
30853 </BODY>
30854 </HTML>
30855 ====== h_config_verbose_post =====
30856 <HTML>
30857 <HEAD>
30858 <TITLE>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></TITLE>
30859 </HEAD>
30860 <BODY>
30861 <H1>FEATURE: <!--#echo var="FEAT_enable-verbose-smtp-posting"--></H1>
30862 This feature controls an aspect of Alpine's message sending.  When enabled,
30863 Alpine will send a VERB (i.e., VERBose) command early in the posting process
30864 intended to cause the SMTP server to provide a more detailed account of
30865 the transaction.  This feature is typically only useful to system
30866 administrators and other support personel as an aid in troublshooting
30867 problems.
30869 Note, this feature relies on a specific capability of the system's mail
30870 transport agent or configured 
30871 <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>.  
30872 It is possible that this
30873 feature will cause problems for some tranport agents, and may result in
30874 sending failure.  In addition, as the verbose output comes from the mail
30875 transport agent, it is likely to vary from one system to another. 
30876 <P><UL>
30877 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30878 </UL><P>
30879 &lt;End of help on this topic&gt;
30880 </BODY>
30881 </HTML>
30882 ====== h_config_auto_reply_to =====
30883 <HTML>
30884 <HEAD>
30885 <TITLE>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></TITLE>
30886 </HEAD>
30887 <BODY>
30888 <H1>FEATURE: <!--#echo var="FEAT_reply-always-uses-reply-to"--></H1>
30890 This feature controls an aspect of Alpine's Reply command.  If set, Alpine
30891 will not prompt when a message being replied to contains a "Reply-To:"
30892 header value, but will simply use its value (as opposed to using the
30893 "From:" field's value).
30897 Note: Using the "Reply-To:" address is usually the preferred behavior,
30898 however, some mailing list managers choose to place the list's address in
30899 the "Reply-To:" field of any message sent out to the list.  In such
30900 cases, this feature makes it all too easy for personal replies to be
30901 inadvertently sent to the entire mail list, so be careful! 
30903 &lt;End of help on this topic&gt;
30904 </BODY>
30905 </HTML>
30906 ====== h_config_del_skips_del =====
30907 <HTML>
30908 <HEAD>
30909 <TITLE>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></TITLE>
30910 </HEAD>
30911 <BODY>
30912 <H1>FEATURE: <!--#echo var="FEAT_delete-skips-deleted"--></H1>
30914 This feature controls an aspect of Alpine's Delete command.  If set, this
30915 feature will cause the Delete command to advance past following messages that
30916 are marked deleted.  In other words, pressing "D" will both mark the
30917 current message deleted and advance to the next message that is not marked
30918 deleted.
30919 This feature is set by default.
30921 &lt;End of help on this topic&gt;
30922 </BODY></HTML>
30923 ====== h_config_expunge_manually =====
30924 <HTML>
30925 <HEAD>
30926 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></TITLE>
30927 </HEAD>
30928 <BODY>
30929 <H1>FEATURE: <!--#echo var="FEAT_expunge-only-manually"--></H1>
30931 Normally, when you close a folder that contains deleted messages you are
30932 asked if you want to expunge those messages from the folder permanently.
30933 If this feature is set, you won't be asked and the deleted messages will
30934 remain in the folder.
30935 If you choose to set this feature you will have to expunge the
30936 messages manually using the eXpunge command, which you can use while
30937 in the MESSAGE INDEX screen.
30938 If you do not expunge deleted messages the size of your
30939 folder will continue to increase until you are out of disk space.
30941 <UL>   
30942 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30943 </UL><P>
30944 &lt;End of help on this topic&gt;
30945 </BODY>
30946 </HTML>
30947 ====== h_config_auto_expunge =====
30948 <HTML>
30949 <HEAD>
30950 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></TITLE>
30951 </HEAD>
30952 <BODY>
30953 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm"--></H1>
30955 This features controls an aspect of Alpine's eXpunge command.  If set, you
30956 will <B>not</B> be prompted to confirm your intent before the expunge takes 
30957 place.
30958 Actually, this is only true for the INBOX folder and for folders in the
30959 Incoming Folders collection. See the feature
30960 <A HREF="h_config_full_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm-everywhere"-->&quot;</A>.
30962 <UL>   
30963 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30964 </UL><P>
30965 &lt;End of help on this topic&gt;
30966 </BODY>
30967 </HTML>
30968 ====== h_config_full_auto_expunge =====
30969 <HTML>
30970 <HEAD>
30971 <TITLE>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></TITLE>
30972 </HEAD>
30973 <BODY>
30974 <H1>FEATURE: <!--#echo var="FEAT_expunge-without-confirm-everywhere"--></H1>
30976 This features controls an aspect of Alpine's eXpunge command.  If set, you
30977 will <B>not</B> be prompted to confirm your intent before the expunge 
30978 takes place.  This feature sets this behavior for all folders, unlike the
30979 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A>
30980 feature that works only for incoming folders.
30982 <UL>   
30983 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
30984 </UL><P>
30985 &lt;End of help on this topic&gt;
30986 </BODY>
30987 </HTML>
30988 ====== h_config_auto_read_msgs =====
30989 <HTML>
30990 <HEAD>
30991 <TITLE>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></TITLE>
30992 </HEAD>
30993 <BODY>
30994 <H1>FEATURE: <!--#echo var="FEAT_auto-move-read-msgs"--></H1>
30995 This feature controls an aspect of Alpine's behavior upon quitting.  If set,
30996 and the 
30997 <A HREF="h_config_read_message_folder">&quot;<!--#echo var="VAR_read-message-folder"-->&quot;</A>
30998 option is also set, then Alpine will
30999 automatically transfer all read messages to the designated folder and mark
31000 them as deleted in the INBOX.  Messages in the INBOX marked with an 
31001 &quot;N&quot; (meaning New, or unseen) are not affected.
31003 <UL>   
31004 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31005 </UL><P>
31006 &lt;End of help on this topic&gt;
31007 </BODY>
31008 </HTML>
31009 ====== h_config_auto_fcc_only =====
31010 <HTML>
31011 <HEAD>
31012 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></TITLE>
31013 </HEAD>
31014 <BODY>
31015 <H1>FEATURE: <!--#echo var="FEAT_fcc-only-without-confirm"--></H1>
31016 This features controls an aspect of Alpine's composer.
31017 The only time this feature will be used is if you attempt to send mail
31018 that has no recipients but does have an Fcc.
31019 Normally, Alpine will ask if you really mean to copy the message only to
31020 the Fcc.
31021 That is, it asks if you really meant to have no recipients.
31022 If this feature is set, you
31023 will <B>not</B> be prompted to confirm your intent to make only a copy
31024 of a message with no recipients.
31026 This feature is closely related to
31027 <A HREF="h_config_warn_if_no_to_or_cc"><!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></A>.
31028 The difference between this feature and that feature is that this feature
31029 considers a Bcc to be a recipient while that feature will ask for confirmation
31030 even if there is a Bcc when there is no To, Cc, or Newsgroup.
31031 The default values also differ. This feature defaults to asking the question
31032 and you have to turn it off.
31033 The <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--> feature defaults to not asking
31034 unless you turn it on.
31037 <UL>   
31038 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31039 </UL><P>
31040 &lt;End of help on this topic&gt;
31041 </BODY>
31042 </HTML>
31043 ====== h_config_mark_fcc_seen =====
31044 <HTML>
31045 <HEAD>
31046 <TITLE>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></TITLE>
31047 </HEAD>
31048 <BODY>
31049 <H1>FEATURE: <!--#echo var="FEAT_mark-fcc-seen"--></H1>
31051 This features controls the way Fccs (File carbon copies) are
31052 made of the messages you send.
31055 Normally, when Alpine saves a copy of a message you sent as an Fcc, that
31056 copy will be marked as Unseen.
31057 When you look at the folder it was saved in the message will appear to
31058 be a New message until you read it.
31059 When this feature is enabled, the message will be marked as having
31060 been Seen.
31063 <UL>   
31064 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31065 </UL><P>
31066 &lt;End of help on this topic&gt;
31067 </BODY>
31068 </HTML>
31069 ====== h_config_no_fcc_attach =====
31070 <HTML>
31071 <HEAD>
31072 <TITLE>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></TITLE>
31073 </HEAD>
31074 <BODY>
31075 <H1>FEATURE: <!--#echo var="FEAT_fcc-without-attachments"--></H1>
31077 This features controls the way Fcc's (File carbon copies) are
31078 made of the messages you send.
31081 Normally, Alpine saves an exact copy of your message as it was sent.
31082 When this feature is enabled, the &quot;body&quot; of the message
31083 you send (the text you type in the composer) is preserved in the 
31084 copy as before, however all attachments are replaced with text
31085 explaining what had been sent rather than the attachments themselves.
31088 This feature also affects Alpine's &quot;Send ?&quot; confirmation prompt
31089 in that a new &quot;^F Fcc Attchmnts&quot; option becomes available which
31090 allows you to interactively set whether or not attachments are saved
31091 to the Fcc'd copy.
31094 <UL>   
31095 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31096 </UL><P>
31097 &lt;End of help on this topic&gt;
31098 </BODY>
31099 </HTML>
31100 ====== h_config_read_in_newsrc_order =====
31101 <HTML>
31102 <HEAD>
31103 <TITLE>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></TITLE>
31104 </HEAD>
31105 <BODY>
31106 <H1>FEATURE: <!--#echo var="FEAT_news-read-in-newsrc-order"--></H1>
31108 This feature controls the order in which newsgroups will be presented.  If
31109 set, they will be presented in the same order as they occur in your 
31110 <!--chtml if pinemode="os_windows"-->
31111 &quot;NEWSRC&quot;
31112 <!--chtml else-->
31113 &quot;.newsrc&quot;
31114 <!--chtml endif-->
31115 file (the default location of which can be changed with the 
31116 <A HREF="h_config_newsrc_path">&quot;<!--#echo var="VAR_newsrc-path"-->&quot;</A> option).  
31118 If not set, the newsgroups will be presented in alphabetical order.
31120 <UL>   
31121 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31122 </UL><P>
31123 &lt;End of help on this topic&gt;
31124 </BODY>
31125 </HTML>
31126 ====== h_config_quell_tz_comment =====
31127 <HTML>
31128 <HEAD>
31129 <TITLE>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></TITLE>
31130 </HEAD>
31131 <BODY>
31132 <H1>FEATURE: <!--#echo var="FEAT_quell-timezone-comment-when-sending"--></H1>
31134 Normally, when Alpine generates a Date header for outgoing mail,
31135 it will try to include the symbolic timezone at the end of the
31136 header inside parentheses.
31137 The symbolic timezone is often three characters long, but on
31138 some operating systems, it may be longer.
31139 Apparently there are some SMTP servers in the world that will reject an
31140 incoming message if it has a Date header longer than about 80 characters.
31141 If this feature is set, the symbolic timezone normally generated by
31142 Alpine will not be included.
31143 You probably don't need to worry about this feature unless you run into
31144 the problem described above.
31147 &lt;End of help on this topic&gt;
31148 </BODY>
31149 </HTML>
31150 ====== h_config_post_wo_validation =====
31151 <HTML>
31152 <HEAD>
31153 <TITLE>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></TITLE>
31154 </HEAD>
31155 <BODY>
31156 <H1>FEATURE: <!--#echo var="FEAT_news-post-without-validation"--></H1>
31158 This feature controls whether the NNTP server is queried as newsgroups
31159 are entered for posting.  Validation over slow links (e.g. dialup using
31160 SLIP or PPP) can cause delays.  Set this feature to eliminate such delays.
31162 &lt;End of help on this topic&gt;
31163 </BODY>
31164 </HTML>
31165 ====== h_config_send_wo_confirm =====
31166 <HTML>
31167 <HEAD>
31168 <TITLE>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></TITLE>
31169 </HEAD>
31170 <BODY>
31171 <H1>FEATURE: <!--#echo var="FEAT_send-without-confirm"--></H1>
31173 By default, when you send or post a message you will be asked to confirm
31174 with a question that looks something like:
31177 <CENTER><SAMP>Send message?</SAMP></CENTER>
31180 If this feature is set, you
31181 will <B>not</B> be prompted to confirm your intent to send
31182 and your message will be sent.
31184 If this feature is set it disables some possibilities and renders some
31185 other features meaningless.
31186 You will not be able to use
31187 <A HREF="h_config_sending_filter">Sending Filters</A>,
31188 Verbose sending mode,
31189 <A HREF="h_config_compose_bg_post">Background Sending</A>,
31190 <A HREF="h_config_compose_dsn">Delivery Status Notifications</A>,
31191 or ^V to turn off the generation of flowed text for this message.
31192 These options are normally available as suboptions in the Send prompt, but
31193 with no Send prompt the options are gone.
31196 A somewhat related feature is
31197 <A HREF="h_config_quell_post_prompt">&quot;<!--#echo var="FEAT_quell-extra-post-prompt"-->&quot;</A>,
31198 which may be used to eliminate the extra confirmation
31199 question when posting to a newsgroup.
31201 <UL>   
31202 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31203 </UL><P>
31204 &lt;End of help on this topic&gt;
31205 </BODY>
31206 </HTML>
31207 ====== h_config_quell_filtering_done_message =====
31208 <HTML>
31209 <HEAD>
31210 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></TITLE>
31211 </HEAD>
31212 <BODY>
31213 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-done-message"--></H1>
31215 If you use Filter Rules that move messages or set status of messages
31216 you sometimes see a message from Alpine that looks like
31219 <CENTER><SAMP>filtering done</SAMP></CENTER>
31222 If this feature is set, this message will be suppressed.
31223 If the feature
31224 <A HREF="h_config_quell_filtering_messages"><!--#echo var="FEAT_quell-filtering-messages"--></A>
31225 is set then this message will be suppressed regardless.
31228 <UL>   
31229 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31230 </UL><P>
31231 &lt;End of help on this topic&gt;
31232 </BODY>
31233 </HTML>
31234 ====== h_config_quell_filtering_messages =====
31235 <HTML>
31236 <HEAD>
31237 <TITLE>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></TITLE>
31238 </HEAD>
31239 <BODY>
31240 <H1>FEATURE: <!--#echo var="FEAT_quell-filtering-messages"--></H1>
31242 If you use Filter Rules that move messages or set status of messages
31243 you sometimes see messages from Alpine that look like
31246 <CENTER><SAMP>&lt;filter name&gt;: Moving 2 filtered messages to &lt;folder name&gt;</SAMP></CENTER>
31252 <CENTER><SAMP>&lt;filter name&gt;: Setting flags in 5 messages</SAMP></CENTER>
31258 <CENTER><SAMP>Processing filter &lt;filter name&gt;</SAMP></CENTER>
31261 If this feature is set, these messages will be suppressed.
31262 The feature
31263 <A HREF="h_config_quell_filtering_done_message"><!--#echo var="FEAT_quell-filtering-done-message"--></A>
31264 is related.
31267 <UL>   
31268 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31269 </UL><P>
31270 &lt;End of help on this topic&gt;
31271 </BODY>
31272 </HTML>
31273 ====== h_config_quell_post_prompt =====
31274 <HTML>
31275 <HEAD>
31276 <TITLE>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></TITLE>
31277 </HEAD>
31278 <BODY>
31279 <H1>FEATURE: <!--#echo var="FEAT_quell-extra-post-prompt"--></H1>
31281 By default, when you post a message to a newsgroup you are asked to confirm
31282 that you want to post with the question
31285 <CENTER><SAMP>Posted message may go to thousands of readers. Really post?</SAMP></CENTER>
31288 If this feature is set, you
31289 will <B>not</B> be prompted to confirm your intent to post to a newsgroup
31290 and your message will be posted.
31293 <UL>   
31294 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31295 </UL><P>
31296 &lt;End of help on this topic&gt;
31297 </BODY>
31298 </HTML>
31299 ====== h_config_check_mail_onquit =====
31300 <HTML>
31301 <HEAD>
31302 <TITLE>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></TITLE>
31303 </HEAD>
31304 <BODY>
31305 <H1>FEATURE: <!--#echo var="FEAT_check-newmail-when-quitting"--></H1>
31307 If this feature is set, Alpine will check for new mail after you give the
31308 Quit command.
31309 If new mail has arrived since the previous check, you will be notified
31310 and given the choice of quitting or not quitting.
31312 <UL>   
31313 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31314 </UL><P>
31315 &lt;End of help on this topic&gt;
31316 </BODY>
31317 </HTML>
31318 ====== h_config_inbox_no_confirm =====
31319 <HTML>
31320 <HEAD>
31321 <TITLE>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></TITLE>
31322 </HEAD>
31323 <BODY>
31324 <H1>FEATURE: <!--#echo var="FEAT_return-to-inbox-without-confirm"--></H1>
31326 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
31327 command and there are no more folders or newsgroups to visit, you are asked
31328 if you want to return to the INBOX.
31329 If this feature is set you will not be asked.
31330 It will be assumed that you do want to return to the INBOX.
31332 <UL>   
31333 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31334 </UL><P>
31335 &lt;End of help on this topic&gt;
31336 </BODY>
31337 </HTML>
31338 ====== h_config_dates_to_local =====
31339 <HTML>
31340 <HEAD>
31341 <TITLE>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></TITLE>
31342 </HEAD>
31343 <BODY>
31344 <H1>FEATURE: <!--#echo var="FEAT_convert-dates-to-localtime"--></H1>
31346 Normally, the message dates that you see in the
31347 MESSAGE INDEX and MESSAGE VIEW are displayed in the timezone they were sent from.
31348 For example, if a message was sent to you from a few timezones to the east
31349 it might appear that it was sent from the future;
31350 or if it was sent from somewhere to the west it might appear
31351 as if it is from yesterday even though it was sent only a few minutes ago.
31352 If this feature is set an attempt will be made to convert the dates
31353 to your local timezone to be displayed.
31355 Note that this does not affect the results of Select by Date or of
31356 anything else other than these displayed dates.
31357 When viewing the message you may look at the original unconverted value of the Date
31358 header by using the <A HREF="h_common_hdrmode">HdrMode Command</A>.
31360 <UL>   
31361 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31362 </UL><P>
31363 &lt;End of help on this topic&gt;
31364 </BODY>
31365 </HTML>
31366 ====== h_config_tab_no_prompt =====
31367 <HTML>
31368 <HEAD>
31369 <TITLE>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></TITLE>
31370 </HEAD>
31371 <BODY>
31372 <H1>FEATURE: <!--#echo var="FEAT_continue-tab-without-confirm"--></H1>
31374 Normally, when you use the TAB <A HREF="h_common_nextnew">NextNew</A>
31375 command and there is a problem checking a folder, you are asked
31376 whether you want to continue with the search in the following folder or not.
31377 This question gives you a chance to stop the NextNew processing.
31378 (The checking problem might be caused by the fact that the folder does not
31379 exist, or by an authentication problem, or by a server problem
31380 of some sort.)
31383 If this feature is set you will not be asked.
31384 It will be assumed that you do want to continue.
31386 <UL>   
31387 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31388 </UL><P>
31389 &lt;End of help on this topic&gt;
31390 </BODY>
31391 </HTML>
31392 ====== h_config_input_history =====
31393 <HTML>
31394 <HEAD>
31395 <TITLE>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></TITLE>
31396 </HEAD>
31397 <BODY>
31398 <H1>FEATURE: <!--#echo var="FEAT_disable-save-input-history"--></H1>
31400 Many of the prompts that ask for input in the status line near the
31401 bottom of the screen will respond to Up Arrow and Down Arrow
31402 with the history of previous entries.
31403 For example, in the MESSAGE INDEX screen when you use the WhereIs
31404 command the text you entered will be remembered and can be recalled
31405 by using the Up Arrow key.
31406 Another example, when saving a message the folders saved to will
31407 be remembered and can be recalled using the arrow keys.
31409 In the Save prompt, some users prefer that the Up and Down arrow keys
31410 be used for the Previous Collection and Next Collection commands
31411 instead of for a history of previous saves.
31412 If this option is set the Up and Down arrow keys will become synonyms for the
31413 Previous Collection and Next Collection (^P and ^N) commands in the
31414 prompt for the name of a folder to Save to or in the prompt for the
31415 name of a folder to GoTo.
31416 When this feature is not set (the default), ^P and ^N will change the
31417 collection and the arrow keys will show the history.
31419 <UL>   
31420 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31421 </UL><P>
31422 &lt;End of help on this topic&gt;
31423 </BODY>
31424 </HTML>
31425 ====== h_config_confirm_role =====
31426 <HTML>
31427 <HEAD>
31428 <TITLE>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></TITLE>
31429 </HEAD>
31430 <BODY>
31431 <H1>FEATURE: <!--#echo var="FEAT_confirm-role-even-for-default"--></H1>
31433 If you have roles, when you Reply to or Forward a message, or Compose
31434 a new message, Alpine
31435 will search through your roles for one that matches.
31436 Normally, if no matches are found you will be placed into the composer
31437 with no opportunity to select a role.
31438 If this feature is set, then you will be asked to confirm that you don't
31439 want a role.
31440 This will give you the opportunity to select a role (with the ^T command).
31441 If you confirm no role with a Return, you will be placed in
31442 the composer with no role.
31443 You may also confirm with either an &quot;N&quot; or a &quot;Y&quot;.
31444 These behave the same as if you pressed the Return.
31445 (The &quot;N&quot; and &quot;Y&quot; answers are available because they
31446 match what you might type if there was a role match.)
31448 If you are using the alternate form of the Compose command called
31449 &quot;Role&quot;, then all of your roles will be available to you,
31450 independent of the value of this feauture and of the values set for all of
31451 Reply Use, Forward Use, and Compose Use.
31453 <UL>   
31454 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31455 </UL><P>
31456 &lt;End of help on this topic&gt;
31457 </BODY>
31458 </HTML>
31459 ====== h_config_news_cross_deletes =====
31460 <HTML>
31461 <HEAD>
31462 <TITLE>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></TITLE>
31463 </HEAD>
31464 <BODY>
31465 <H1>FEATURE: <!--#echo var="FEAT_news-deletes-across-groups"--></H1>
31467 This feature controls what Alpine does when you delete a message in a
31468 newsgroup that appears in more than one newsgroup.  Such a message
31469 is sometimes termed a &quot;crossposting&quot; in that it was posted
31470 across several newsgroups.
31473 Alpine's default behavior when you delete such a message is to remove
31474 only the copy in the current newsgroup from view when you use the
31475 &quot;Exclude&quot; command or the next time you visit the newsgroup.
31478 Enabling this feature causes Alpine to remove every occurrence of the
31479 message from all newsgroups it appears in and to which you are
31480 subscribed.
31483 NOTE: As currently implemented, enabling this feature may increase the
31484 time it takes the Expunge command and newsgroup closing to complete.
31487 <UL>   
31488 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31489 </UL><P>
31490 &lt;End of help on this topic&gt;
31491 </BODY>
31492 </HTML>
31493 ====== h_config_news_catchup =====
31494 <HTML>
31495 <HEAD>
31496 <TITLE>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></TITLE>
31497 </HEAD>
31498 <BODY>
31499 <H1>FEATURE: <!--#echo var="FEAT_news-offers-catchup-on-close"--></H1>
31501 This feature controls what Alpine does as it closes a newsgroup.
31502 When set, Alpine will offer to delete all messages from the newsgroup
31503 as you are quitting Alpine or opening a new folder.
31506 This feature is useful if you typically read all the interesting messages
31507 in a newsgroup each time you open it.  This feature saves you from
31508 having to delete each message in a newsgroup as you read it or from
31509 selecting all the messages and doing an
31510 <A HREF="h_config_enable_agg_ops">aggregate delete</A> before you
31511 move on to the next folder or newsgroup.
31514 <UL>   
31515 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31516 </UL><P>
31517 &lt;End of help on this topic&gt;
31518 </BODY>
31519 </HTML>
31520 ====== h_config_next_thrd_wo_confirm =====
31521 <HTML>
31522 <HEAD>
31523 <TITLE>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></TITLE>
31524 </HEAD>
31525 <BODY>
31526 <H1>FEATURE: <!--#echo var="FEAT_next-thread-without-confirm"--></H1>
31528 This feature controls an aspect of Alpine's Next and Prev commands in
31529 the case where you are using one of the
31530 &quot;separate-index-screen&quot; styles for the configuration option
31531 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
31532 and currently have the folder sorted by a Threaded or OrderedSubject sort.
31533 When you are Viewing a particular thread you have a
31534 MESSAGE INDEX of only the messages in that thread.
31535 If you press the Next command with the last message in the thread highlighted
31536 you will normally be asked if you want to &quot;View next thread?&quot;,
31537 assuming there is a next thread to view.
31538 If this feature is set it will be assumed that you always want to view the
31539 next thread and you won't be asked to confirm that.
31540 Similarly, if the first message of the thread is highlighted and you
31541 press the Prev command, this feature will prevent the question
31542 &quot;View previous thread&quot;.
31544 This feature only has an effect in the MESSAGE INDEX screen.
31545 If you then view a particular message from that screen and press the
31546 Next command, you will be sent to the next thread without being asked,
31547 independent of the setting of this feature.
31549 The feature
31550 <A HREF="h_config_auto_open_unread">&quot;<!--#echo var="FEAT_auto-open-next-unread"-->&quot;</A> also has some similar effects.
31552 &lt;End of help on this topic&gt;
31553 </BODY>
31554 </HTML>
31555 ====== h_config_kw_braces =====
31556 <HTML>
31557 <HEAD>
31558 <TITLE>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></TITLE>
31559 </HEAD>
31560 <BODY>
31561 <H1>OPTION: <!--#echo var="VAR_keyword-surrounding-chars"--></H1>
31563 This option controls a minor aspect of Alpine's MESSAGE INDEX and MESSAGE
31564 TEXT screens.
31565 If you have modified the
31566 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
31567 so that either the &quot;SUBJKEY&quot; or &quot;SUBJKEYINIT&quot; tokens
31568 are used to display keywords or their initials along with the Subject; then
31569 this option may be used to modify the resulting display slightly.
31570 By default, the keywords or initials displayed for these tokens will be
31571 surrounded with curly braces ({ and }) and a trailing space.
31572 For example, if keywords &quot;Work&quot; and &quot;Now&quot; are set for
31573 a message, the &quot;SUBJKEY&quot; token will normally look like
31575 <CENTER><SAMP>{Work Now} actual subject</SAMP></CENTER>
31577 and the SUBJKEYINIT token would look like
31579 <CENTER><SAMP>{WN} actual subject</SAMP></CENTER>
31581 The default character before the keywords is the left brace ({) and the
31582 default after the keywords is the right brace followed by a space (} ).
31584 This option allows you to change that.
31585 You should set it to two values separated by a space.
31586 The values may be quoted if they include space characters.
31587 So, for example, the default value could be specified explicitly by setting this
31588 option to
31590 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="{" "}&nbsp;"</SAMP></CENTER>
31592 The first part wouldn't need to be quoted (but it doesn't hurt).
31593 The second part does need the quotes because it includes a space character.
31594 If you wanted to change the braces to brackets you could use
31596 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="[" "]&nbsp;"</SAMP></CENTER>
31598 Inside the quotes you can use backslash quote to mean quote, so
31600 <CENTER><SAMP><!--#echo var="VAR_keyword-surrounding-chars"-->="&#92;"" "&#92;" "</SAMP></CENTER>
31602 would produce
31604 <CENTER><SAMP>"Work Now" actual subject</SAMP></CENTER>
31606 It is also possible to color keywords in the index using the
31607 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>).
31609 It is not possible to change the fact that a space character is used to
31610 separate the keywords if more than one keyword is set for a message.
31611 It is also not possible to change the fact that there are no separators
31612 between the keyword initials if more than one keyword is set.
31614 &lt;End of help on this topic&gt;
31615 </BODY>
31616 </HTML>
31617 ====== h_config_opening_sep =====
31618 <HTML>
31619 <HEAD>
31620 <TITLE>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></TITLE>
31621 </HEAD>
31622 <BODY>
31623 <H1>OPTION: <!--#echo var="VAR_opening-text-separator-chars"--></H1>
31625 This option controls a minor aspect of Alpine's MESSAGE INDEX screen.
31626 With some setups the text of the subject is followed
31627 by the opening text of the message if there is any room available in the index line.
31628 If you have configured your
31629 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
31630 to include one of the Subject tokens that causes this behavior
31631 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), then this option may be used
31632 to modify what is displayed slightly.
31633 By default, the Subject is separated from the opening text of the message by
31634 the three characters space dash space;
31636 <CENTER><SAMP>&quot;&nbsp;-&nbsp;&quot;</SAMP></CENTER>
31638 Use this option to set it to something different.
31639 The value must be quoted if it includes any space characters.
31640 For example, the default value could be specified explicitly by setting this
31641 option to
31643 <CENTER><SAMP><!--#echo var="VAR_opening-text-separator-chars"-->="&nbsp;-&nbsp;"</SAMP></CENTER>
31645 &lt;End of help on this topic&gt;
31646 </BODY>
31647 </HTML>
31648 ====== h_config_select_wo_confirm =====
31649 <HTML>
31650 <HEAD>
31651 <TITLE>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></TITLE>
31652 </HEAD>
31653 <BODY>
31654 <H1>FEATURE: <!--#echo var="FEAT_select-without-confirm"--></H1>
31656 This feature controls an aspect of Alpine's Save, Export, and Goto commands.
31657 These commands all take text input to specify the name of the folder or
31658 file to be used, but allow you to press ^T for a list of possible names.
31659 If set, the selected name will be used immediately, without further
31660 opportunity to confirm or edit the name.
31662 Some related help topics are
31663 <UL>
31664 <LI> <A HREF="h_mainhelp_aggops">Aggregate Operations</A>
31665 <LI> <A HREF="h_index_cmd_select">Selecting: Select and WhereIs/Select</A>,
31666 <LI> <A HREF="h_config_enable_agg_ops"><!--#echo var="FEAT_enable-aggregate-command-set"--></A>,
31667 <LI> <A HREF="h_config_auto_unselect"><!--#echo var="FEAT_auto-unselect-after-apply"--></A>.
31668 <LI> <A HREF="h_config_auto_unzoom"><!--#echo var="FEAT_auto-unzoom-after-apply"--></A>, and
31669 <LI> <A HREF="h_config_auto_zoom"><!--#echo var="FEAT_auto-zoom-after-select"--></A>.
31670 </UL>
31672 &lt;End of help on this topic&gt;
31673 </BODY>
31674 </HTML>
31675 ====== h_config_save_part_wo_confirm =====
31676 <HTML>
31677 <HEAD>
31678 <TITLE>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></TITLE>
31679 </HEAD>
31680 <BODY>
31681 <H1>FEATURE: <!--#echo var="FEAT_save-partial-msg-without-confirm"--></H1>
31683 This feature controls an aspect of Alpine's Save command.
31684 By default, when you Save a message that has some deleted parts, you will
31685 be asked to confirm that you want to Save with a prompt that looks like:
31687 <CENTER><SAMP>Saved copy will NOT include entire message!  Continue?</SAMP></CENTER>
31689 If this feature is set, you will not be asked.
31691 &lt;End of help on this topic&gt;
31692 </BODY>
31693 </HTML>
31694 ====== h_config_use_resentto =====
31695 <HTML>
31696 <HEAD>
31697 <TITLE>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></TITLE>
31698 </HEAD>
31699 <BODY>
31700 <H1>FEATURE: <!--#echo var="FEAT_use-resent-to-in-rules"--></H1>
31702 This feature is turned off by default because turning it on causes problems
31703 with some deficient IMAP servers.
31704 In Alpine <A HREF="h_mainhelp_filtering">Filters</A> and other types of Rules, if the
31705 <A HREF="h_rule_patterns">Pattern</A>
31706 contains a To header pattern and this feature is turned on,
31707 then a check is made in the message to see
31708 if a Resent-To header is present, and that is used instead of the To header.
31709 If this feature is not turned on, then the regular To header will always
31710 be used.
31713 &lt;End of help on this topic&gt;
31714 </BODY>
31715 </HTML>
31716 ====== h_config_use_reg_start_for_stayopen =====
31717 <HTML>
31718 <HEAD>
31719 <TITLE>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></TITLE>
31720 </HEAD>
31721 <BODY>
31722 <H1>FEATURE: <!--#echo var="FEAT_use-regular-startup-rule-for-stayopen-folders"--></H1>
31724 This feature affects which message is selected as the current message
31725 when you enter a
31726 <A HREF="h_config_permlocked">Stay Open</A> folder.
31728 Normally, the starting position for an incoming folder (which most Stay Open
31729 folders will likely be) is controlled by the
31730 <A HREF="h_config_inc_startup"><!--#echo var="VAR_incoming-startup-rule"--></A>.
31731 However, if a folder is a Stay Open folder, when you re-enter the folder
31732 after the first time the current message will be the same as it was when
31733 you left the folder.
31734 An exception is made if you use the TAB command to get to the folder.
31735 In that case, the message number will be incremented by one from what it
31736 was when you left the folder.
31738 The above special behavior is thought to be useful.
31739 However, it is special and different from what you might at first expect.
31740 If this feature is set, then Stay Open folders will not be treated specially
31741 as far as the startup rule is concerned.
31744 &lt;End of help on this topic&gt;
31745 </BODY>
31746 </HTML>
31747 ====== h_config_use_current_dir =====
31748 <HTML>
31749 <HEAD>
31750 <TITLE>FEATURE: <!--#echo var="FEAT_use-current-dir"--></TITLE>
31751 </HEAD>
31752 <BODY>
31753 <H1>FEATURE: <!--#echo var="FEAT_use-current-dir"--></H1>
31755 This feature controls an aspect of several commands. 
31756 If set, your &quot;current working directory&quot; 
31757 <!--chtml if pinemode="running"-->
31758 (which, at least for your current Alpine &quot;session,&quot; 
31759 is &quot;<!--#echo var="CURRENT_DIR"-->&quot;) 
31760 <!--chtml endif-->
31761 will be used instead of your home directory 
31762 <!--chtml if pinemode="running"-->
31763 (which, in the present configuration of your system, is
31764  &quot;<!--#echo var="HOME_DIR"-->&quot;) 
31765 <!--chtml endif-->
31766 for all of the following operations:<UL>
31767     <LI> Export in the MESSAGE INDEX and MESSAGE TEXT screens
31768     <LI> Attachment Save in the MESSAGE TEXT and ATTACHMENT TEXT screens
31769     <LI> <!--chtml if pinemode="function_key"-->F4
31770          <!--chtml else-->Ctrl-R
31771          <!--chtml endif--> file inclusion in the COMPOSER
31772     <LI> <!--chtml if pinemode="function_key"-->F5
31773          <!--chtml else-->Ctrl-J
31774          <!--chtml endif--> file attachment in the COMPOSER
31775 </UL>
31776 <!--chtml if pinemode="os_windows"-->
31778 If you are starting PC-Alpine from a desktop icon or the Start menu, 
31779 you can set the &quot;current drive&quot; 
31780 by specifying it in the &quot;Start in:&quot; 
31781 box found in the Shortcut tab of the Properties.  
31782 <!--chtml endif-->
31784 <UL>   
31785 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
31786 </UL>
31789 &lt;End of help on this topic&gt;
31790 </BODY>
31791 </HTML>
31792 ====== h_config_save_wont_delete =====
31793 <HTML>
31794 <HEAD>
31795 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></TITLE>
31796 </HEAD>
31797 <BODY>
31798 <H1>FEATURE: <!--#echo var="FEAT_save-will-not-delete"--></H1>
31800 This feature controls one aspect of the Save command.  If set, Save will
31801 not mark the message &quot;deleted&quot; (its default behavior) after
31802 it has been copied to the designated folder.
31805 &lt;End of help on this topic&gt;
31806 </BODY>
31807 </HTML>
31808 ====== h_config_use_boring_spinner =====
31809 <HTML>
31810 <HEAD>
31811 <TITLE>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></TITLE>
31812 </HEAD>
31813 <BODY>
31814 <H1>FEATURE: <!--#echo var="FEAT_busy-cue-spinner-only"--></H1>
31816 When Alpine is delayed for some reason it usually shows that
31817 something is happening with a small animated display in the status
31818 message line near the bottom of the screen.
31819 Setting this feature will cause that animation to be the same
31820 each time instead of having Alpine choose a random animation.
31821 You may turn the animation off altogether by setting the
31822 <A HREF="h_config_active_msg_interval"><!--#echo var="VAR_busy-cue-rate"--></A>
31823 option to zero.
31826 &lt;End of help on this topic&gt;
31827 </BODY>
31828 </HTML>
31829 ====== h_config_unsel_wont_advance =====
31830 <HTML>
31831 <HEAD>
31832 <TITLE>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></TITLE>
31833 </HEAD>
31834 <BODY>
31835 <H1>FEATURE: <!--#echo var="FEAT_unselect-will-not-advance"--></H1>
31837 This feature controls one aspect of the Unselect Current message command.
31838 Normally, when the Unselect current message command (:) is typed when the
31839 current message is selected, the message will be unselected and the next
31840 message will become the current message.
31841 If this feature is set, the cursor will not advance to the next message.
31842 Instead, the current message will remain the current message after
31843 unselecting.
31846 &lt;End of help on this topic&gt;
31847 </BODY>
31848 </HTML>
31849 ====== h_config_prune_uses_iso =====
31850 <HTML>
31851 <HEAD>
31852 <TITLE>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></TITLE>
31853 </HEAD>
31854 <BODY>
31855 <H1>FEATURE: <!--#echo var="FEAT_prune-uses-yyyy-mm"--></H1>
31857 By default, Alpine asks monthly whether or not you would like to rename
31858 some folders to a new name containing the date.
31859 It also asks whether or not you would like to delete some old folders.
31860 See the <A HREF="h_config_pruning_rule"><!--#echo var="VAR_pruning-rule"--></A> option for an
31861 explanation.
31864 By default, the name used when renaming a folder looks like
31866 <CENTER><SAMP>&lt;foldername&gt;-&lt;month&gt;-&lt;year&gt;</SAMP></CENTER>
31868 For example, the first time you run Alpine in May of 2004,
31869 the folder &quot;sent-mail&quot; might be renamed to
31871 <CENTER><SAMP>sent-mail-apr-2004</SAMP></CENTER>
31873 If this feature is set, the name used will be of the form
31875 <CENTER><SAMP>&lt;foldername&gt;-&lt;yyyy&gt;-&lt;mm&gt;</SAMP></CENTER>
31877 where &quot;yyyy&quot; is the year and &quot;mm&quot; is the two-digit
31878 month (01, 02, ..., 12).
31879 For the April, 2004 example above, it would instead be
31881 <CENTER><SAMP>sent-mail-2004-04</SAMP></CENTER>
31883 because April is the 4th month of the year.
31884 A reason you might want to set this feature is so that the folders
31885 will sort in chronological order.
31888 &lt;End of help on this topic&gt;
31889 </BODY>
31890 </HTML>
31891 ====== h_config_save_advances =====
31892 <HTML>
31893 <HEAD>
31894 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-advance"--></TITLE>
31895 </HEAD>
31896 <BODY>
31897 <H1>FEATURE: <!--#echo var="FEAT_save-will-advance"--></H1>
31899 This feature controls one aspect of the Save command.  If set, Save will
31900 (in addition to copying the current message to the designated folder) also
31901 advance to the next message.
31904 &lt;End of help on this topic&gt;
31905 </BODY>
31906 </HTML>
31907 ====== h_config_force_arrow =====
31908 <HTML>
31909 <HEAD>
31910 <TITLE>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></TITLE>
31911 </HEAD>
31912 <BODY>
31913 <H1>FEATURE: <!--#echo var="FEAT_force-arrow-cursor"--></H1>
31915 This feature affects Alpine's MESSAGE INDEX display routine.
31916 If set, the normal inverse-video cursor will be
31917 replaced by a simple &quot;arrow&quot; cursor, which normally occupies the
31918 second column of the index display.
31920 This is the same index cursor you get if you turn on
31921 <A HREF="h_config_force_low_speed"><!--#echo var="FEAT_assume-slow-link"--></A>, but the index
31922 line coloring will still be present if this feature is turned on and
31923 <!--#echo var="FEAT_assume-slow-link"--> is off.
31925 An alternative version of the Arrow cursor is available by including the
31926 <A HREF="h_config_index_arrow_color">ARROW</A>
31927 token in the
31928 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
31930 It ought to be the case that this feature also affects the ATTACHMENT INDEX,
31931 but that is not implemented.
31934 &lt;End of help on this topic&gt;
31935 </BODY>
31936 </HTML>
31937 ====== h_config_ignore_size =====
31938 <HTML>
31939 <HEAD>
31940 <TITLE>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></TITLE>
31941 </HEAD>
31942 <BODY>
31943 <H1>FEATURE: <!--#echo var="FEAT_ignore-size-changes"--></H1>
31945 When you have an account residing in an IMAP server, Alpine records the 
31946 size of each message as reported by the server. However, when Alpine saves 
31947 a message in such IMAP server, Alpine will compute the size of the message 
31948 independently, from the data it received. If these two numbers do not 
31949 match for a message, Alpine asks you if you still want to take the risk of 
31950 saving such message, since data corruption or loss of data could result 
31951 from this save.
31954 Sometimes the root of this problem is that the IMAP server does not 
31955 compute sizes correctly, and there will not be loss of information when 
31956 saving such message. Enabling this feature will make Alpine ignore such 
31957 error and continue saving the message without producing any warnings or 
31958 ever stopping the process, as if there had not been any error. This option 
31959 applies to all IMAP servers that you use, so if you enable this feature, 
31960 size discrepancy warnings will not be given for any IMAP server you 
31961 connect to.
31964 Example of a server where you could reproduce this problem is the Gmail 
31965 IMAP server. Another example can be found in some versions of the Exchange 
31966 server.
31969 It is recommended that this feature be disabled most of the time and only 
31970 enabled when you find a server which you can determine that has the above 
31971 mentioned defect, but be disabled again after making the save operation 
31972 succeed.
31975 &lt;End of help on this topic&gt;
31976 </BODY>
31977 </HTML>
31978 ====== h_config_force_low_speed =====
31979 <HTML>
31980 <HEAD>
31981 <TITLE>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></TITLE>
31982 </HEAD>
31983 <BODY>
31984 <H1>FEATURE: <!--#echo var="FEAT_assume-slow-link"--></H1>
31986 UNIX Alpine only.
31988 This feature affects Alpine's display routines.  If set, the normal
31989 inverse-video cursor (used to highlight the current item in a list) will be
31990 replaced by an &quot;arrow&quot; cursor and other
31991 screen update optimizations for
31992 low-speed links (e.g. 2400 bps dialup connections) will be activated.
31993 One of the optimizations is that colored index lines (set up with Indexcolor
31994 Rules) will not be colored.
31995 If you are just turning this feature on because you like using
31996 the &quot;arrow&quot; cursor you may have an arrow cursor with index line
31997 coloring by turning this feature off and the
31998 <A HREF="h_config_force_arrow"><!--#echo var="FEAT_force-arrow-cursor"--></A> on.
32001 &lt;End of help on this topic&gt;
32002 </BODY>
32003 </HTML>
32004 ====== h_config_show_delay_cue =====
32005 <HTML>
32006 <HEAD>
32007 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></TITLE>
32008 </HEAD>
32009 <BODY>
32010 <H1>FEATURE: <!--#echo var="FEAT_enable-mail-check-cue"--></H1>
32012 If set, this feature will cause an asterisk to appear in the upper
32013 left-hand corner of the screen whenever Alpine checks for new mail.
32014 Two asterisks whenever Alpine saves (checkpoints) the state of the current
32015 mailbox to disk.
32017 <!--chtml if pinemode="os_windows"-->
32019 In addition, PC-Alpine will display a less-than symbol, '&lt;', when 
32020 it is trying to open a network connection (e.g, to open your INBOX
32021 on an IMAP
32022 server) or read from the network connection.  A greater-than symbol,
32023 will be displayed when PC-Alpine is trying to write to the network
32024 connection (e.g, sending a command to your IMAP server).
32025 <!--chtml endif-->
32028 &lt;End of help on this topic&gt;
32029 </BODY>
32030 </HTML>
32031 ====== h_config_color_style =====
32032 <HTML>
32033 <HEAD>
32034 <TITLE>OPTION: Color Style</TITLE>
32035 </HEAD>
32036 <BODY>
32037 <H1>OPTION: Color Style</H1>
32039 UNIX Alpine only.
32041 If the terminal or terminal emulator you are using is capable of displaying
32042 colors, this option controls whether or not color will be used in Alpine.
32043 If you turn color on and things are set up correctly,
32044 you should see color appear on the screen immmediately.
32045 Modern terminal emulators are usually capable of displaying colors.
32047 The available options include:
32050 <DL>
32051 <DT>no-color</DT>
32052 <DD>Don't use color.
32053 </DD>
32055 <DT>use-termdef</DT>
32056 <DD>In order to decide if your terminal is capable of color, Alpine looks in
32057 the terminal capabilities database, TERMINFO or TERMCAP, depending on
32058 how Alpine was compiled.
32059 This is a good option to choose if you switch between a color and a non-color
32060 terminal with the same Alpine configuration.
32061 Alpine will know to use color on the color terminal because it is described
32062 in the termcap entry, and Alpine will know to use black and white on the
32063 non-color terminal.
32064 The Alpine Technical Notes
32065 <CENTER><SAMP><A HREF="http://www.washington.edu/alpine/tech-notes/">http://www.washington.edu/alpine/tech-notes/</A></SAMP></CENTER>
32066 have more information on configuring a TERMCAP or TERMINFO
32067 entry for color Alpine.
32068 This is usually something a system administrator does.
32069 </DD>
32071 <DT>force-ansi-8color</DT>
32072 <DD>This is probably the setting that most people should use.
32073 Because setting up a termcap entry is confusing and because the
32074 terminal capabilities database is often not correctly configured for color,
32075 this choice and the next may be easier for you to use.
32076 If your terminal emulator responds to ANSI color escape sequences, which
32077 many do, this option will cause Alpine to believe your terminal will respond
32078 to the escape sequences that produce eight different foreground and background
32079 colors.
32080 The escape sequences used to set the foreground colors are
32082   <P><CENTER>ESC&nbsp;[&nbsp;3&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
32084 where the color_number is an ASCII digit between 0 and 7.
32085 The numbers 0 through 7 should correspond to the colors black, red, green,
32086 yellow, blue, magenta, cyan, and white.
32087 Some terminal emulators use a pre-ANSI scheme that swaps
32088 the colors blue and red and the colors yellow and cyan.
32089 This will cause the default colors to be different, but other than that
32090 things should work fine.
32091 There is also a 9th color available, the last one shown, which is the default
32092 color from the terminal emulator.
32093 When used as a background color some people refer to this color as
32094 &quot;transparent&quot;, which is why the letters &quot;TRAN&quot; are
32095 shown in the color swatch of the SETUP COLOR screen.
32096 The foreground transparent color is shown as
32097 the color of the &quot;TRAN&quot; text.
32098 (The transparent color will not work correctly in a PC-Alpine configuration.)
32099 The escape sequences used to set the background colors are the same
32100 as for the foreground colors except a &quot;4&quot; replaces the &quot;3&quot;.
32101 The escape sequences for foreground and background default colors (transparent)
32102 are 39m and 49m.
32104 Note: With the Tera Term terminal emulator this setting works well.
32105 You should also have the Tera Term &quot;Full color&quot; option turned OFF.
32106 You may find the &quot;Full color&quot; option in Tera Term's &quot;Setup&quot;
32107 menu, in the &quot;Window&quot; submenu.
32108 </DD>
32110 <DT>force-ansi-16color</DT>
32111 <DD>Many terminal emulators know about the same eight colors above
32112 plus eight more.
32113 This option attempts to use all 16 colors.
32114 The same escape sequences as for the eight-color terminal are used
32115 for the first eight colors.
32116 The escape sequences used to set foreground colors 8-15 are the same as
32117 for 0-7 except the &quot;3&quot; is replaced with a &quot;9&quot;.
32118 The background color sequences for colors 8-15 are the same as for 0-7
32119 except the &quot;4&quot; is replaced with &quot;10&quot;.
32120 You can tell if the 16 colors are working by turning on this option
32121 and then going into one of the color configuration screens, for example,
32122 the configuration screen for Normal Color.
32123 If you see 16 different colors to select from (plus a 17th for
32124 the transparent color), it's working.
32125 </DD>
32127 <DT>force-xterm-256color</DT>
32128 <DD>Some versions of xterm (and some other terminal emulators)
32129 have support for 256 colors.
32130 The escape sequences used to set the foreground colors are
32132   <P><CENTER>ESC&nbsp;[&nbsp;38&nbsp;;&nbsp;5&nbsp;;&nbsp;&lt;color_number&gt;&nbsp;m</CENTER><P>
32134 where the color_number is an ASCII digit between 0 and 255.
32135 Background colors are the same with the 38 replaced with a 48.
32136 The numbers 0 through 15 are probably similar to the 16 color version
32137 above, then comes a 6x6x6 color cube, followed by 24 colors of gray.
32138 The terminal default (transparent) color is the 257th color at the bottom.
32139 Some terminal emulators will misinterpret these escape sequences causing
32140 the terminal to blink or overstrike characters or to do something else
32141 undesirable.
32143 The PuTTY terminal emulator has an option called &quot;Allow terminal to
32144 use xterm 256-colour mode&quot; which allows PuTTY to work well with
32145 this 256-color setting.
32147 </DD>
32148 </DL>
32151 The normal default is &quot;no-color&quot;.
32154 Once you've turned on color you may set the
32155 colors of many objects on the screen individually.
32156 For example, you may add colors to the status letters on the MESSAGE
32157 INDEX page.
32158 Most categories of color that Alpine supports are configurable here.
32159 For example, &quot;Normal Color&quot;
32160 is the color used to display most of the text in Alpine, and
32161 &quot;Reverse Color&quot; is used to display highlighted text, such as the
32162 current message in the MESSAGE INDEX.
32164 Lines in the MESSAGE INDEX may also be colored.
32165 Use Setup Rules to get to the Indexcolor configuration screen.
32168 <UL>   
32169 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32170 </UL><P>
32171 &lt;End of help on this topic&gt;
32172 </BODY>
32173 </HTML>
32174 ====== h_config_disable_index_locale_dates =====
32175 <HTML>
32176 <HEAD>
32177 <TITLE>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></TITLE>
32178 </HEAD>
32179 <BODY>
32180 <H1>FEATURE: <!--#echo var="FEAT_disable-index-locale-dates"--></H1>
32182 This feature affects the display of dates in the MESSAGE INDEX.
32183 Normally an attempt is made to localize the dates
32184 used in the MESSAGE INDEX display to your locale.
32185 This is controlled with the
32186 LC_TIME locale setting on a UNIX system.
32187 On Windows the Regional Options control panel may be used to set the date format.
32188 At the programming level, Alpine is using the strftime routine
32189 to print the parts of a date.
32191 If this feature is set, dates are displayed in English and
32192 with the conventions of the United States.
32195 <UL>   
32196 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32197 </UL><P>
32198 &lt;End of help on this topic&gt;
32199 </BODY>
32200 </HTML>
32201 ====== h_config_auto_open_unread =====
32202 <HTML>
32203 <HEAD>
32204 <TITLE>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></TITLE>
32205 </HEAD>
32206 <BODY>
32207 <H1>FEATURE: <!--#echo var="FEAT_auto-open-next-unread"--></H1>
32209 This feature controls the behavior of the TAB key when traversing folders
32210 in the optional 
32211 <A HREF="h_config_enable_incoming">&quot;<!--#echo var="VAR_incoming-folders"-->&quot;</A> 
32212 collection or in optional <!--#echo var="VAR_news-collections"-->.
32214 When the TAB
32215 (<A HREF="h_common_nextnew">NextNew</A>)
32216 key is pressed, and there
32217 are no more unseen messages in the current (incoming message or news)
32218 folder, Alpine will search the list of folders in the current collection for
32219 one containing New or Recent (new since the last time the folder was
32220 opened) messages.
32221 This behavior may be modified slightly with the
32222 <A HREF="h_config_tab_uses_unseen">&quot;<!--#echo var="FEAT_tab-uses-unseen-for-next-folder"-->&quot;</A>
32223 feature that causes Alpine to look for Unseen messages instead of Recent
32224 messages.
32225 Normally, when such a folder is found, Alpine will ask
32226 whether you wish to open the folder.  If this feature is set, Alpine will
32227 automatically open the folder without prompting.
32229 This feature also affects some other similar situations.
32230 If you have a
32231 <A HREF="h_config_thread_index_style"><!--#echo var="VAR_threading-index-style"--></A>
32232 that is equal to one of the &quot;separate-&quot; values, and you are
32233 viewing a thread; then when you type the NextNew command and are at the
32234 end of the current thread you will automatically go to the next thread
32235 if this feature is set.
32236 By default, you would be asked if you want to view the next thread.
32237 You will also be asked at times whether or not you want to view the next
32238 thread after you delete the last message in the thread.
32239 Setting this feature will also cause that question to be skipped.
32242 <UL>   
32243 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32244 </UL><P>
32245 &lt;End of help on this topic&gt;
32246 </BODY>
32247 </HTML>
32248 ====== h_config_auto_include_reply =====
32249 <HTML>
32250 <HEAD>
32251 <TITLE>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></TITLE>
32252 </HEAD>
32253 <BODY>
32254 <H1>FEATURE: <!--#echo var="FEAT_include-text-in-reply"--></H1>
32256 This feature controls an aspect of Alpine's Reply command.  Normally, Alpine
32257 will ask whether you wish to include the original message in your reply.
32258 If this feature is set and the feature
32259 <A HREF="h_config_prefix_editing">&quot;<!--#echo var="FEAT_enable-reply-indent-string-editing"-->&quot;</A>
32260 is <EM>not</EM> set, then the original message will be included in the reply
32261 automatically, without prompting.
32263 &lt;End of help on this topic&gt;
32264 </BODY>
32265 </HTML>
32266 ====== h_config_select_in_bold =====
32267 <HTML>
32268 <HEAD>
32269 <TITLE>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></TITLE>
32270 </HEAD>
32271 <BODY>
32272 <H1>FEATURE: <!--#echo var="FEAT_show-selected-in-boldface"--></H1>
32274 This feature controls an aspect of Alpine's 
32275 <A HREF="h_config_enable_agg_ops">&quot;aggregate operation&quot;</A>
32276 commands; in
32277 particular, the Select and WhereIs commands. Select and WhereIs (with the
32278 ^X subcommand) will search the current folder for messages meeting a
32279 specified criteria, and &quot;tag&quot; the resulting messages with an 
32280 &quot;X&quot; in the
32281 first column of the applicable lines in the MESSAGE INDEX.  If this feature
32282 is set, instead of using the &quot;X&quot; to denote a selected message, 
32283 Alpine will
32284 attempt to display those index lines in boldface. Whether this is
32285 preferable to the &quot;X&quot; will depend on personal taste and the type of
32286 terminal being used.
32288 <UL>   
32289 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32290 </UL><P>
32291 &lt;End of help on this topic&gt;
32292 </BODY>
32293 </HTML>
32294 ====== h_config_alt_auth =====
32295 <HTML>
32296 <HEAD>
32297 <TITLE>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></TITLE>
32298 </HEAD>
32299 <BODY>
32300 <H1>FEATURE: <!--#echo var="FEAT_try-alternative-authentication-driver-first"--></H1>
32302 This feature affects how Alpine connects to IMAP servers.
32303 It's utility has largely been overtaken by events,
32304 but it may still be useful in some circumstances.
32305 If you only connect to modern IMAP servers that support
32306 &quot;TLS&quot; you can ignore this feature.
32309 Details:
32312 By default, Alpine will attempt to connect to an IMAP server on the
32313 normal IMAP service port (143), and if the server offers &quot;Transport Layer
32314 Security&quot; (TLS) and Alpine has been compiled with encryption capability,
32315 then a secure (encrypted) session will be negotiated.
32318 With this feature enabled, before connecting on the normal IMAP port, Alpine
32319 will first attempt to connect to an alternate IMAP service port (993) used
32320 specifically for encrypted IMAP sessions via the Secure Sockets Layer
32321 (SSL) method.
32322 If the SSL attempt fails, Alpine will then try the default
32323 behavior described in the previous paragraph.
32326 TLS negotiation on the normal port is preferred, and supersedes the use of
32327 SSL on port 993, but older servers may not provide TLS support.
32328 This feature may be convenient when accessing IMAP servers that do not support
32329 TLS, but do support SSL connections on port 993.
32330 However, it is important to understand that with this feature enabled,
32331 Alpine will <EM>attempt</EM> to make a secure connection if that is possible,
32332 but it will proceed to make an insecure connection if that is the only
32333 option offered by the server, or if the Alpine in question has been built
32334 without encryption capability.
32337 Note that this feature specifies a per-user (or system-wide) default
32338 behavior, but host/folder specification flags may be used to control the
32339 behavior of any specific connection.
32340 This feature interacts with some of
32341 the possible host/folder path specification flags as follows:
32344 The <SAMP>/tls</SAMP> host flag, for example,
32347 <CENTER><SAMP>{foo.example.com/tls}INBOX</SAMP></CENTER>
32349 will over-ride this feature for the specified host by bypassing the
32350 SSL connection attempt.
32351 Moreover, with <SAMP>/tls</SAMP> specified,
32352 the connection attempt will fail if the
32353 service on port 143 does not offer TLS support.
32356 The <SAMP>/ssl</SAMP> host flag, for example,
32359 <CENTER><SAMP>{foo.example.com/ssl}INBOX</SAMP></CENTER>
32361 will insist on an SSL connection for the specified host,
32362 and will fail if the SSL service on port 993 is not available.
32363 Alpine will not subsequently retry a connection
32364 on port 143 if <SAMP>/ssl</SAMP> is specified.
32367 <UL>   
32368 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32369 </UL><P>
32370 &lt;End of help on this topic&gt;
32371 </BODY>
32372 </HTML>
32373 ====== h_config_file_dir ======
32374 <HTML>
32375 <HEAD>
32376 <TITLE>OPTION: File Directory</TITLE>
32377 </HEAD>
32378 <BODY>
32379 <H1>OPTION: File Directory</H1>
32381 PC-Alpine only.
32383 This value affects the Composer's &quot;^J&nbsp;Attach&quot; command, 
32384 the Attachment Index Screen's &quot;S&nbsp;Save&quot; command, and the
32385 Message Index's &quot;E&nbsp;Export&quot; command.
32388 Normally, when a filename is supplied that lacks a leading &quot;path&quot;
32389 component, Alpine assumes the file exists in the user's home directory.
32390 Under Windows operating systems, this definition isn't always clear.  This 
32391 feature allows you to explictly set where Alpine should look for files
32392 without a leading path.
32395 NOTE: this feature's value is ignored if either 
32396 <A HREF="h_config_use_current_dir"><!--#echo var="FEAT_use-current-dir"--></A> feature
32397 is set or the PINERC has a value for the &quot;<!--#echo var="VAR_operating-dir"-->&quot; variable.
32400 <UL>   
32401 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
32402 </UL><P>
32403 &lt;End of help on this topic&gt;
32404 </BODY>
32405 </HTML>
32406 ====== h_config_quote_all_froms =====
32407 <HTML>
32408 <HEAD>
32409 <TITLE>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></TITLE>
32410 </HEAD>
32411 <BODY>
32412 <H1>FEATURE: <!--#echo var="FEAT_save-will-quote-leading-froms"--></H1>
32414 This feature controls an aspect of the Save command (and also the way
32415 outgoing messages are saved to an FCC folder).  If set, Alpine will add
32416 a leading &quot;>&quot; character in front of message lines beginning with &quot;From&quot; 
32417 when they are saved to another folder, including lines syntactically
32418 distinguishable from the type of message separator line commonly used on
32419 Unix systems.
32422 The default behavior is that a &quot;>&quot; will be prepended only to lines
32423 beginning with &quot;From &quot; that might otherwise be confused with a message
32424 separator line on Unix systems.  If pine is the only mail program you use,
32425 this default is reasonable.  If another program you use has trouble
32426 displaying a message with an unquoted &quot;From &quot; saved by Alpine, you should
32427 enable this feature.  This feature only applies to the common Unix mailbox
32428 format that uses message separator lines beginning with &quot;From &quot;.  If
32429 Alpine has been configured to use a different mailbox format (possibly
32430 incompatible with other mail programs), then this issue does not arise,
32431 and the feature is irrelevant.
32434 &lt;End of help on this topic&gt;
32435 </BODY>
32436 </HTML>
32437 ====== h_config_normal_color =====
32438 <HTML>
32439 <HEAD>
32440 <TITLE>OPTION: Normal Color</TITLE>
32441 </HEAD>
32442 <BODY>
32443 <H1>OPTION: Normal Color</H1>
32445 Sets the color Alpine normally uses.
32446 The foreground color is the color of the actual character and the
32447 background color is the color of the area behind the character.
32448 By default this color is black characters on a white background.
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_reverse_color =====
32459 <HTML>
32460 <HEAD>
32461 <TITLE>OPTION: Reverse Color</TITLE>
32462 </HEAD>
32463 <BODY>
32464 <H1>OPTION: Reverse Color</H1>
32466 Sets the color Alpine uses for reverse video characters.
32467 The foreground color is the color of the actual character and the
32468 background color is the color of the area behind the character.
32470 <A HREF="h_color_setup">Descriptions of the available commands</A>
32472 Look <A HREF="h_edit_nav_cmds">here</A>
32473 to see the available Editing and Navigation commands.
32475 &lt;End of help on this topic&gt;
32476 </BODY>
32477 </HTML>
32478 ====== h_config_title_color =====
32479 <HTML>
32480 <HEAD>
32481 <TITLE>OPTION: Title Color</TITLE>
32482 </HEAD>
32483 <BODY>
32484 <H1>OPTION: Title Color</H1>
32486 Sets the color Alpine uses for the titlebar (the top line on the screen).
32487 The foreground color is the color of the actual character and the
32488 background color is the color of the area behind the character.
32489 By default, the Title Color is black characters on a yellow background.
32491 The actual titlebar color may be different from the Title Color if
32492 the option
32493 <A HREF="h_config_titlebar_color_style">&quot;<!--#echo var="VAR_titlebar-color-style"-->&quot;</A>
32494 is set to some value other than the default.
32495 It may also be different if the current folder is closed and the
32496 <A HREF="h_config_titleclosed_color">Title Closed Color</A>
32497 color is set to something different from the Title Color.
32499 <A HREF="h_color_setup">Descriptions of the available commands</A>
32501 Look <A HREF="h_edit_nav_cmds">here</A>
32502 to see the available Editing and Navigation commands.
32504 &lt;End of help on this topic&gt;
32505 </BODY>
32506 </HTML>
32507 ====== h_config_titleclosed_color =====
32508 <HTML>
32509 <HEAD>
32510 <TITLE>OPTION: Title Closed Color</TITLE>
32511 </HEAD>
32512 <BODY>
32513 <H1>OPTION: Title Closed Color</H1>
32515 Sets the color Alpine uses for the titlebar (the top line on the screen)
32516 when the current folder is closed.
32517 The foreground color is the color of the actual character and the
32518 background color is the color of the area behind the character.
32519 By default, the Title Color Closed Color is white characters on a red background.
32521 By setting this color to something noticeable you will be alerted to the
32522 fact that the current folder is closed, perhaps unexpectedly.
32524 &lt;End of help on this topic&gt;
32525 </BODY>
32526 </HTML>
32527 ====== h_config_status_color =====
32528 <HTML>
32529 <HEAD>
32530 <TITLE>OPTION: Status Color</TITLE>
32531 </HEAD>
32532 <BODY>
32533 <H1>OPTION: Status Color</H1>
32535 Sets the color Alpine uses for status messages written to the message
32536 line near the bottom of the screen.
32537 The foreground color is the color of the actual character and the
32538 background color is the color of the area behind the character.
32539 By default, the Status Color is the same as the Reverse Color.
32541 <A HREF="h_color_setup">Descriptions of the available commands</A>
32543 Look <A HREF="h_edit_nav_cmds">here</A>
32544 to see the available Editing and Navigation commands.
32546 &lt;End of help on this topic&gt;
32547 </BODY>
32548 </HTML>
32549 ====== h_config_index_opening_color =====
32550 <HTML>
32551 <HEAD>
32552 <TITLE>OPTION: Index Opening Color</TITLE>
32553 </HEAD>
32554 <BODY>
32555 <H1>OPTION: Index Opening Color</H1>
32557 With some setups the text of the subject is followed
32558 by the opening text of the message if there is any room available in the index line.
32559 If you have configured your
32560 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32561 to include one of the Subject tokens that causes this behavior
32562 (SUBJECTTEXT, SUBJKEYTEXT, or SUBJKEYINITTEXT), you may set the color of
32563 this opening text with this option.
32564 This coloring takes place for all but the current index line, and the Opening
32565 Color appears to be in front of any color from an Index Color Rule.
32567 By default the Index Opening Color is gray characters on a white background.
32570 <A HREF="h_color_setup">Descriptions of the available commands</A>
32572 Look <A HREF="h_edit_nav_cmds">here</A>
32573 to see the available Editing and Navigation commands.
32575 &lt;End of help on this topic&gt;
32576 </BODY>
32577 </HTML>
32578 ====== h_config_index_pri_color =====
32579 <HTML>
32580 <HEAD>
32581 <TITLE>OPTION: Index Priority Symbol Colors</TITLE>
32582 </HEAD>
32583 <BODY>
32584 <H1>OPTION: Index Priority Symbol Colors</H1>
32586 The X-Priority header is a non-standard header that is used in a
32587 somewhat standard way by many mail programs.
32588 Alpine expects the value of this header to be a digit with a value
32589 from 1 to 5, with 1 being the highest priority and 5 the lowest priority.
32590 Alpine can be made to display an indication of this priority in
32591 messages by use of one of the tokens
32592 (<A HREF="h_index_tokens">Tokens for Index and Replying</A>)
32593 PRIORITY, PRIORITYALPHA, or PRIORITY! in the
32594 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
32597 You may set the color used to draw these tokens by use of the colors
32598 Index High Priority Symbol Color and Index Low Priority Symbol Color.
32599 This coloring takes place for all but the current index line, and the Priority
32600 Color appears to be in front of any color from an Index Color Rule.
32601 If the priority has a value of 1 or 2 the High Priority color will be
32602 used,
32603 and if the value is 4 or 5 the Low Priority color will be used.
32605 If you don't set these colors the index line will be colored in the same color as
32606 the bulk of the index line.
32609 <A HREF="h_color_setup">Descriptions of the available commands</A>
32611 Look <A HREF="h_edit_nav_cmds">here</A>
32612 to see the available Editing and Navigation commands.
32614 &lt;End of help on this topic&gt;
32615 </BODY>
32616 </HTML>
32617 ====== h_config_index_subject_color =====
32618 <HTML>
32619 <HEAD>
32620 <TITLE>OPTION: Index Subject Color</TITLE>
32621 </HEAD>
32622 <BODY>
32623 <H1>OPTION: Index Subject Color</H1>
32625 You may set the color used to draw the Subject part of the index line.
32626 This coloring takes place for all but the current index line, and the Subject
32627 Color appears to be in front of any color from an Index Color Rule.
32629 If you don't set this color it will be colored in the same color as
32630 the bulk of the index line.
32633 <A HREF="h_color_setup">Descriptions of the available commands</A>
32635 Look <A HREF="h_edit_nav_cmds">here</A>
32636 to see the available Editing and Navigation commands.
32638 &lt;End of help on this topic&gt;
32639 </BODY>
32640 </HTML>
32641 ====== h_config_index_from_color =====
32642 <HTML>
32643 <HEAD>
32644 <TITLE>OPTION: Index From Color</TITLE>
32645 </HEAD>
32646 <BODY>
32647 <H1>OPTION: Index From Color</H1>
32649 You may set the color used to draw the From part of the index line.
32650 This coloring takes place for all but the current index line, and the From
32651 Color appears to be in front of any color from an Index Color Rule.
32653 If you don't set this color it will be colored in the same color as
32654 the bulk of the index line.
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_index_arrow_color =====
32666 <HTML>
32667 <HEAD>
32668 <TITLE>OPTION: Index Arrow Color</TITLE>
32669 </HEAD>
32670 <BODY>
32671 <H1>OPTION: Index Arrow Color</H1>
32673 If you have configured your
32674 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option
32675 to include the &quot;ARROW&quot; token, you may set the color of
32676 the arrow displayed with this option.
32677 If you don't set the color it will be colored in the same color as
32678 the bulk of the index line.
32681 <A HREF="h_color_setup">Descriptions of the available commands</A>
32683 Look <A HREF="h_edit_nav_cmds">here</A>
32684 to see the available Editing and Navigation commands.
32686 &lt;End of help on this topic&gt;
32687 </BODY>
32688 </HTML>
32689 ====== h_config_index_color =====
32690 <HTML>
32691 <HEAD>
32692 <TITLE>OPTION: Index Colors</TITLE>
32693 </HEAD>
32694 <BODY>
32695 <H1>OPTION: Index Colors</H1>
32697 You may add color to the single character symbols that give the status
32698 of each message in the MESSAGE INDEX.
32699 By default the characters &quot;+&quot;, &quot;*&quot;, &quot;D&quot;,
32700 &quot;A&quot;, and &quot;N&quot; show up near the left hand side of the
32701 screen depending on whether the message is addressed to you, and whether
32702 the message is marked Important, is Deleted, is Answered, or is New.
32703 The color for each of those characters may be specified by setting the
32704 &quot;Index-to-me&quot; Symbol Color,
32705 the &quot;Index-important&quot; Symbol Color,
32706 the &quot;Index-deleted&quot; Symbol Color,
32707 the &quot;Index-answered&quot; Symbol Color,
32708 and the &quot;Index-new&quot; Symbol Color.
32709 There are also two other symbol colors called &quot;Index-recent&quot;
32710 and &quot;Index-unseen&quot;.
32711 These two colors will only be used if you have configured your
32712 &quot;<A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A>&quot; option
32713 to include the &quot;IMAPSTATUS&quot; or &quot;SHORTIMAPSTATUS&quot; token.
32715 The default colors for these symbols are:
32716 <TABLE>
32717 <TR> <TD> &nbsp;&nbsp;Index-to-me&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> black on cyan </TD> </TR>
32718 <TR> <TD> &nbsp;&nbsp;Index-important </TD> <TD> white on bright red </TD> </TR>
32719 <TR> <TD> &nbsp;&nbsp;Index-deleted&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32720 <TR> <TD> &nbsp;&nbsp;Index-answered&nbsp; </TD> <TD> bright red on yellow </TD> </TR>
32721 <TR> <TD> &nbsp;&nbsp;Index-new&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </TD> <TD> white on magenta </TD> </TR>
32722 <TR> <TD> &nbsp;&nbsp;Index-recent&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32723 <TR> <TD> &nbsp;&nbsp;Index-unseen&nbsp;&nbsp;&nbsp; </TD> <TD> same as Normal Color </TD> </TR>
32724 </TABLE>
32726 Besides coloring the message status symbols, you may also color the
32727 entire index line.
32728 This is done by using the
32729 <A HREF="h_rules_incols">SETUP INDEX LINE COLORS</A> screen, which you
32730 may get to with the commands <EM>S</EM>etup/<EM>R</EM>ules/<EM>I</EM>ndexcolor.
32731 When the entire line is colored that color will be &quot;behind&quot; the
32732 status symbol colors talked about in the paragraph above.
32734 You may also color
32735 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
32736 in the index using the
32737 Setup/Kolor screen (<A HREF="h_config_kw_color">Keyword Colors</A>);
32738 the <A HREF="h_config_index_arrow_color">ARROW</A> cursor;
32739 the Subject using
32740 <A HREF="h_config_index_subject_color">Index Subject Color</A>;
32741 the From field using
32742 <A HREF="h_config_index_from_color">Index From Color</A>;
32743 and the
32744 <A HREF="h_config_index_opening_color">Index Opening</A> text.
32746 <A HREF="h_color_setup">Descriptions of the available commands</A>
32748 Look <A HREF="h_edit_nav_cmds">here</A>
32749 to see the available Editing and Navigation commands.
32751 &lt;End of help on this topic&gt;
32752 </BODY>
32753 </HTML>
32754 ====== h_config_metamsg_color =====
32755 <HTML>
32756 <HEAD>
32757 <TITLE>OPTION: Meta-Message Color</TITLE>
32758 </HEAD>
32759 <BODY>
32760 <H1>OPTION: Meta-Message Color</H1>
32762 Sets the color Alpine uses in the MESSAGE TEXT screen for messages to you
32763 that aren't part of the message itself.
32764 For example, an attachment that isn't shown might produce a meta
32765 message something like:
32767 <CENTER><SAMP> [ Part 2, &quot;comment&quot; Text/PLAIN (Name: &quot;file&quot;) ]</SAMP></CENTER>
32769 If you set the
32770 <A HREF="h_config_quote_suppression"><!--#echo var="VAR_quote-suppression-threshold"--></A>
32771 option you might see
32773 <CENTER><SAMP>[ 12 lines of quoted text hidden from view ]</SAMP></CENTER>
32775 Warnings about suspicious looking URLs in HTML will also be colored
32776 with this color.
32778 The foreground color is the color of the actual character and the
32779 background color is the color of the area behind the character.
32780 By default, the Meta-Message Color is black characters on a yellow background.
32782 <A HREF="h_color_setup">Descriptions of the available commands</A>
32784 Look <A HREF="h_edit_nav_cmds">here</A>
32785 to see the available Editing and Navigation commands.
32787 &lt;End of help on this topic&gt;
32788 </BODY>
32789 </HTML>
32790 ====== h_config_keylabel_color =====
32791 <HTML>
32792 <HEAD>
32793 <TITLE>OPTION: KeyLabel Color</TITLE>
32794 </HEAD>
32795 <BODY>
32796 <H1>OPTION: KeyLabel Color</H1>
32798 Sets the color Alpine uses for the labels of the keys in the two-line
32799 menu at the bottom of the screen.
32800 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32801 This option sets the color used when displaying &quot;PrevMsg&quot;.
32802 The foreground color is the color of the actual character and the
32803 background color is the color of the area behind the character.
32804 By default, the KeyLabel Color is the same as the Normal Color.
32806 WARNING: Some terminal emulators have the property that the screen will scroll
32807 down one line whenever a character is written to the character cell in the
32808 lower right corner of the screen.
32809 Alpine can usually avoid writing a character in that corner of the screen.
32810 However, if you have defined a KeyLabel Color then Alpine does have to write
32811 a character in that cell in order to color the cell correctly.
32812 If you find that your display sometimes scrolls up a line this could be
32813 the problem.
32814 The most obvious symptom is probably that the titlebar at the top of the
32815 screen scrolls off the screen.
32816 Try setting KeyLabel Color to Default to see if that fixes the problem.
32818 <A HREF="h_color_setup">Descriptions of the available commands</A>
32820 Look <A HREF="h_edit_nav_cmds">here</A>
32821 to see the available Editing and Navigation commands.
32823 &lt;End of help on this topic&gt;
32824 </BODY>
32825 </HTML>
32826 ====== h_config_keyname_color =====
32827 <HTML>
32828 <HEAD>
32829 <TITLE>OPTION: KeyName Color</TITLE>
32830 </HEAD>
32831 <BODY>
32832 <H1>OPTION: KeyName Color</H1>
32834 Sets the color Alpine uses for the names of the keys in the two-line
32835 menu at the bottom of the screen.
32836 For example, some of the screens have a &quot;P PrevMsg&quot; command.
32837 This option sets the color used when displaying the &quot;P&quot;.
32838 The foreground color is the color of the actual character and the
32839 background color is the color of the area behind the character.
32840 By default, the KeyName Color is the same as the Reverse Color.
32842 <A HREF="h_color_setup">Descriptions of the available commands</A>
32844 Look <A HREF="h_edit_nav_cmds">here</A>
32845 to see the available Editing and Navigation commands.
32847 &lt;End of help on this topic&gt;
32848 </BODY>
32849 </HTML>
32850 ====== h_config_slctbl_color =====
32851 <HTML>
32852 <HEAD>
32853 <TITLE>OPTION: Selectable Item Color</TITLE>
32854 </HEAD>
32855 <BODY>
32856 <H1>OPTION: Selectable Item Color</H1>
32858 Sets the color Alpine uses for selectable items, such as URLs.
32859 The foreground color is the color of the actual character and the
32860 background color is the color of the area behind the character.
32861 By default, the Selectable Item Color is the same as the Normal Color,
32862 except that it is bold.
32864 <A HREF="h_color_setup">Descriptions of the available commands</A>
32866 Look <A HREF="h_edit_nav_cmds">here</A>
32867 to see the available Editing and Navigation commands.
32869 &lt;End of help on this topic&gt;
32870 </BODY>
32871 </HTML>
32872 ====== h_config_quote_color =====
32873 <HTML>
32874 <HEAD>
32875 <TITLE>OPTION: Quote Colors</TITLE>
32876 </HEAD>
32877 <BODY>
32878 <H1>OPTION: Quote Colors</H1>
32880 Sets the colors Alpine uses for coloring quoted text in the MESSAGE TEXT
32881 screen.
32882 If a line begins with a &gt; character (or space followed by &gt;)
32883 it is considered a quote.
32884 That line will be given the Quote1 Color (first level quote).
32885 If there is a second level of quoting then the Quote2 Color will be used.
32886 Alpine considers there to be a second level of quoting if that first &gt; is
32887 followed by another &gt; (or space followed by &gt;).
32888 If there are characters other than whitespace and &gt; signs, then it isn't
32889 considered another level of quoting.
32890 Similarly, if there is a third level of quoting the Quote3 Color will be
32891 used.
32892 If there are more levels after that the Quote Colors are re-used.
32893 If you define all three colors then it would repeat like Color1, Color2, Color3,
32894 Color1, Color2, Color3, ...
32895 If you only define the first two it would be
32896 Color1, Color2, Color1, Color2, ...
32897 If you define only the Quote1 Color, then the entire quote would be that
32898 color regardless of the quoting levels.
32899 By default, the Quote1 Color is black characters on a greenish-blue background;
32900 the Quote2 Color is black characters on a dull yellow background; and
32901 the Quote3 Color is black characters on a green background.
32903 <A HREF="h_color_setup">Descriptions of the available commands</A>
32905 Look <A HREF="h_edit_nav_cmds">here</A>
32906 to see the available Editing and Navigation commands.
32908 &lt;End of help on this topic&gt;
32909 </BODY>
32910 </HTML>
32911 ====== h_config_folder_color =====
32912 <HTML>
32913 <HEAD>
32914 <TITLE>OPTION: Folder Color</TITLE>
32915 </HEAD>
32916 <BODY>
32917 <H1>OPTION: Folder Color</H1>
32919 Sets the colors Alpine uses for coloring a folder in the FOLDER LIST
32920 screen. By default, the Folder Color is the normal text color.
32923 If you set a color for this feature, other than the normal color
32924 (the default), or a color for
32925 <A HREF="h_config_directory_color">Directory Color</A>, then directories
32926 will be colored according to the color specified in the
32927 <A HREF="h_config_directory_color">Directory Color</A> option. In this
32928 case, the color will be the only indication that the colored name
32929 refers to a directory. The normal behavior is that Alpine
32930 indicates that a name refers to a directory by appending a
32931 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32932 the folder.
32935 If a folder is a directory, then the folder name will be painted
32936 according to the color defined by this variable, and a separator
32937 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added 
32938 to the name. That
32939 indicator will be painted according to the color defined in the
32940 <A HREF="h_config_directory_color">Directory Color</A> option.
32943 &lt;End of help on this topic&gt;
32944 </BODY>
32945 </HTML>
32946 ====== h_config_directory_color =====
32947 <HTML>
32948 <HEAD>
32949 <TITLE>OPTION: Directory Color</TITLE>
32950 </HEAD>
32951 <BODY>
32952 <H1>OPTION: Directory Color</H1>
32954 Sets the colors Alpine uses for coloring a directory in the FOLDER LIST
32955 screen. By default, the Folder Color is the normal text color.
32957 If you set a color for this feature, other than the normal color
32958 (the default), or a color for
32959 <A HREF="h_config_folder_color">Folder Color</A>, then folders
32960 will be colored according to the color specified in the
32961 <A HREF="h_config_folder_color">Folder Color</A> option. In this
32962 case, the color will be the only indication that the colored name
32963 refers to a directory. The normal behavior is that Alpine
32964 indicates that a name refers to a directory by appending a
32965 separator (like &quot;/&quot; or &quot;.&quot;) to the name of
32966 the folder.
32968 If a folder is a directory, then the folder name will be painted
32969 according to the color defined by the option
32970 <A HREF="h_config_folder_color">Folder Color</A>, and the separator
32971 indicator  (like &quot;/&quot; or &quot;.&quot;) will be added
32972 after the name. That
32973 indicator will be painted according to the color defined in this
32974 option.
32976 &lt;End of help on this topic&gt;
32977 </BODY>
32978 </HTML>
32979 ====== h_config_folder_list_color =====
32980 <HTML>
32981 <HEAD>
32982 <TITLE>OPTION: Folder-List Color</TITLE>
32983 </HEAD>
32984 <BODY>
32985 <H1>OPTION: Folder-List Color</H1>
32987 Sets the colors Alpine uses for coloring normal text in the FOLDER LIST
32988 screen. By default, the Folder-List Color is the normal text color.
32990 This text refers to the informative text that Alpine displays so you
32991 can recognize each collection. The color of the content of each collection
32992 is determined by the options <A HREF="h_config_folder_color">Folder Color</A>
32993 and <A HREF="h_config_directory_color">Directory Color</A>.
32995 Unlike the options
32996 <A HREF="h_config_folder_color">Folder Color</A>
32997 and <A HREF="h_config_directory_color">Directory Color</A>, configuring
32998 this option does not affect the way that Alpine reports folders,
32999 directories and folders that are directories.
33001 &lt;End of help on this topic&gt;
33002 </BODY>
33003 </HTML>
33004 ====== h_config_incunseen_color =====
33005 <HTML>
33006 <HEAD>
33007 <TITLE>OPTION: Incoming Unseen Color</TITLE>
33008 </HEAD>
33009 <BODY>
33010 <H1>OPTION: Incoming Unseen Color</H1>
33012 If the option
33013 <A HREF="h_config_enable_incoming_checking"><!--#echo var="FEAT_enable-incoming-folders-checking"--></A>
33014 is turned on it is possible to highlight the folders that contain
33015 unseen messages by coloring them with this color.
33016 By default, this is the same as the Normal Color and no highlighting is done.
33018 Usually the &quot;current&quot; folder (the folder the cursor is on)
33019 is highlighted using reverse video.
33020 If the current folder is colored because it contains unseen messages then
33021 the color used to show that it is also the current folder is controlled
33022 by the
33023 <A HREF="h_config_index_color_style"><!--#echo var="VAR_current-indexline-style"--></A>
33024 feature at the top of the SETUP COLOR screen.
33026 <A HREF="h_color_setup">Descriptions of the available commands</A>
33028 Look <A HREF="h_edit_nav_cmds">here</A>
33029 to see the available Editing and Navigation commands.
33031 &lt;End of help on this topic&gt;
33032 </BODY>
33033 </HTML>
33034 ====== h_config_signature_color =====
33035 <HTML>
33036 <HEAD>
33037 <TITLE>OPTION: Signature Color</TITLE>
33038 </HEAD>
33039 <BODY>
33040 <H1>OPTION: Signature Color</H1>
33042 Sets the color Alpine uses for coloring the signature in the MESSAGE TEXT
33043 screen. According to USENET conventions, the signature is defined as the
33044 paragraph following the &quot;sigdashes&quot;, that is, the special line
33045 consisting of the three characters
33046 &quot;--&nbsp;&quot; (i.e., dash, dash, and space). Alpine allows for one
33047 empty line right after the sigdashes to be considered as part of the
33048 signature.
33049 By default, the Signature Color is blue characters on a white background.
33051 <A HREF="h_color_setup">Descriptions of the available commands</A>
33053 Look <A HREF="h_edit_nav_cmds">here</A>
33054 to see the available Editing and Navigation commands.
33056 &lt;End of help on this topic&gt;
33057 </BODY>
33058 </HTML>
33059 ====== h_config_prompt_color =====
33060 <HTML>
33061 <HEAD>
33062 <TITLE>OPTION: Prompt Color</TITLE>
33063 </HEAD>
33064 <BODY>
33065 <H1>OPTION: Prompt Color</H1>
33067 Sets the color Alpine uses for confirmation prompts and questions that
33068 appear in the status line near the bottom of the screen.
33069 The foreground color is the color of the actual character and the
33070 background color is the color of the area behind the character.
33071 By default, the Prompt Color is the same as the Reverse Color.
33073 <A HREF="h_color_setup">Descriptions of the available commands</A>
33075 Look <A HREF="h_edit_nav_cmds">here</A>
33076 to see the available Editing and Navigation commands.
33078 &lt;End of help on this topic&gt;
33079 </BODY>
33080 </HTML>
33081 ====== h_config_header_general_color =====
33082 <HTML>
33083 <HEAD>
33084 <TITLE>OPTION: Header General Color</TITLE>
33085 </HEAD>
33086 <BODY>
33087 <H1>OPTION: Header General Color</H1>
33089 Sets the color Alpine uses for the headers of a message in the MESSAGE TEXT
33090 screen.
33091 The foreground color is the color of the actual character and the
33092 background color is the color of the area behind the character.
33093 By default, this is the same as the Normal Color.
33095 It is also possible to set the colors for specific header fields, for
33096 example the Subject, using
33097 <A HREF="h_config_customhdr_color"><!--#echo var="VAR_viewer-hdr-colors"--></A>.
33098 If both a Header General Color and a specific Viewer Header Color are set
33099 the specific color will override the general color, as you would expect.
33101 <A HREF="h_color_setup">Descriptions of the available commands</A>
33103 Look <A HREF="h_edit_nav_cmds">here</A>
33104 to see the available Editing and Navigation commands.
33106 &lt;End of help on this topic&gt;
33107 </BODY>
33108 </HTML>
33109 ====== h_config_incol =====
33110 <HTML>
33111 <HEAD>
33112 <TITLE>Index Line Color</TITLE>
33113 </HEAD>
33114 <BODY>
33115 <H1>Index Line Color</H1>
33117 This option is used to set the color of a line in the index when the
33118 message for that line matches the Pattern.
33119 This colors the whole index line, except possibly the status letters,
33120 which may be colored separately using the
33121 <A HREF="h_color_setup">Setup Kolor</A> screen.
33122 The foreground color is the color of the actual characters and the
33123 background color is the color of the area behind the characters.
33125 <A HREF="h_color_setup">Descriptions of the available commands</A>
33127 Look <A HREF="h_edit_nav_cmds">here</A>
33128 to see the available Editing and Navigation commands.
33130 &lt;End of help on this topic&gt;
33131 </BODY>
33132 </HTML>
33133 ====== h_config_usetransparent_color =====
33134 <HTML>
33135 <HEAD>
33136 <TITLE>OPTION: Use Transparent Color</TITLE>
33137 </HEAD>
33138 <BODY>
33139 <H1>OPTION: Use Transparent Color</H1>
33141 This is a special color supported by some terminal emulators.
33142 It is intended to result in the default foreground or background color
33143 from the terminal emulator.
33144 This is the color the terminal was displaying characters in before you started Alpine.
33145 The reason it is called Transparent is because you could set the foreground color
33146 to some specific color, like Red, and then set the background color to the
33147 Transparent Color. If it works as expected, the background color from the terminal
33148 window in which Alpine is running will show through but with the Red characters
33149 in the foreground.
33151 <A HREF="h_color_setup">Descriptions of the available commands</A>
33153 Look <A HREF="h_edit_nav_cmds">here</A>
33154 to see the available Editing and Navigation commands.
33156 &lt;End of help on this topic&gt;
33157 </BODY>
33158 </HTML>
33159 ====== h_config_usenormal_color =====
33160 <HTML>
33161 <HEAD>
33162 <TITLE>OPTION: Use Normal Color</TITLE>
33163 </HEAD>
33164 <BODY>
33165 <H1>OPTION: Use Normal Color</H1>
33167 When you use this color value, the actual color used will be the same
33168 as the corresponding Normal Color.
33169 For example if your Normal Color is black on white and you set both
33170 the foreground and background colors here to use the Normal Color, you'll
33171 get black on white. If you later change the Normal Color to red on blue
33172 this color will also change to red on blue.
33174 <A HREF="h_color_setup">Descriptions of the available commands</A>
33176 Look <A HREF="h_edit_nav_cmds">here</A>
33177 to see the available Editing and Navigation commands.
33179 &lt;End of help on this topic&gt;
33180 </BODY>
33181 </HTML>
33182 ====== h_config_usenone_color =====
33183 <HTML>
33184 <HEAD>
33185 <TITLE>OPTION: Use None Color</TITLE>
33186 </HEAD>
33187 <BODY>
33188 <H1>OPTION: Use None Color</H1>
33190 This is a special color that simply means to leave the color alone.
33191 It is useful for Index symbols and for Keyword Colors used in the Subject
33192 field of an index line.
33193 The most likely use is to set an explicit foreground color and then set
33194 the background color to the None Color.
33195 That will cause the symbol or keyword to be drawn in the foreground color
33196 with a background equal to whatever color the rest of the index line is already
33197 drawn in.
33198 You will see no visible effect unless you have assigned Indexcolor Rules to
33199 color index lines or you have set an actual color for the Reverse Color.
33201 <A HREF="h_color_setup">Descriptions of the available commands</A>
33203 Look <A HREF="h_edit_nav_cmds">here</A>
33204 to see the available Editing and Navigation commands.
33206 &lt;End of help on this topic&gt;
33207 </BODY>
33208 </HTML>
33209 ====== h_config_dflt_color =====
33210 <HTML>
33211 <HEAD>
33212 <TITLE>OPTION: Default Color</TITLE>
33213 </HEAD>
33214 <BODY>
33215 <H1>OPTION: Default Color</H1>
33217 Setting default will cause the color to be the default color.
33218 Unsetting default is normally done by choosing a color, but in some cases
33219 you may want to declare the current default color to be your non-default
33220 choice.
33221 For example, the default Keyname Color is the same as the Reverse Color.
33222 Whenever the Reverse Color changes the Keyname Color will also change, unless
33223 you've changed it or unset the default box.
33225 <A HREF="h_color_setup">Descriptions of the available commands</A>
33227 Look <A HREF="h_edit_nav_cmds">here</A>
33228 to see the available Editing and Navigation commands.
33230 &lt;End of help on this topic&gt;
33231 </BODY>
33232 </HTML>
33233 ====== h_config_bold_slctbl =====
33234 <HTML>
33235 <HEAD>
33236 <TITLE>OPTION: Bold</TITLE>
33237 </HEAD>
33238 <BODY>
33239 <H1>OPTION: Bold</H1>
33241 The color for this particular section may have the Bold attribute turned
33242 on or off.
33243 Setting bold will cause the characters to be bold.
33245 <A HREF="h_color_setup">Descriptions of the available commands</A>
33247 Look <A HREF="h_edit_nav_cmds">here</A>
33248 to see the available Editing and Navigation commands.
33250 &lt;End of help on this topic&gt;
33251 </BODY>
33252 </HTML>
33253 ====== h_config_kw_color =====
33254 <HTML>
33255 <HEAD>
33256 <TITLE>OPTION: Keyword Colors</TITLE>
33257 </HEAD>
33258 <BODY>
33259 <H1>OPTION: Keyword Colors</H1>
33261 Sets the colors Alpine uses for Keyword fields in the MESSAGE INDEX screen.
33262 Keywords are displayed as part of the Subject by default.
33263 They are also displayed as part of the Subject if the tokens
33264 &quot;SUBJKEY&quot;, &quot;SUBJKEYTEXT&quot;, &quot;SUBJKEYINIT&quot;, or &quot;SUBJKEYINITTEXT&quot; are used in the
33265 <A HREF="h_config_index_format"><!--#echo var="VAR_index-format"--></A> option.
33266 Keywords may also be displayed in a column of their own in the MESSAGE INDEX
33267 screen by using the &quot;KEY&quot; or &quot;KEYINIT&quot; tokens.
33269 For example, you might have set up a Keyword
33270 &quot;Work&quot; using the
33271 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A> option in the Setup/Config screen.
33272 You could cause that Keyword to show up as a special color
33273 by setting up the Keyword Color using this option, and then including it
33274 in the MESSAGE INDEX screen using one of the tokens listed above in the
33275 <!--#echo var="VAR_index-format"-->.
33277 <A HREF="h_color_setup">Descriptions of the available commands</A>
33279 Look <A HREF="h_edit_nav_cmds">here</A>
33280 to see the available Editing and Navigation commands.
33282 &lt;End of help on this topic&gt;
33283 </BODY>
33284 </HTML>
33285 ====== h_config_customhdr_color =====
33286 <HTML>
33287 <HEAD>
33288 <TITLE>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></TITLE>
33289 </HEAD>
33290 <BODY>
33291 <H1>OPTION: <!--#echo var="VAR_viewer-hdr-colors"--></H1>
33293 Sets the colors Alpine uses for specific header fields in the MESSAGE TEXT screen.
33294 For example, you may set the color of the Subject header or the From header.
33295 The foreground color is the color of the actual character and the
33296 background color is the color of the area behind the character.
33298 In addition to setting the colors for particular headers (like the Subject)
33299 you may also set a color to be used for all headers unless overridden by a
33300 more specific Viewer Header Color.
33301 To do this use the
33302 <A HREF="h_config_header_general_color">Header General Color</A>.
33304 For Header Colors,
33305 there is an additional line on the
33306 screen labeled &quot;Pattern to match&quot;.
33307 If you leave that blank, then the whole field for that header will
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 If the pattern you enter is a comma-separated list of patterns, then coloring
33316 happens if any of those patterns matches.
33318 <A HREF="h_color_setup">Descriptions of the available commands</A>
33320 Look <A HREF="h_edit_nav_cmds">here</A>
33321 to see the available Editing and Navigation commands.
33323 &lt;End of help on this topic&gt;
33324 </BODY>
33325 </HTML>
33326 ====== h_config_indextoken_color =====
33327 <HTML>
33328 <HEAD>
33329 <TITLE>OPTION: <!--#echo var="VAR_index-token-colors"--></TITLE>
33330 </HEAD>
33331 <BODY>
33332 <H1>OPTION: <!--#echo var="VAR_index-token-colors"--></H1>
33334 This option allows you to set up the color in which any token, not specified by the
33335 previous options, will be colored in the MESSAGE INDEX screen. 
33337 In order to use this option, you must press the &quot;I&quot; <B>IndxHdr</B> command, and add
33338 a token that can be used in the index format. 
33339 The list of available tokens is <A HREF="h_index_tokens">here</A>.
33341 If you fail to enter a valid token your entry will be ignored, and you will be asked to
33342 enter a new one. Once you have entered a valid token, a line will be added to the
33343 configuration screen that you can use to set up the colors in which that token will
33344 be painted. This is done in the same way that you configure colors for other
33345 variables.
33347 <A HREF="h_color_setup">Descriptions of the available commands</A>
33349 Look <A HREF="h_edit_nav_cmds">here</A>
33350 to see the available Editing and Navigation commands.
33352 &lt;End of help on this topic&gt;
33353 </BODY>
33354 </HTML>
33355 ====== h_config_customhdr_pattern =====
33356 <HTML>
33357 <HEAD>
33358 <TITLE>OPTION: Viewer Header Color Pattern</TITLE>
33359 </HEAD>
33360 <BODY>
33361 <H1>OPTION: Viewer Header Color Pattern</H1>
33363 If you leave this blank, then the whole field for the header will
33364 be colored.
33365 If you give a pattern to match, the coloring will only take place
33366 if there is a match for that pattern in the value of the field.
33367 For example, if you are working on a color for the Subject header and
33368 you fill in a pattern of &quot;important&quot;, then only Subjects that
33369 contain the word &quot;important&quot; will be colored.
33371 For address headers (like From and To) and for the Newsgroups header,
33372 a pattern match will cause only the matched addresses or newsgroups to be
33373 colored.
33374 If there is no pattern to match, then all of the addresses or newsgroups
33375 in the relevant header will be colored.
33377 The matching pattern may be a comma-separated list of patterns to match
33378 instead of a single pattern.
33379 For example, you could use the pattern &quot;important,urgent&quot; which would
33380 cause a match if either the word &quot;important&quot; or the word
33381 &quot;urgent&quot; appeared in the value of the header.
33382 You could list several comma-separated email addresses in the Header
33383 From Color pattern so that those addresses will be colored when any of
33384 them appear in the From header.
33386 To add a new matching pattern or change the existing pattern use the 
33387 <!--chtml if pinemode="function_key"-->
33388 &quot;F4&quot;
33389 <!--chtml else-->
33390 &quot;C&quot;
33391 <!--chtml endif-->
33392 &quot;Change&quot; command that is available when the &quot;Pattern to
33393 match&quot; line is highlighted.
33395 <!--chtml if pinemode="function_key"-->
33396 &quot;F10&quot;
33397 <!--chtml else-->
33398 &quot;D&quot;
33399 <!--chtml endif-->
33400 &quot;Delete&quot; command may be used to quickly remove all patterns
33401 for a particular header.
33403 &lt;End of help on this topic&gt;
33404 </BODY>
33405 </HTML>
33406 ====== h_color_setup =====
33407 <HTML>
33408 <HEAD>
33409 <TITLE>SETUP COLOR COMMANDS</TITLE>
33410 </HEAD>
33411 <BODY>
33412 <H1>SETUP COLOR COMMANDS</H1>
33413 <!--chtml if pinemode="function_key"-->
33414 <PRE>
33415 Available Commands -- Group 1
33416 -------------------------------
33417 F1  Display this help text
33418 F2  Show other available commands
33419 F3  Exit to MAIN MENU
33420 F4  Select the highlighted foreground or background color
33421 F5  Move to previous line
33422 F6  Move to next line
33423 F7  Previous page
33424 F8  Next page
33425 F9  Add a config section for a header field
33426 F10 Restore all default colors (for all sections)
33427 F11 Print color configuration screen
33428 F12 Whereis (search for word)
33430 Available Commands -- Group 2
33431 -------------------------------
33432 F1  Display this help text
33433 F2  Show other available commands
33434 F5  Delete config section for highlighted header field
33435 F6  Shuffle the order of Header Color sections
33436 </PRE>
33437 <!--chtml else-->
33438 <PRE>
33439 General commands
33440 -------------------------------------------------
33441  ?  Display this help text     E  Exit back to MAIN MENU
33442  P  Previous Line              N  Next Line
33443  -  Previous page             Spc (space bar) Next page
33444  W  WhereIs (search for word)  %  Print color configuration screen
33446 Color Setup Commands
33447 ------------------------------------------------
33448  *  Select the highlighted foreground or background color
33449  A  Add a config section for a header field
33450  D  Delete config section for highlighted header field
33451  R  Restore all default colors (for all sections)
33452  $  Shuffle the order of Header Color sections
33453 </PRE>
33454 <!--chtml endif-->
33456 <H2>Description of the Setup Color Screen</H2>
33458 From this screen you may turn on color and set the colors of
33459 various parts of the Alpine display.
33460 For help on turning on color move your cursor into the Color Style section
33461 at the top of the Setup Color screen and ask for help.
33464 There are several sections in the Setup Color Screen.
33465 At the top are some settings that handle the style of color used
33466 with your terminal emulator (UNIX only), and some settings that
33467 control how the current indexline and the titlebar are colored.
33468 After that comes a long section called GENERAL COLORS that allows
33469 you to set the color of many elements in the Alpine screens.
33470 For example, the color of the titlebar, status messages,
33471 selectable links, quotes and signatures in messages, and so on.
33472 After that is a section called INDEX COLORS that allows you to
33473 set the colors of various pieces of the displayed index lines in
33474 the MESSAGE INDEX screen.
33475 The next section is HEADER COLORS. This is for coloring headers of
33476 messages in the MESSAGE TEXT screen in just about any way you would like.
33477 Finally, the KEYWORD COLORS section allows you to highlight
33478 <A HREF="h_config_keywords"><!--#echo var="VAR_keywords"--></A>
33479 in the MESSAGE INDEX screen.
33482 To change a color, highlight the color you want to change (for example,
33483 the Status Color) by moving
33484 the cursor into it.
33485 You may want to read the help text for the color to see a brief desription
33486 of what you are coloring.
33487 Then press &quot;C&quot; for Change to set the color to something new.
33488 That will put you into a screen with two columns of colors, one for
33489 the foreground color and one for the background color.
33490 The foreground color is just the color you want the actual characters
33491 to be and the background color is the color of the rest of the rectangle
33492 behind the characters.
33493 Select the foreground and background colors desired by using the Next and
33494 Prev keys to highlight the color, and the * command to select it.
33496 To set a color to its default value, set the X in the Default line at
33497 the bottom of the list of colors.
33500 The HEADER COLORS section is a little bit different from the others.
33501 Besides coloring the specific fields that Alpine knows about, you may also
33502 color specific header fields when viewing a message in the MESSAGE TEXT
33503 screen.
33504 For example, you may color the Subject header a particular color.
33505 There are a few commands for use with headers.
33506 The &quot;AddHeader&quot; command adds a section to the color
33507 configuration screen that allows you to set the color for that header.
33508 You'll be asked for the name of the header field you want to color.
33509 If you wanted to color the Subject, you would answer
33510 with the word &quot;subject&quot;.
33511 Once you've added a header field, the color setting works just like the
33512 other color fields, except that there is an additional line on the
33513 configuration screen labeled &quot;Pattern to match&quot;.
33514 If you leave that blank, then the whole field for that header will always
33515 be colored.
33516 However, if you give a pattern to match, the coloring will only take place
33517 if there is a match for that pattern in the value of the field.
33518 For example, if you are working on a color for the Subject header and
33519 you fill in a pattern of &quot;important&quot;, then only Subjects that
33520 contain the word &quot;important&quot; will be colored.
33522 The &quot;DeleteHdr&quot; command removes a header section from the
33523 configuration altogether.
33524 The &quot;Shuffle&quot; command changes the order of header sections.
33525 This is only necessary if you use header sections with pattern fields.
33526 For example, if you have two Subject sections, one with one pattern and
33527 another with another pattern, and the subject for a particular message
33528 happens to match both, then the color from the first match is used.
33531 The command &quot;RestoreDefs&quot; will restore all of the default colors.
33532 Each section will change to the default value used for that section when
33533 color is first enabled.
33534 When you restore all default colors the color settings for the Header Colors
33535 will be unset (since that's the default), but the header fields you've
33536 added will remain so that you may easily reset them.
33537 In order to get rid of them completely you'd have to use
33538 the &quot;DeleteHdr&quot; command.
33541 Remember that <A HREF="h_rules_incols">Index Line Colors</A>
33542 may be set with matching rules and that is configured separately from
33543 the rest of the color settings described here.
33544 It is configured in the Setup/Rules/Indexcolors section of the configuration screen
33545 instead of in the Setup/Kolor section.
33547 <P><UL>
33548 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33549 </UL><P>
33550 &lt;End of help on this topic&gt;
33551 </BODY>
33552 </HTML>
33553 ====== h_config_news_uses_recent ======
33554 <HTML>
33555 <HEAD>
33556 <TITLE>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></TITLE>
33557 </HEAD>
33558 <BODY>
33559 <H1>FEATURE: <!--#echo var="FEAT_news-approximates-new-status"--></H1>
33561 This feature causes certain messages to be marked as "New" in the
33562 MESSAGE INDEX of newsgroups.
33563 This feature is set by default.
33567 When opening a newsgroup, Alpine will consult your "newsrc" file and
33568 determine the last message you have previously disposed of via the "D"
33569 key.  If this feature is set, any subsequent messages will be shown in the
33570 Index with an "N", and the first of these messages will be highlighted.
33571 Although this is only an approximation of true "New" or "Unseen"
33572 status, it provides a useful cue to distinguish more-or-less recent
33573 messages from those you have seen previously, but are not yet ready to
33574 mark deleted.
33578 Background: your "newsrc" file (used to store message status information
33579 for newsgroups) is only capable of storing a single flag, and Alpine uses
33580 this to record whether or not you are "done with" a message, as
33581 indicated by marking the message as "Deleted".  Unfortunately, this
33582 means that Alpine has no way to record exactly which messages you have
33583 previously seen, so it normally does not show the "N" status flag for
33584 any messages in a newsgroup. This feature enables a starting
33585 *approximation* of seen/unseen status that may be useful.
33587 &lt;End of help on this topic&gt;
33588 </BODY>
33589 </HTML>
33590 ====== h_config_expose_hidden_config =====
33591 <HTML>
33592 <HEAD>
33593 <TITLE>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></TITLE>
33594 </HEAD>
33595 <BODY>
33596 <H1>FEATURE: <!--#echo var="FEAT_expose-hidden-config"--></H1>
33598 If set, this causes configuration options and features that are normally
33599 hidden from view to be editable in the Setup/Config screen.
33602 The purpose of this feature is to allow you to change configuration
33603 features and variables that are normally hidden.
33604 This is particularly useful if you are using a remote configuration,
33605 where it is difficult to edit the contents manually, but it may also be used
33606 on a local pinerc configuration file.
33608 If set, several configuration variables and features that are normally
33609 hidden from view will show up in the Setup/Configuration screen.
33610 They will be at the bottom of the configuration screen.
33611 You can find them by searching for the words &quot;hidden configuration&quot;.
33614 Note that this is an advanced feature that should be used with care.
33615 The reason that this part of the configuration is normally hidden is because
33616 there is a significant potential for causing problems if you change these
33617 variables.
33618 If something breaks after a change try changing it back to see if that is
33619 what is causing the problem.
33620 There are also some variables that are normally hidden because they are
33621 manipulated through Alpine in other ways.
33622 For example, colors are normally set using the Setup/Kolors screen and
33623 the &quot;<!--#echo var="VAR_address-book"-->&quot; variable is normally set using
33624 the Setup/AddressBooks screen, so there is little reason to edit these directly.
33625 The &quot;<!--#echo var="VAR_incoming-folders"-->&quot; variable is normally changed by using
33626 the Add, Delete, and Rename commands in the FOLDER LIST screen,
33627 and the &quot;<!--#echo var="VAR_last-time-prune-questioned"-->&quot; variable is normally used
33628 internally by Alpine and not set directly by the user.
33630 <UL>   
33631 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33632 </UL><P>
33633 &lt;End of help on this topic&gt;
33634 </BODY>
33635 </HTML>
33636 ====== h_config_disable_signature_edit =====
33637 <HTML>
33638 <HEAD>
33639 <TITLE>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></TITLE>
33640 </HEAD>
33641 <BODY>
33642 <H1>FEATURE: <!--#echo var="FEAT_disable-signature-edit-cmd"--></H1>
33644 If set, this disables the editing of signature files from within
33645 the Setup/Config screen.
33647 <UL>   
33648 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33649 </UL><P>
33650 &lt;End of help on this topic&gt;
33651 </BODY>
33652 </HTML>
33653 ====== h_config_disable_roles_templateedit =====
33654 <HTML>
33655 <HEAD>
33656 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></TITLE>
33657 </HEAD>
33658 <BODY>
33659 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-template-edit"--></H1>
33661 If set, this disables the editing of template files within the
33662 Role setup screen.
33664 <UL>   
33665 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33666 </UL><P>
33667 &lt;End of help on this topic&gt;
33668 </BODY>
33669 </HTML>
33670 ====== h_config_disable_roles_sigedit =====
33671 <HTML>
33672 <HEAD>
33673 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></TITLE>
33674 </HEAD>
33675 <BODY>
33676 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-sig-edit"--></H1>
33678 If set, this disables the editing of signature files within the
33679 Role setup screen.
33681 <UL>   
33682 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33683 </UL><P>
33684 &lt;End of help on this topic&gt;
33685 </BODY>
33686 </HTML>
33687 ====== h_config_disable_roles_setup =====
33688 <HTML>
33689 <HEAD>
33690 <TITLE>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></TITLE>
33691 </HEAD>
33692 <BODY>
33693 <H1>FEATURE: <!--#echo var="FEAT_disable-roles-setup-cmd"--></H1>
33695 If set, this disables the Setup/Rules/Roles command.
33697 <UL>   
33698 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33699 </UL><P>
33700 &lt;End of help on this topic&gt;
33701 </BODY>
33702 </HTML>
33703 ====== h_config_disable_pipes_in_templates =====
33704 <HTML>
33705 <HEAD>
33706 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></TITLE>
33707 </HEAD>
33708 <BODY>
33709 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-templates"--></H1>
33711 By default, if a template file name is followed by a vertical bar (|) then
33712 that causes the file to be executed to produce the text for the template.
33713 If this feature is set, then this is not allowed.
33715 <UL>   
33716 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33717 </UL><P>
33718 &lt;End of help on this topic&gt;
33719 </BODY>
33720 </HTML>
33721 ====== h_config_disable_pipes_in_sigs =====
33722 <HTML>
33723 <HEAD>
33724 <TITLE>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></TITLE>
33725 </HEAD>
33726 <BODY>
33727 <H1>FEATURE: <!--#echo var="FEAT_disable-pipes-in-sigs"--></H1>
33729 By default, if a signature file name is followed by a vertical bar (|) then
33730 that causes the file to be executed to produce the text for the signature.
33731 If this feature is set, then this is not allowed.
33733 <UL>   
33734 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33735 </UL><P>
33736 &lt;End of help on this topic&gt;
33737 </BODY>
33738 </HTML>
33739 ====== h_config_disable_password_cmd =====
33740 <HTML>
33741 <HEAD>
33742 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></TITLE>
33743 </HEAD>
33744 <BODY>
33745 <H1>FEATURE: <!--#echo var="FEAT_disable-password-cmd"--></H1>
33747 If set, then the Setup/Newpassword command is disabled.
33749 <UL>   
33750 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33751 </UL><P>
33752 &lt;End of help on this topic&gt;
33753 </BODY>
33754 </HTML>
33755 ====== h_config_disable_password_caching =====
33756 <HTML>
33757 <HEAD>
33758 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></TITLE>
33759 </HEAD>
33760 <BODY>
33761 <H1>FEATURE: <!--#echo var="FEAT_disable-password-caching"--></H1>
33763 Normally, loginname/password combinations are cached in Alpine so that
33764 you do not have to enter the same password more than once in a session.
33765 A disadvantage to this approach is that the password must be stored in
33766 the memory image of the running Alpine in order that it can be re-used.
33767 In the event that Alpine crashes and produces a core dump, and that core
33768 dump is readable by others, the loginname and password could be read
33769 from the core dump.
33771 If this feature is set, then the passwords will not be cached and you
33772 will have to retype the password whenever Alpine needs it.
33773 Even with this feature set there is still some chance that the core
33774 file will contain a password, so care should be taken to make the
33775 core files unreadable.
33777 NOTE: If PASSFILE caching is enabled, this does not disable it.
33778 That is a separate and independent feature.
33779 <UL>   
33780 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33781 </UL><P>
33782 &lt;End of help on this topic&gt;
33783 </BODY>
33784 </HTML>
33785 ====== h_config_disable_password_file_saving =====
33786 <HTML>
33787 <HEAD>
33788 <TITLE>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></TITLE>
33789 </HEAD>
33790 <BODY>
33791 <H1>FEATURE: <!--#echo var="FEAT_disable-password-file-saving"--></H1>
33793 This feature changes the behavior of Alpine when a login name and password combination
33794 for a specific server is not found in the password file. The default behavior is that
33795 Alpine will ask the user if they wish to save this information in the password file for future
33796 use. It is assumed that if a user created a password file it is because they intend
33797 to use it, but in some instances a user might want to save some passwords and not others.
33798 In this case, enabling this feature will make Alpine not add any more passwords to the
33799 password file and will only use the passwords that it already saved. If you wish to allow
33800 Alpine to save more passwords in the password file, disable this feature.
33802 <UL>   
33803 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33804 </UL><P>
33805 &lt;End of help on this topic&gt;
33806 </BODY>
33807 </HTML>
33808 ====== h_config_disable_kb_lock =====
33809 <HTML>
33810 <HEAD>
33811 <TITLE>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></TITLE>
33812 </HEAD>
33813 <BODY>
33814 <H1>FEATURE: <!--#echo var="FEAT_disable-keyboard-lock-cmd"--></H1>
33816 If set, then the Keyboard Lock command is removed from the MAIN MENU.
33818 <UL>   
33819 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33820 </UL><P>
33821 &lt;End of help on this topic&gt;
33822 </BODY>
33823 </HTML>
33824 ====== h_config_disable_config_cmd =====
33825 <HTML>
33826 <HEAD>
33827 <TITLE>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></TITLE>
33828 </HEAD>
33829 <BODY>
33830 <H1>FEATURE: <!--#echo var="FEAT_disable-config-cmd"--></H1>
33832 If set, then the Setup/Config screen is disabled.
33834 <UL>   
33835 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33836 </UL><P>
33837 &lt;End of help on this topic&gt;
33838 </BODY>
33839 </HTML>
33840 ====== h_config_allow_chg_from =====
33841 <HTML>
33842 <HEAD>
33843 <TITLE>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></TITLE>
33844 </HEAD>
33845 <BODY>
33846 <H1>FEATURE: <!--#echo var="FEAT_allow-changing-from"--></H1>
33848 This feature affects Alpine's handling of the &quot;From:&quot; header field
33849 in the "<A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>" configuration
33850 option.
33852 If this feature is set then the From line can be changed just like
33853 all the other header fields that can be changed.
33854 This feature defaults to <EM>ON</EM>.
33856 Even with this feature turned ON (the default) you will not be able 
33857 to change the From header unless you add it to your list of
33858 <A HREF="h_config_custom_hdrs"><!--#echo var="VAR_customized-hdrs"--></A>.
33859 You may also want to change the
33860 <A HREF="h_config_comp_hdrs"><!--#echo var="VAR_default-composer-hdrs"--></A>
33861 if you want the From header to always show up in the composer without
33862 having to type the Rich Headers command first.
33864 Note that many sites restrict the use of this feature in order to
33865 reduce the chance of falsified addresses and misdirected mail.
33866 If you want to change the value of what gets included in the From header
33867 in messages you send
33868 look <A HREF="h_config_change_your_from">here</A> for a description.
33870 <UL>   
33871 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33872 </UL><P>
33873 &lt;End of help on this topic&gt;
33874 </BODY>
33875 </HTML>
33876 ====== h_config_disable_collate =====
33877 <HTML>
33878 <HEAD>
33879 <TITLE>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></TITLE>
33880 </HEAD>
33881 <BODY>
33882 <H1>FEATURE: <!--#echo var="FEAT_disable-setlocale-collate"--></H1>
33884 This is a hard to understand feature that should only be used in rare cases.
33885 Normally, the C function call
33887 <CENTER><SAMP>setlocale(LC_COLLATE, &quot;&quot;)</SAMP></CENTER>
33889 is used by Alpine.
33890 If you want to try turning it off,
33891 setting this feature will turn it off.
33892 This part of the locale has to do with the sort order
33893 of characters in your locale.
33895 <UL>   
33896 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33897 </UL><P>
33898 &lt;End of help on this topic&gt;
33899 </BODY>
33900 </HTML>
33901 ====== h_config_quell_attach_extra_prompt =====
33902 <HTML>
33903 <HEAD>
33904 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></TITLE>
33905 </HEAD>
33906 <BODY>
33907 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extra-prompt"--></H1>
33909 By default, when you attempt to view an attachment externally
33910 from the &quot;Attachment View&quot; screen, you are asked if you
33911 really want to view the selected attachment.
33914 If this feature is set, you will <B>not</B> be prompted to confirm
33915 your selection.  Prior to Alpine and to Pine 4.50, the default behavior was to not
33916 prompt. This feature was added for those wanting to preserve that
33917 behavior (along with 
33918 <A HREF="h_config_quell_attach_ext_warn"><!--#echo var="FEAT_quell-attachment-extension-warn"--></A>).
33921 <UL>   
33922 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33923 </UL><P>
33924 &lt;End of help on this topic&gt;
33925 </BODY>
33926 </HTML>
33927 ====== h_config_quell_attach_ext_warn =====
33928 <HTML>
33929 <HEAD>
33930 <TITLE>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></TITLE>
33931 </HEAD>
33932 <BODY>
33933 <H1>FEATURE: <!--#echo var="FEAT_quell-attachment-extension-warn"--></H1>
33936 This feature suppresses the extra warning you can get when trying
33937 to view an attachment for which there is no mime-type match.  Turning
33938 on this feature will just run the program according to extension
33939 instead of first warning the user that it will run according to the
33940 file's extension.
33942 This feature can be used along side 
33943 <A HREF="h_config_quell_attach_extra_prompt"><!--#echo var="FEAT_quell-attachment-extra-prompt"--></A>
33944 to preserve the behavior exhibited in Pine versions prior to Pine 4.50.
33946 <UL>   
33947 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33948 </UL><P>
33949 &lt;End of help on this topic&gt;
33950 </BODY>
33951 </HTML>
33952 ====== h_config_mailcap_params =====
33953 <HTML>
33954 <HEAD>
33955 <TITLE>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></TITLE>
33956 </HEAD>
33957 <BODY>
33958 <H1>FEATURE: <!--#echo var="FEAT_enable-mailcap-param-substitution"--></H1>
33960 If set, this will allow mailcap named parameter substitution to occur
33961 in mailcap entries.
33962 By default, this is turned off to prevent security problems that may occur
33963 with some incorrect mailcap configurations.
33964 For more information, see RFC1524 and look for "named parameters" in the
33965 text of the RFC.
33967 <UL>   
33968 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33969 </UL><P>
33970 &lt;End of help on this topic&gt;
33971 </BODY>
33972 </HTML>
33973 ====== h_config_disable_shared =====
33974 <HTML>
33975 <HEAD>
33976 <TITLE>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></TITLE>
33977 </HEAD>
33978 <BODY>
33979 <H1>FEATURE: <!--#echo var="FEAT_disable-shared-namespaces"--></H1>
33981 If this feature is set, the automatic search for namespaces &quot;ftp&quot;,
33982 &quot;imapshared&quot;, and &quot;imappublic&quot; by the underlying library
33983 will be disabled.
33984 The reason this feature exists is because there are some implementations
33985 of system password lookup routines that are very slow when presented with
33986 a long loginname that does not exist.
33987 This feature could be set to prevent the delay at startup time when the
33988 names above are searched for in the password file.
33990 <UL>   
33991 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
33992 </UL><P>
33993 &lt;End of help on this topic&gt;
33994 </BODY>
33995 </HTML>
33996 ====== h_config_hide_nntp_path =====
33997 <HTML>
33998 <HEAD>
33999 <TITLE>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></TITLE>
34000 </HEAD>
34001 <BODY>
34002 <H1>FEATURE: <!--#echo var="FEAT_hide-nntp-path"--></H1>
34004 Normally the Path header that Alpine generates when posting to a newsgroup
34005 contains the name of the computer from which the message is being sent and
34006 the user name.
34007 Some believe that this information is used by spammers.
34008 If this feature is set, that information will be replaced with the text
34010 <CENTER><SAMP>not-for-mail</SAMP></CENTER>
34012 instead.
34014 It should be noted that many servers being connected to will still reveal
34015 the information that this feature attempts to protect.
34017 <UL>   
34018 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34019 </UL><P>
34020 &lt;End of help on this topic&gt;
34021 </BODY>
34022 </HTML>
34023 ====== h_config_no_bezerk_zone =====
34024 <HTML>
34025 <HEAD>
34026 <TITLE>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></TITLE>
34027 </HEAD>
34028 <BODY>
34029 <H1>FEATURE: <!--#echo var="FEAT_quell-berkeley-format-timezone"--></H1>
34031 POSIX mandates a timezone in UNIX mailbox format folder delimiters
34032 (the line that begins with From <SPACE>).
34033 Some versions of Berkeley mail have trouble with this, and don't recognize
34034 the line as a message delimiter.
34035 If this feature is set, the timezone will be left off the delimiter line.
34037 <UL>   
34038 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34039 </UL><P>
34040 &lt;End of help on this topic&gt;
34041 </BODY>
34042 </HTML>
34043 ====== h_config_quell_domain_warn =====
34044 <HTML>
34045 <HEAD>
34046 <TITLE>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></TITLE>
34047 </HEAD>
34048 <BODY>
34049 <H1>FEATURE: <!--#echo var="FEAT_quell-maildomain-warning"--></H1>
34051 When your configuration is set up so that your domain name contains no dots,
34052 it is usually a configuration error.
34053 By default, Alpine will warn you about this when you start it up.
34054 You will see a warning message that looks like
34057 <CENTER><SAMP>Incomplete maildomain &quot;&lt;domain&gt;&quot;.</SAMP></CENTER>
34060 If this feature is set, the warning is turned off.
34062 <UL>   
34063 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34064 </UL><P>
34065 &lt;End of help on this topic&gt;
34066 </BODY>
34067 </HTML>
34068 ====== h_config_quell_imap_env =====
34069 <HTML>
34070 <HEAD>
34071 <TITLE>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></TITLE>
34072 </HEAD>
34073 <BODY>
34074 <H1>FEATURE: <!--#echo var="FEAT_quell-imap-envelope-update"--></H1>
34076 In the MESSAGE INDEX screen, if the open folder is being accessed
34077 using IMAP, Alpine normally tries to paint the index lines on the screen
34078 as soon as the information arrives from the IMAP server.
34079 This means that the index information makes it onto the screen more quickly
34080 than it otherwise would.
34081 This sometimes results in behavior that bothers some users.
34082 For example, when paging to a new page of the index, it may be possible for
34083 the lines to be painted on the screen in a random order, rather than from
34084 top to bottom.
34087 Setting this feature causes Alpine to wait for all of the information
34088 to be gathered before it paints the index screen.
34089 Once it collects all of the information, the screen will be painted quickly
34090 from top to bottom.
34092 <UL>   
34093 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34094 </UL><P>
34095 &lt;End of help on this topic&gt;
34096 </BODY>
34097 </HTML>
34098 ====== h_config_quell_news_env =====
34099 <HTML>
34100 <HEAD>
34101 <TITLE>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></TITLE>
34102 </HEAD>
34103 <BODY>
34104 <H1>FEATURE: <!--#echo var="FEAT_quell-news-envelope-update"--></H1>
34106 In the MESSAGE INDEX screen, if the open folder is being accessed
34107 using NNTP (News), Alpine normally tries to paint the index lines on the screen
34108 as soon as the information arrives from the NNTP server.
34109 This means that the index information makes it onto the screen more quickly
34110 than it otherwise would.
34111 This sometimes results in behavior that bothers some users.
34112 For example, when paging to a new page of the index, it may be possible for
34113 the lines to be painted on the screen in a random order, rather than from
34114 top to bottom.
34117 Setting this feature causes Alpine to wait for all of the information
34118 to be gathered before it paints the index screen.
34119 Once it collects all of the information, the screen will be painted quickly
34120 from top to bottom.
34122 <UL>   
34123 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34124 </UL><P>
34125 &lt;End of help on this topic&gt;
34126 </BODY>
34127 </HTML>
34128 ====== h_config_quell_content_id =====
34129 <HTML>
34130 <HEAD>
34131 <TITLE>FEATURE: <!--#echo var="FEAT_quell-content-id"--></TITLE>
34132 </HEAD>
34133 <BODY>
34134 <H1>FEATURE: <!--#echo var="FEAT_quell-content-id"--></H1>
34136 This feature changes the behavior of Alpine when sending messages.
34137 It is intended to work around a bug in Microsoft's Outlook XP mail user
34138 agent.
34139 As of this writing, Microsoft has acknowledged the bug but
34140 has not added it to the Knowledge Base.
34141 We have been told that there will be a post-SP1 hotfix for Outlook XP.
34142 This particular bug has bug fix number OfficeQFE:4781.
34143 The nature of the bug is that messages with attachments that
34144 contain a Content-ID header (which standard Alpine attachments do)
34145 do not show the attachment indicator (a paperclip) when viewed with
34146 Outlook XP.
34147 So the user has no indication that the message contains an attachment.
34150 If this feature is set then Alpine will remove most Content-ID headers
34151 before sending a message.
34152 If an attachment is of type MESSAGE, then the existing Content-ID headers
34153 inside the message will be left intact.
34154 This would only happen with Alpine if a message was forwarded as an attachment
34155 or if a message with a message attached was forwarded.
34156 Similarly if an attachment of type MULTIPART/ALTERNATIVE is forwarded,
34157 the Content-ID headers of the alternative parts will not be removed.
34160 Because the Content-ID header is a standard part of MIME it is possible
34161 that setting this feature will break something.
34162 For example, if an attachment has a Content-ID header that is necessary
34163 for the correct functioning of that attachment, it is possible that Alpine
34164 may remove that header when the attachment is forwarded.
34165 However, it seems fairly safe at this time.
34168 <UL>   
34169 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34170 </UL><P>
34171 &lt;End of help on this topic&gt;
34172 </BODY>
34173 </HTML>
34174 ====== h_config_winpos_in_config =====
34175 <HTML>
34176 <HEAD>
34177 <TITLE>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></TITLE>
34178 </HEAD>
34179 <BODY>
34180 <H1>FEATURE: <!--#echo var="FEAT_store-window-position-in-config"--></H1>
34182 PC-Alpine only.
34185 Normally, PC-Alpine will store its window size and position in the
34186 Windows Registry.
34187 This is convenient if you want to use the same remote
34188 configuration from more than one PC.
34189 If you use multiple configuration files to start PC-Alpine, you may want
34190 to store the window size and position in the configuration file instead
34191 of in the Registry.
34192 Setting this feature causes the value to be stored in 
34193 <A HREF="h_config_window_position">Window-Position</A>.
34196 <UL>   
34197 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34198 </UL><P>
34199 &lt;End of help on this topic&gt;
34200 </BODY>
34201 </HTML>
34202 ====== h_config_quell_ssl_largeblocks =====
34203 <HTML>
34204 <HEAD>
34205 <TITLE>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></TITLE>
34206 </HEAD>
34207 <BODY>
34208 <H1>FEATURE: <!--#echo var="FEAT_quell-ssl-largeblocks"--></H1>
34210 PC-Alpine only.
34212 This feature changes the behavior of fetching messages
34213 and attachments so that the message data is fetched in chunks no larger
34214 than 12K bytes.
34215 This works around a bug in Microsoft's SSL/TLS support.
34216 Some versions of Microsoft SSL are not able to read full-sized (16K)
34217 SSL/TLS packets.
34218 Some servers will send such packets and this will
34219 cause PC-Alpine to crash with the error
34222 <CENTER><SAMP>incomplete SecBuffer exceeds maximum buffer size</SAMP></CENTER>
34225 Microsoft is aware of the problem and has developed a hotfix for it, it is
34226 discussed in article 300562 in the Microsoft Knowledge Base.
34228 <UL>   
34229 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34230 </UL><P>
34231 &lt;End of help on this topic&gt;
34232 </BODY>
34233 </HTML>
34234 ====== h_config_quell_partial =====
34235 <HTML>
34236 <HEAD>
34237 <TITLE>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></TITLE>
34238 </HEAD>
34239 <BODY>
34240 <H1>FEATURE: <!--#echo var="FEAT_quell-partial-fetching"--></H1>
34242 Partial fetching is a feature of the IMAP protocol.
34243 By default, Alpine
34244 will use partial fetching when copying the contents of a message or attachment
34245 from the IMAP server to Alpine.
34246 This means that the fetch will be done in many
34247 small chunks instead of one big chunk. The main benefit of this approach is
34248 that the fetch becomes interruptible. That is, the user can type <EM>^C</EM>
34249 to stop the fetch early. In some cases partial fetching may cause a performance
34250 problem so that the fetching of data takes significantly longer when partial
34251 fetching is used. Turning on this feature will turn off partial fetching.
34253 <UL>   
34254 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34255 </UL><P>
34256 &lt;End of help on this topic&gt;
34257 </BODY>
34258 </HTML>
34259 ====== h_config_quell_personal_name_prompt =====
34260 <HTML>
34261 <HEAD>
34262 <TITLE>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></TITLE>
34263 </HEAD>
34264 <BODY>
34265 <H1>FEATURE: <!--#echo var="FEAT_quell-personal-name-prompt"--></H1>
34267 PC-Alpine only.  This feature quells the prompting for a 
34268 <A HREF="h_config_pers_name">personal name</A>.  This
34269 prompt normally happens before composing a message, and only happens when
34270 there is no personal name already set.
34272 <UL>   
34273 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34274 </UL><P>
34275 &lt;End of help on this topic&gt;
34276 </BODY>
34277 </HTML>
34278 ====== h_config_quell_user_id_prompt =====
34279 <HTML>
34280 <HEAD>
34281 <TITLE>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></TITLE>
34282 </HEAD>
34283 <BODY>
34284 <H1>FEATURE: <!--#echo var="FEAT_quell-user-id-prompt"--></H1>
34286 PC-Alpine only.  This feature quells the prompting for a 
34287 <A HREF="h_config_user_id"><!--#echo var="VAR_user-id"--></A>
34288 if the information can be obtained from the login name used
34289 to open the INBOX.  Normally, this prompt happens before composing
34290 a message, and only happens when there is no user-id already set
34291 in the configuration.
34293 With this feature set, composing a message is only possible after
34294 establishing a connection to the INBOX.
34296 <UL>   
34297 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34298 </UL><P>
34299 &lt;End of help on this topic&gt;
34300 </BODY>
34301 </HTML>
34302 ====== h_config_save_aggregates =====
34303 <HTML>
34304 <HEAD>
34305 <TITLE>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></TITLE>
34306 </HEAD>
34307 <BODY>
34308 <H1>FEATURE: <!--#echo var="FEAT_save-aggregates-copy-sequence"--></H1>
34310 This feature will optimize an aggregate copy operation, if
34311 possible, by issuing a single IMAP <EM>COPY</EM> command with a
34312 list of the messages to be copied.
34313 This feature is set by default.
34314 This may reduce network traffic and elapsed time for the Save.
34315 <EM>However, many IMAP servers (including the UW IMAP server) do
34316 not preserve the order of messages when this optimization is applied.</EM>
34317 If this feature is not set, 
34318 Alpine will copy each message individually and the order of the messages
34319 will be preserved.
34321 <UL>   
34322 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34323 </UL><P>
34324 &lt;End of help on this topic&gt;
34325 </BODY>
34326 </HTML>
34327 ====== h_config_use_system_translation =====
34328 <HTML>
34329 <HEAD>
34330 <TITLE>FEATURE: Use System Translation</TITLE>
34331 </HEAD>
34332 <BODY>
34333 <H1>FEATURE: Use System Translation</H1>
34335 UNIX Alpine only.
34337 Alpine normally uses its own internal software to convert between the multi-byte
34338 representation of characters and the Unicode representation of those
34339 same characters.
34340 It converts from the multi-byte characters your keyboard produces to Unicode,
34341 and from Unicode to the multi-byte characters your display expects.
34342 Alpine also uses its own internal software to decide how much space on
34343 the screen a particular Unicode character will occupy.
34346 Setting this feature tells Alpine to use the system-supplied routines to
34347 perform these tasks instead.
34348 In particular there are three tasks and three system routines that will
34349 be used for these tasks.
34352 To convert from multi-byte to Unicode the routine
34355 <CENTER><SAMP>mbstowcs</SAMP></CENTER>
34358 is used.
34359 To convert from Unicode to multi-byte the routine
34362 <CENTER><SAMP>wcrtomb</SAMP></CENTER>
34365 is used.
34366 And to find the screen width a particular Unicode character will
34367 occupy the routine used is
34370 <CENTER><SAMP>wcwidth</SAMP></CENTER>
34373 This feature has been only lightly tested.
34374 The internal routines should normally be used unless you run into
34375 a problem that you think may be solved by using the system routines.
34376 Note that your environment needs to be set up for these
34377 routines to work correctly.
34378 In particular, the LANG or LC_CTYPE variable in your environment will
34379 need to be set.
34382 <UL>   
34383 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34384 </UL><P>
34385 &lt;End of help on this topic&gt;
34386 </BODY>
34387 </HTML>
34388 ====== h_config_suspend_spawns =====
34389 <HTML>
34390 <HEAD>
34391 <TITLE>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></TITLE>
34392 </HEAD>
34393 <BODY>
34394 <H1>FEATURE: <!--#echo var="FEAT_use-subshell-for-suspend"--></H1>
34396 This feature affects Alpine's behavior when process suspension is enabled
34397 and then activated via the Ctrl-Z key.  Alpine suspension allows one to
34398 temporarily interact with the operating system command &quot;shell&quot; 
34399 without
34400 quitting Alpine, and then subsequently resume the still-active Alpine session.
34403 When the <A HREF="h_config_can_suspend">&quot;<!--#echo var="FEAT_enable-suspend"-->&quot;</A> feature
34404 is set and subsequently the Ctrl-Z key
34405 is pressed, Alpine will normally suspend itself and return temporary control
34406 to Alpine's parent shell process.  However, if this feature is set, Alpine
34407 will instead create an inferior subshell process.  This is useful when the
34408 parent process is not intended to be used interactively.  Examples include
34409 invoking Alpine via the -e argument of the Unix &quot;xterm&quot; program, 
34410 or via a menu system.<P>
34412 Note that one typically resumes a suspended Alpine by entering the Unix
34413 &quot;fg&quot; command, but if this feature is set, it will be necessary to
34414 enter the &quot;exit&quot; command instead.
34416 <UL>   
34417 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34418 </UL><P>
34419 &lt;End of help on this topic&gt;
34420 </BODY>
34421 </HTML>
34422 ====== h_config_8bit_smtp =====
34423 <HTML>
34424 <HEAD>
34425 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></TITLE>
34426 </HEAD>
34427 <BODY>
34428 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-esmtp-negotiation"--></H1>
34430 This feature affects Alpine's behavior when sending mail.
34431 By default, this feature is set.
34432 Internet standards
34433 require that all electronic mail messages traversing the global Internet
34434 consist of 7bit ASCII characters unless a pair of cooperating mail 
34435 transfer agents explicitly agree to allow 8bit messages.  In general, 
34436 then, exchanging messages in non-ASCII characters requires MIME encoding.
34438 However, there are now Internet standards that allow for unencoded 8bit
34439 exchange of messages between cooperating systems.  When this feature is set
34440 Alpine will try to negotiate unencoded 8bit transmission during the
34441 sending process.  Should the negotiation fail, Alpine will fall back to its
34442 ordinary encoding rules. 
34444 Note, this feature relies on your system's mail transport agent or
34445 configured <A HREF="h_config_smtp_server">&quot;<!--#echo var="VAR_smtp-server"-->&quot;</A>
34446 having the negotiation mechanism introduced in
34447 &quot;Extended SMTP&quot; (ESMTP) and the specific extension called
34448 &quot;8BITMIME&quot;. 
34450 ESMTP allows for graceful migration to upgraded mail transfer agents, but
34451 it is possible that this feature might cause problems for some servers. 
34452 <P><UL>
34453 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34454 </UL>
34455 <P>&lt;End of help on this topic&gt;
34456 </BODY>
34457 </HTML>
34458 ====== h_config_8bit_nntp =====
34459 <HTML>
34460 <HEAD>
34461 <TITLE>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></TITLE>
34462 </HEAD>
34463 <BODY>
34464 <H1>FEATURE: <!--#echo var="FEAT_enable-8bit-nntp-posting"--></H1>
34466 This feature affects Alpine's behavior when posting news.  
34470 The Internet standard for exchanging USENET news messages (RFC-1036)
34471 specifies that USENET messages should conform to Internet mail standards
34472 and contain only 7bit characters, but much of the news transport software
34473 in use today is capable of successfully sending messages containing 8bit
34474 characters.  Hence, many people believe that it is appropriate to send 8bit
34475 news messages without any MIME encoding.
34479 Moreover, there is no Internet standard for explicitly negotiating 8bit
34480 transfer, as there is for Internet email.  Therefore, Alpine provides the
34481 option of posting unencoded 8bit news messages, though not as the default.
34482 Setting this feature will turn OFF Alpine's MIME encoding of newsgroup
34483 postings that contain 8bit characters. 
34487 Note, articles may cross a path or pass through news transport software
34488 that is unsafe or even hostile to 8bit characters.  At best this will only
34489 cause the posting to become garbled.  The safest way to transmit 8bit
34490 characters is to leave Alpine's MIME encoding turned on, but recipients
34491 who lack MIME-aware tools are often annoyed when they receive MIME-encoded 
34492 messages.
34494 &lt;End of help on this topic&gt;
34495 </BODY>
34496 </HTML>
34497 ====== h_config_mark_for_cc =====
34498 <HTML>
34499 <HEAD>
34500 <TITLE>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></TITLE>
34501 </HEAD>
34502 <BODY>
34503 <H1>FEATURE: <!--#echo var="FEAT_mark-for-cc"--></H1>
34505 This feature affects Alpine's MESSAGE INDEX display.
34506 By default, a '+' is displayed in the first column if the
34507 message is addressed directly to you.
34508 When this feature is set and the message is not addressed to you, then a
34509 '-' character is displayed if the message is instead Cc'd directly
34510 to you.
34513 <UL>   
34514 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34515 </UL><P>
34516 &lt;End of help on this topic&gt;
34517 </BODY>
34518 </HTML>
34519 ====== h_config_tab_uses_unseen =====
34520 <HTML>
34521 <HEAD>
34522 <TITLE>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></TITLE>
34523 </HEAD>
34524 <BODY>
34525 <H1>FEATURE: <!--#echo var="FEAT_tab-uses-unseen-for-next-folder"--></H1>
34527 This feature affects Alpine's behavior when using the TAB
34528 <A HREF="h_common_nextnew">NextNew Command</A>
34529 to move from one folder to the next.
34530 Alpine's usual behavior is to search for folders
34531 with <EM>Recent</EM> messages in them.
34532 Recent messages are messages that have arrived since the last time the
34533 folder was opened.
34536 Setting this feature causes Alpine to search for <EM>Unseen</EM>
34537 messages instead of Recent messages.
34538 Unseen messages remain Unseen until you view them (or flag then as Seen with
34539 the <A HREF="h_common_flag">Flag Command</A>).
34540 Setting this feature allows you to locate messages you have not read
34541 instead of only recently received messages.
34542 When this feature is set, the feature
34543 <A HREF="h_config_fast_recent">&quot;<!--#echo var="FEAT_enable-fast-recent-test"-->&quot;</A>
34544 will have no effect, so the checking may be slower.
34547 Another reason why you might want to use this feature is that Alpine sometimes
34548 opens folders implicitly behind the scenes, and this clears the
34549 Recent status of all messages in the folder.
34550 One example where this happens is when Saving or filtering a
34551 message to another folder.
34552 If that message has some <A HREF="h_config_keywords">keywords</A>
34553 set, then because of some shortcomings
34554 in the IMAP specification, the best way to ensure that those keywords are
34555 still set in the saved copy of the message is to open the folder and
34556 set the keywords explicitly.
34557 Because this clears the Recent status of all messages in that folder the
34558 folder will not be found by the NextNew command unless this feature is set.
34561 &lt;End of help on this topic&gt;
34562 </BODY>
34563 </HTML>
34564 ====== h_config_tab_new_only =====
34565 <HTML>
34566 <HEAD>
34567 <TITLE>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></TITLE>
34568 </HEAD>
34569 <BODY>
34570 <H1>FEATURE: <!--#echo var="FEAT_tab-visits-next-new-message-only"--></H1>
34572 This feature affects Alpine's behavior when using the TAB key to move from
34573 one message to the next.  Alpine's usual behavior is to select the next
34574 unread message or message flagged as "Important".
34578 Setting this feature causes Alpine to skip the messages flagged as important,
34579 and select unread messages exclusively.  Tab behavior when there are no
34580 new messages left to select remains unchanged.
34582 &lt;End of help on this topic&gt;
34583 </BODY>
34584 </HTML>
34585 ====== h_config_warn_if_subj_blank =====
34586 <HTML>
34587 <HEAD>
34588 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></TITLE>
34589 </HEAD>
34590 <BODY>
34591 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-subject"--></H1>
34593 This feature affects Alpine's behavior when you send a message being
34594 composed.
34595 If this option is set, Alpine will check to see if the message about to be sent
34596 has a subject or not.
34597 If not, you will be asked if you want to send the message anyway.
34600 <UL>   
34601 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34602 </UL><P>
34603 &lt;End of help on this topic&gt;
34604 </BODY>
34605 </HTML>
34606 ====== h_config_warn_if_fcc_blank =====
34607 <HTML>
34608 <HEAD>
34609 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></TITLE>
34610 </HEAD>
34611 <BODY>
34612 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-fcc"--></H1>
34614 This feature affects Alpine's behavior when you send a message being
34615 composed.
34616 If this option is set, Alpine will check to see if the message about to be sent
34617 has an Fcc or not.
34618 If not, you will be asked if you want to send the message anyway.
34621 <UL>   
34622 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34623 </UL><P>
34624 &lt;End of help on this topic&gt;
34625 </BODY>
34626 </HTML>
34627 ====== h_config_warn_if_no_to_or_cc =====
34628 <HTML>
34629 <HEAD>
34630 <TITLE>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></TITLE>
34631 </HEAD>
34632 <BODY>
34633 <H1>FEATURE: <!--#echo var="FEAT_warn-if-blank-to-and-cc-and-newsgroups"--></H1>
34635 This feature affects Alpine's behavior when you send a message being
34636 composed.
34637 If this option is set, Alpine will check to see if the message about to be sent
34638 has either a To address, a Cc address, or a Newsgroup.
34639 If none of these is set,
34640 you will be asked if you want to send the message anyway.
34643 This feature is closely related to
34644 <A HREF="h_config_auto_fcc_only"><!--#echo var="FEAT_fcc-only-without-confirm"--></A>.
34645 Alpine will normally ask if you want to copy a message only to the Fcc.
34646 This feature also applies to cases where there is a Bcc but still no To, Cc,
34647 or Newsgroup.
34648 If the <!--#echo var="FEAT_fcc-only-without-confirm"--> feature is set and you are sending a
34649 message with only an Fcc, then you won't be asked about sending with
34650 a blank To and Cc and Newsgroups header even if this feature is set.
34651 Similarly, if you have already been asked if you want to send to the Fcc
34652 only and you have answered Yes, then you won't be asked again about sending with
34653 blank To, Cc, and Newsgroups headers even if this feature is set.
34656 <UL>   
34657 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34658 </UL><P>
34659 &lt;End of help on this topic&gt;
34660 </BODY>
34661 </HTML>
34662 ====== h_config_quell_dead_letter =====
34663 <HTML>
34664 <HEAD>
34665 <TITLE>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></TITLE>
34666 </HEAD>
34667 <BODY>
34668 <H1>FEATURE: <!--#echo var="FEAT_quell-dead-letter-on-cancel"--></H1>
34670 This feature affects Alpine's behavior when you cancel a message being
34671 composed.  Alpine's usual behavior is to write the canceled message to
34672 a file named 
34673 <!--chtml if pinemode="os_windows"-->
34674 &quot;DEADLETR&quot;,
34675 <!--chtml else-->
34676 &quot;dead.letter&quot; in your home directory,
34677 <!--chtml endif-->
34678 overwriting any previous message. Under
34679 some conditions (some routine), this can introduce a noticeable delay.
34680 Setting this feature will cause Alpine NOT to write canceled compositions
34681 into the file.
34683 NOTE: Enabling this feature means NO record of canceled messages is
34684 maintained.
34686 This feature affects the newer option
34687 <A HREF="h_config_deadlets"><!--#echo var="VAR_dead-letter-files"--></A>, which specifies the
34688 number of dead letter files to keep around.
34689 If this feature is set, then the <!--#echo var="VAR_dead-letter-files"--> option has no effect.
34691 <UL>   
34692 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34693 </UL><P>
34694 &lt;End of help on this topic&gt;
34695 </BODY>
34696 </HTML>
34697 ====== h_config_quell_beeps =====
34698 <HTML>
34699 <HEAD>
34700 <TITLE>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></TITLE>
34701 </HEAD>
34702 <BODY>
34703 <H1>FEATURE: <!--#echo var="FEAT_quell-status-message-beeping"--></H1>
34705 This feature affects Alpine's behavior when it displays status message
34706 (e.g., Error complaints, New mail warnings, etc).  Setting this feature
34707 will not affect the display of such messages, but will cause those that
34708 emit a beep to become silent.
34711 <UL>   
34712 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34713 </UL><P>
34714 &lt;End of help on this topic&gt;
34715 </BODY>
34716 </HTML>
34717 ====== h_config_suppress_user_agent =====
34718 <HTML>
34719 <HEAD>
34720 <TITLE>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></TITLE>
34721 </HEAD>
34722 <BODY>
34723 <H1>FEATURE: <!--#echo var="FEAT_suppress-user-agent-when-sending"--></H1>
34725 If this feature is set then Alpine will not generate a
34726 <CODE>User-Agent</CODE> header in outgoing messages.
34728 <UL>   
34729 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34730 </UL><P>
34731 &lt;End of help on this topic&gt;
34732 </BODY>
34733 </HTML>
34734 ====== h_config_quell_lock_failure_warnings =====
34735 <HTML>
34736 <HEAD>
34737 <TITLE>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></TITLE>
34738 </HEAD>
34739 <BODY>
34740 <H1>FEATURE: <!--#echo var="FEAT_quell-lock-failure-warnings"--></H1>
34742 This feature affects Alpine's behavior when it encounters a problem
34743 acquiring a mail folder lock.  Typically, a secondary file associated
34744 with the mail folder being opened is created as part of the locking
34745 process.  On some systems, such file creation has been administratively
34746 precluded by the system configuration.
34748 Alpine issues a warning when such failures occur, which can become bothersome
34749 if the system is configured to disallow such actions.  Setting this
34750 feature causes Alpine to remain silent when this part of lock creation fails.
34752 WARNING: systems that have been configured in a way that precludes locking
34753 introduce some risk of mail folder corruption when more than one program
34754 attempts to modify the mail folder.  This is most likely to occur to one's
34755 INBOX or other incoming message folder. 
34757 See also <A HREF="h_info_on_locking">&quot;What Systems Managers Need to Know about Alpine File Locking&quot;</A>.
34759 <UL>   
34760 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34761 </UL><P>
34762 &lt;End of help on this topic&gt;
34763 </BODY>
34764 </HTML>
34765 ====== h_config_enable_role_take ======
34766 <HTML>
34767 <HEAD>
34768 <TITLE>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></TITLE>
34769 </HEAD>
34770 <BODY>
34771 <H1>FEATURE: <!--#echo var="FEAT_enable-rules-under-take"--></H1>
34773 Normally, the Take command takes addresses from a message and helps you
34774 put them into your Address Book.
34775 If you use Rules for Indexcolors, Roles, Filtering, or Scoring;
34776 you may find it useful
34777 to be able to Take information from a message's headers and put it into
34778 a new Rule.
34779 When this feature is set, you will be given an extra prompt that gives
34780 you the choice to Take into the Address Book or Take into a rule.
34781 <P><UL>
34782 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34783 </UL>
34785 &lt;End of help on this topic&gt;
34786 </BODY>
34787 </HTML>
34788 ====== h_config_enable_take_export ======
34789 <HTML>
34790 <HEAD>
34791 <TITLE>FEATURE: <!--#echo var="FEAT_enable-take-export"--></TITLE>
34792 </HEAD>
34793 <BODY>
34794 <H1>FEATURE: <!--#echo var="FEAT_enable-take-export"--></H1>
34796 Normally, the Take command takes addresses from a message and helps you
34797 put them into your Address Book.
34798 When this feature is set, you will be given an extra prompt that gives you
34799 the choice to Take addresses into a file instead of your Address
34800 Book.
34801 Only the user@domain_name part of the address is put in the file.
34802 <P><UL>
34803 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34804 </UL>
34806 &lt;End of help on this topic&gt;
34807 </BODY>
34808 </HTML>
34809 ====== h_config_quell_folder_internal_msg ======
34810 <HTML>
34811 <HEAD>
34812 <TITLE>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></TITLE>
34813 </HEAD>
34814 <BODY>
34815 <H1>FEATURE: <!--#echo var="FEAT_quell-folder-internal-msg"--></H1>
34817 This feature determines whether or not Alpine will create 
34818 &quot;pseudo messages&quot; in folders that are in standard Unix or 
34819 MMDF format. <P> 
34821 Alpine will normally create these pseudo messages when they are not already
34822 present in a standard Unix or MMDF folder.  Their purpose is to record
34823 certain mailbox state data needed for correct IMAP and POP server
34824 operation, and also for Alpine to be able to mark messages as Answered when
34825 the Reply has been postponed.<P>
34827 Sites that do not use IMAP/POP for remote mail access, and that need to
34828 support mail tools that are adversely affected by the presence of the
34829 pseudo-messages (e.g. some mail notification tools) may enable this
34830 feature to tell Alpine not to create them.  Note that Alpine's 
34831 &quot;Answered&quot; flag
34832 capability will be adversely affected if this is done.<P>
34834 Note too that, even if this feature is enabled, Alpine will not remove
34835 pseudo-messages when it encounters them (e.g. those created by UW's imapd
34836 or ipopd servers.) This feature has no effect on folders that are not in
34837 standard Unix or MMDF format, as pseudo-messages are not needed in the
34838 other formats to record mailbox state information.
34839 <P><UL>
34840 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34841 </UL>
34843 &lt;End of help on this topic&gt;
34844 </BODY>
34845 </HTML>
34846 ====== h_config_mulnews_as_typed ======
34847 <HTML>
34848 <HEAD>
34849 <TITLE>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></TITLE>
34850 </HEAD>
34851 <BODY>
34852 <H1>FEATURE: <!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></H1>
34854 This feature will be of little use to most users.
34855 It has no effect unless the feature
34856 <A HREF="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></A>
34857 is set.
34859 When the <!--#echo var="FEAT_enable-multiple-newsrcs"--> feature is set
34860 then the setting of this feature may have an effect on the names of the
34861 newsrc files used.
34862 Normally, the name of the news server will be canonicalized before it is
34863 used in the newsrc file name.
34864 For example, if you type the news server name
34867 <CENTER><SAMP>servername</SAMP></CENTER>
34870 it is likely that the canonical name will be something like
34873 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34876 Or it may be the case that
34879 <CENTER><SAMP>servername.example.com</SAMP></CENTER>
34882 is really an alias (a DNS CNAME) for
34885 <CENTER><SAMP>othername.example.com</SAMP></CENTER>
34888 If this feature is not set, then the canonicalized names will be used.
34889 If this feature is set, then the name you typed in (or put in your
34890 configuration) will be used.
34892 <P><UL>
34893 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34894 </UL>
34896 &lt;End of help on this topic&gt;
34897 </BODY>
34898 </HTML>
34899 ====== h_config_quell_empty_dirs ======
34900 <HTML>
34901 <HEAD>
34902 <TITLE>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></TITLE>
34903 </HEAD>
34904 <BODY>
34905 <H1>FEATURE: <!--#echo var="FEAT_quell-empty-directories"--></H1>
34907 This feature causes Alpine to remove from the display any directories
34908 that do not contain at least one file or directory.  This can be useful
34909 to prevent overly cluttered folder lists when a collection is stored on
34910 a server that treats all names as both a folder and a directory.
34913 Note, enabling this feature can cause surprising behavior!  For example,
34914 you can still use Add to create a directory, but unless you immediately
34915 enter that directory and create a folder, that newly created directory
34916 may not be displayed next time you enter the folder list.
34919 The description above is not quite correct.
34920 Only directories which potentially may hold messages are hidden if empty.
34921 That is, a directory which is really just a directory and is not selectable
34922 as a folder will not be hidden.
34923 Such directories can occur on servers that treat most names as both a folder
34924 and a directory.
34925 These directories are typically created implicitly when a folder is created
34926 inside a directory that does not yet exist.
34929 <UL>   
34930 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34931 </UL><P>
34932 &lt;End of help on this topic&gt;
34933 </BODY>
34934 </HTML>
34935 ====== h_config_termcap_wins =====
34936 <HTML>
34937 <HEAD>
34938 <TITLE>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></TITLE>
34939 </HEAD>
34940 <BODY>
34941 <H1>FEATURE: <!--#echo var="FEAT_termdef-takes-precedence"--></H1>
34943 This feature may affect Alpine's low-level input routines.  Termcap (or
34944 terminfo, depending on how your copy of Alpine was compiled and linked)
34945 is the name of the database that describes terminal capabilities.  In
34946 particular, it describes the sequences of characters that various keys
34947 will emit.
34950 An example would be the Up Arrow key on the keyboard.  Up
34951 Arrow is not a distinct character on most Unix systems.  When you press
34952 the Up Arrow key a short sequence of characters are produced.  This
34953 sequence is supposed to be described in the termcap database by the
34954 &quot;ku&quot; capability (or by the &quot;kcuu1&quot; capability if you
34955 are using terminfo instead of termcap).
34958 By default, Alpine defines some terminal
34959 escape sequences that are commonly used.  For example, the sequence
34960 &quot;ESC&nbsp;O&nbsp;A&quot; is recognized as an Up Arrow key.  The sequence
34961 &quot;ESC&nbsp;[&nbsp;A&quot;
34962 is also recognized as an Up Arrow key.  These are chosen because common
34963 terminals like VT100's or ANSI standard terminals produce these
34964 sequences when you press the Up Arrow key.
34967 If your system's termcap
34968 (terminfo) database assigns some other function to the sequence
34969 &quot;ESC&nbsp;O&nbsp;A&quot;
34970 it is usually ignored by Alpine.  Also, if your termcap (terminfo)
34971 database assigns a sequence that doesn't begin with an escape
34972 character (<SAMP>ESC</SAMP>) it is usually ignored by Alpine.
34973 This usually works fine
34974 because most terminals emit the escape sequences that Alpine has defined
34975 by default.  We have also found that it is usually better to have these
34976 defaults take precedence over the definitions contained in the database
34977 because the defaults are more likely to be correct than the database.
34980 There are some terminals where this breaks down.  If you want Alpine to
34981 believe the definitions given in your termcap (terminfo) database in
34982 preference to the defaults the Alpine itself sets up, then you may turn
34983 this feature on.  Then, sequences of characters that are defined in
34984 both termcap (terminfo) and in Alpine's set of defaults will be
34985 interpreted the way that termcap (terminfo) says they should be
34986 interpreted.  Also, if your terminal capabilities database assigns a
34987 sequence that doesn't begin with escape, it will not be ignored.
34990 <UL>   
34991 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
34992 </UL><P>
34993 &lt;End of help on this topic&gt;
34994 </BODY>
34995 </HTML>
34996 ====== h_config_cruise_mode =====
34997 <HTML>
34998 <HEAD>
34999 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></TITLE>
35000 </HEAD>
35001 <BODY>
35002 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode"--></H1>
35004 This feature affects Alpine's behavior when you hit the
35005 &quot;Space&nbsp;Bar&quot; at
35006 the end of a displayed message.  Typically, Alpine complains that the end
35007 of the text has already been reached.  Setting this feature causes such
35008 keystrokes to be interpreted as if the &quot;Tab&quot; key had been hit, thus
35009 taking you to the next &quot;interesting&quot; message,
35010 or scanning ahead to the 
35011 next incoming folder with &quot;interesting&quot; messages.
35014 <UL>   
35015 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35016 </UL><P>
35017 &lt;End of help on this topic&gt;
35018 </BODY>
35019 </HTML>
35020 ====== h_config_cruise_mode_delete =====
35021 <HTML>
35022 <HEAD>
35023 <TITLE>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></TITLE>
35024 </HEAD>
35025 <BODY>
35026 <H1>FEATURE: <!--#echo var="FEAT_enable-cruise-mode-delete"--></H1>
35028 This feature modifies the behavior of Alpine's 
35029 <A HREF="h_config_cruise_mode">&quot;<!--#echo var="FEAT_enable-cruise-mode"-->&quot;</A> feature.  
35030 Setting this feature causes Alpine to implicitly delete read
35031 messages when it moves on to display the next &quot;interesting&quot; message.
35033 NOTE: Beware when enabling this feature AND the 
35034 <A HREF="h_config_auto_expunge">&quot;<!--#echo var="FEAT_expunge-without-confirm"-->&quot;</A> 
35035 feature.
35037 <UL>   
35038 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35039 </UL><P>
35040 &lt;End of help on this topic&gt;
35041 </BODY>
35042 </HTML>
35043 ====== h_config_slash_coll_entire =====
35044 <HTML>
35045 <HEAD>
35046 <TITLE>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></TITLE>
35047 </HEAD>
35048 <BODY>
35049 <H1>FEATURE: <!--#echo var="FEAT_slash-collapses-entire-thread"--></H1>
35051 The slash (/) command is available from the MESSAGE INDEX screen when
35052 the folder is sorted by either Threads or OrderedSubject, and the
35053 <A HREF="h_config_thread_disp_style"><!--#echo var="VAR_threading-display-style"--></A>
35054 is set to something other than &quot;none&quot;.
35055 Normally, the slash command Collapses or Expands the subthread that
35056 starts at the currently highlighted message, if any.
35057 If this option is set, then the slash command Collapses or Expands the
35058 <EM>entire</EM> current thread instead of just the subthread.
35059 The current thread is simply the top-level thread that contains the
35060 current message.
35063 <UL>   
35064 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35065 </UL><P>
35066 &lt;End of help on this topic&gt;
35067 </BODY>
35068 </HTML>
35069 ====== h_config_color_thrd_import =====
35070 <HTML>
35071 <HEAD>
35072 <TITLE>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></TITLE>
35073 </HEAD>
35074 <BODY>
35075 <H1>FEATURE: <!--#echo var="FEAT_thread-index-shows-important-color"--></H1>
35077 This option affects only the THREAD INDEX screen.
35078 Whether or not you ever see a THREAD INDEX screen depends on the setting
35079 of the configuration option
35080 <A HREF="h_config_thread_index_style">&quot;<!--#echo var="VAR_threading-index-style"-->&quot;</A>
35081 and on the sort order of the index.
35084 If a message within a thread is flagged as Important
35085 and this option is set, then
35086 the entire line in the THREAD INDEX will be colored the color of the
35087 Index-important Symbol, which can be set using the
35088 <A HREF="h_color_setup">Setup Kolor</A> screen.
35091 <UL>   
35092 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35093 </UL><P>
35094 &lt;End of help on this topic&gt;
35095 </BODY>
35096 </HTML>
35097 ====== h_config_allow_goto =====
35098 <HTML>
35099 <HEAD>        
35100 <TITLE>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></TITLE>
35101 </HEAD>
35102 <BODY>
35103 <H1>FEATURE: <!--#echo var="FEAT_enable-goto-in-file-browser"--></H1>
35105 This feature modifies the behavior of Alpine's file browser.  Setting this
35106 feature causes Alpine to offer the "G Goto" command in the file browser.
35107 That is the default.
35111 The Goto command allows you to explicitly type in the desired directory.
35113 &lt;End of help on this topic&gt;
35114 </BODY></HTML>
35115 ====== h_config_add_ldap =====
35116 <HTML>
35117 <HEAD>
35118 <TITLE>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></TITLE>
35119 </HEAD>
35120 <BODY>
35121 <H1>FEATURE: <!--#echo var="FEAT_ldap-result-to-addrbook-add"--></H1>
35123 If both the Directory option
35124 <A HREF="h_config_ldap_opts_impl">&quot;Use-Implicitly-From-Composer&quot;</A>  
35125 and this feature are set,
35126 then when an implicit directory lookup is done from the
35127 composer you will automatically be prompted to add the result of the
35128 directory lookup to your address book.
35130 <UL>   
35131 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35132 </UL><P>
35133 &lt;End of help on this topic&gt;
35134 </BODY>
35135 </HTML>
35136 ===== h_patterns_compat_behavior =====
35137 <HTML>
35138 <HEAD>
35139 <TITLE>Rules Behavior Changes in Pine 4.50</TITLE>
35140 </HEAD>
35141 <BODY>
35142 <H1>Rules Behavior Changes in Pine 4.50</H1>
35144 In Alpine, Rules that contain unrecognized elements
35145 are ignored.
35146 In most cases, the unrecognized elements will be something that was
35147 added as a new Rules feature in a later version of Alpine.
35148 In versions of Pine <EM>prior</EM> to 4.50, Pine did <EM>not</EM>
35149 ignore rules that contained unrecognized elements.
35150 For example, a new element of Rules that was added in Pine 4.50 is
35151 Age interval.
35152 Suppose you add an Indexcolor rule, using version Pine 4.50 or later, that colors
35153 all messages older than a week red.
35154 Now, if you run Pine 4.44 using that same configuration file, it will not
35155 recognize the Age interval and so will just ignore it.
35156 That means that all messages will match that rule so all messages will
35157 be colored red when using Pine version 4.44.
35160 This behavior was considered a bug so it is fixed in Alpine and Pine 4.50 and later.
35161 However, since the behavior still exists in versions prior to Pine 4.50 and
35162 since Filtering is a potentially destructive operation, another measure
35163 was taken to attempt to avoid unintentional Filtering of messages.
35164 The first time that you run Alpine or a Pine that is version 4.50 or greater,
35165 the rules in your Filters configuration variable (&quot;Patterns-Filters&quot;)
35166 will be copied to a new Filters configuration variable
35167 with a different name (&quot;Patterns-Filters2&quot;).
35168 From then on, Alpine will continue to use the new
35169 variable.
35170 Of course, Pine version 4.44 or lower will continue to use the old
35171 variable.
35172 That means that if you are using Alpine
35173 and also using a version of Pine that is older than 4.50, they will not
35174 share the configuration information about Filters.
35175 If you make a change in one version you won't see it in the other version.
35178 Since Scoring can be used to trigger Filtering, the same thing has been
35179 done for Score rules.
35180 The old configuration variable name is (&quot;Patterns-Scores&quot;)
35181 and the new name is (&quot;Patterns-Scores2&quot;).
35182 The same is not true of Role, Indexcolor, and Other rules that are
35183 thought to be less harmful when a mistake is made.
35186 &lt;End of help on this topic&gt;
35187 </BODY>
35188 </HTML>
35189 ======= h_config_filt_opts_sentdate =======
35190 <HTML>
35191 <HEAD>
35192 <TITLE>PATTERN FEATURE: Use-Date-Header-For-Age</TITLE>
35193 </HEAD>
35194 <BODY>
35195 <H1>PATTERN FEATURE: Use-Date-Header-For-Age</H1>
35197 By default, the Age interval of a Pattern uses a message's time of
35198 arrival to compute the age of the message.
35199 If this feature is set, the date in the message's Date header will
35200 be used instead.
35202 &lt;End of help on this topic&gt;
35203 </BODY>
35204 </HTML>
35205 ======= h_config_filt_opts_notdel =======
35206 <HTML>
35207 <HEAD>
35208 <TITLE>FILTER FEATURE: Move-Only-if-Not-Deleted</TITLE>
35209 </HEAD>
35210 <BODY>
35211 <H1>FILTER FEATURE: Move-Only-if-Not-Deleted</H1>
35213 If this option is set then a message will be moved into the
35214 specified folder only if it is not marked for deletion.
35215 This is useful if you have multiple Alpine sessions running
35216 simultaneously and you don't want messages to be filtered into a
35217 folder more than once.
35218 It is also useful if you want to filter
35219 only the &quot;undeleted&quot; messages in a newsgroup into a folder.
35220 This method is not foolproof.
35221 There may be cases where a message
35222 gets marked deleted and so it is never filtered into the folder.
35223 For example, if you deleted it in another Alpine session or another mail
35224 program that didn't use the filtering rule.
35226 This option has no effect if the Filter Action is not set to Move.
35228 &lt;End of help on this topic&gt;
35229 </BODY>
35230 </HTML>
35231 ======= h_config_filt_opts_nonterm =======
35232 <HTML>
35233 <HEAD>
35234 <TITLE>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</TITLE>
35235 </HEAD>
35236 <BODY>
35237 <H1>FILTER FEATURE: Dont-Stop-Even-if-Rule-Matches</H1>
35239 If this option is set then this is a non-terminating rule.
35240 Usually, for each message, Alpine searches through the Filter Rules until
35241 a match is found and then it performs the action associated with that rule.
35242 Rules following the match are not considered.
35243 If this option is set then the search for matches will continue at the next
35244 rule.
35246 If a non-terminating rule matches then the actions associated with
35247 that rule, except for any implied deletion of the message, are performed
35248 before the match for the next rule is checked.
35249 For example, if the non-terminating rule sets the Important status, then that
35250 status will be set when the next rule is considered.
35251 However, if the non-terminating rule Moves the message, the message will
35252 actually be copied instead of copied and deleted so that it is still there
35253 for the next rule.
35254 A moved message is deleted after all the relevant rules have been checked.
35255 The name of the &quot;Move&quot; action is confusing in this case because
35256 a single message can be moved to more than one folder.
35257 It turns the Move into a Copy instead, but it is still followed by a deletion
35258 at the end.
35260 This option may be useful if you want to have a single message filtered to
35261 two different folders because it matches two different Patterns.
35262 For example, suppose you normally filter messages to a particular mailing
35263 list into one folder, and messages addressed directly to you into a second
35264 folder.
35265 If a message is sent to both you and the list (and you can tell that by
35266 looking at the headers of the message) this option may give you a convenient
35267 way to capture a copy to each folder.
35268 (It may also cause you to capture two copies to each folder,
35269 depending on whether your mail system delivers one or two copies of the
35270 message to you and on how the list works.)
35272 &lt;End of help on this topic&gt;
35273 </BODY>
35274 </HTML>
35275 ===== h_mainhelp_smime ======
35276 <HTML>
35277 <HEAD>
35278 <TITLE>S/MIME Overview</TITLE>
35279 </HEAD>
35280 <BODY>
35281 <H1>S/MIME Overview</H1>
35283 S/MIME is a standard for the public key encryption and signing of email.
35284 UNIX Alpine contains a basic implementation of S/MIME based on
35285 the <A HREF="http://www.openssl.org/">OpenSSL</A> libraries. The
35286 same support can be provided using the 
35287 <A HREF="http://www.libressl.org/">LibreSSL</A> libraries. The
35288 support for S/MIME in PC-Alpine is fully based on the LibreSSL libraries.
35289 To check if this version of Alpine supports S/MIME look at
35290 <A HREF="X-Alpine-Config:">Supported Options in this Alpine</A> and look
35291 for &quot;S/MIME&quot; under the &quot;Encryption&quot; heading.
35293 Some limitations:
35294 <UL>
35295    <LI> There is no provision for checking for CRLs
35296         (Certificate Revocation Lists) in Alpine.
35297    <LI> This built-in S/MIME implementation is not compatible with and does not help with PGP.
35298    <LI> There is no mechanism available for feeding either an entire incoming
35299         or an entire outgoing message to an external
35300         filter and using that external filter to do S/MIME or PGP processing.
35301    <LI> Because the implementation currently uses OpenSSL, there is only a very
35302         limited integration with the Mac OS Keychain (the storing and access of
35303         public certificates).
35304 </UL>
35306 The S/MIME configuration screen is reached by going to the Main Menu and typing
35307 the &quot;S&nbsp;Setup&quot; command followed by &quot;M&nbsp;S/MIME&quot;.
35310 <H2>S/MIME BASICS</H2>
35312 In order to digitally sign messages you send you must have a public/private key-pair.
35313 This may be obtained from a public Certificate Authority (CA) such as Thawte, Verisign, Comodo,
35314 or GoDaddy; or from a smaller CA such as a university which provides certificates for its
35315 users or a company which provides certificates for its workers.
35316 These certificates are bound to an email address, so the identity being verified is the
35317 email address not a person's name.
35319 Mail is signed by using the sender's private key, which only the owner of the private key
35320 has access to.
35321 The signature is verified using the signer's public key, which anyone can
35322 have access to.
35323 With Alpine, the first time you receive a signed message the public key of the
35324 sender will be stored for future use.
35327 Mail is encrypted using the recipient's public key and decrypted by
35328 the recipient with their private key.
35331 You need a key of your own in order to sign outgoing messages and to have others
35332 encrypt messages sent to you.
35333 You do not need a key of your own to verify signed messages sent by others or to
35334 encrypt messages sent to others.
35336 <H2>ALPINE S/MIME CERTIFICATE STORAGE</H2>
35338 By default UNIX Alpine stores the certificates it uses in a directory in your
35339 home directory.
35340 The directory name is
35342 <CENTER><SAMP>.alpine-smime</SAMP></CENTER>
35344 For PC-Alpine, the equivalent directory is called 
35345 <CENTER><SAMP>alpine-smime</SAMP></CENTER>
35346 and is also located under your home directory.
35348 Within that directory are three subdirectories.
35349 Each of the three subdirectories contains files with PEM-encoded contents,
35350 the default format for OpenSSL.
35351 The &quot;<SAMP>public</SAMP>&quot; directory contains public certificates.
35352 The files within that directory have names that are email addresses with the
35353 suffix &quot;<SAMP>.crt</SAMP>&quot; appended.
35354 An example filename is
35356 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
35358 The &quot;<SAMP>private</SAMP>&quot; directory contains private keys, probably just one for
35359 your private key.
35360 These are also email addresses but with the suffix &quot;<SAMP>.key</SAMP>&quot; instead.
35361 The third directory is &quot;<SAMP>ca</SAMP>&quot; and it contains certificates for any Certificate
35362 Authorities that you want to trust but that aren't contained in the set of system CAs.
35363 Those files may have arbitrary names as long as they end with the
35364 suffix &quot;<SAMP>.crt</SAMP>&quot;.
35366 <H2>HOW TO SIGN AND ENCRYPT</H2>
35368 If you have a certificate you may sign outgoing messages.
35369 After typing the Ctrl-X command to send a message you will see the prompt
35371 <CENTER><SAMP>Send message?</SAMP></CENTER>
35373 Available subcommands include &quot;G&nbsp;Sign&quot; and &quot;E&nbsp;Encrypt&quot;.
35374 Typing the &quot;G&quot; command will change the prompt to
35376 <CENTER><SAMP>Send message (Signed)?</SAMP></CENTER>
35378 Typing the &quot;E&quot; command will change the prompt to
35380 <CENTER><SAMP>Send message (Encrypted)?</SAMP></CENTER>
35382 You may even type both to get
35384 <CENTER><SAMP>Send message (Encrypted, Signed)?</SAMP></CENTER>
35387 <H2>HOW TO READ SIGNED OR ENCRYPTED MESSAGES</H2>
35389 The reading of a signed message should not require any special action on
35390 your part.
35391 There should be an editorial addition at the start of the message which
35392 says either
35394 <CENTER><SAMP>This message was cryptographically signed.</SAMP></CENTER>
35398 <CENTER><SAMP>This message was cryptographically signed but the signature could not be verified.</SAMP></CENTER>
35400 If an encrypted message is sent to you the encrypted text will not
35401 be shown.
35402 You will have to type the &quot;Ctrl-D&nbsp;Decrypt&quot; command (from the screen where
35403 you are viewing the message) and supply your passphrase when asked.
35405 For a signed or encrypted message there is also a &quot;Ctrl-E&nbsp;Security&quot; command
35406 which gives you some information about the certificate used to sign or encrypt the message.
35408 <H2>MISCELLANEOUS</H2>
35410 If you have access to a private certificate in the PKCS12 format, which 
35411 would sometimes be in a file with a &quot;.p12&quot; extension, then you can 
35412 use the following commands to generate private keys, public and certificate
35413 authorities certificates. In the examples below, we assume that the 
35414 certificate in the p12 format is called &quot;certificate.p12&quot;, and 
35415 that your email address is &quot;your@address.com&quot;.
35418 In order to create a private key use the command
35420 <CENTER><SAMP>openssl pkcs12 -in certificate.p12 -out your@address.com.key</SAMP></CENTER>
35422 In order to create a public certificate use the command
35424 <CENTER><SAMP>
35425 openssl pkcs12 -in certificate.p12 -clcerts -nokeys -out your@address.com.crt
35426 </SAMP></CENTER>
35428 In order to create a certificate authority certificate use the command
35430 <CENTER><SAMP>
35431 openssl pkcs12 -in certificate.p12 -cacerts -nokeys -out certificate-ca.crt 
35432 </SAMP></CENTER>
35434 <P> If the previous command produces an empty file, it means that the 
35435 certificate authority was not included in the .p12 file, so you will have 
35436 to get it from some other sources. You will need these certificates, so 
35437 that you can validate correctly signatures.
35440 After you have exported these certificates and keys, you can  use the import 
35441 command in Alpine, from the S/MIME configuration screen,
35442 to import these certificates into Alpine. They will be available for use
35443 as soon as you import them.
35445 &lt;End of help on this topic&gt;
35446 </BODY>
35447 </HTML>
35448 ====== h_config_smime_pubcertdir =====
35449 <HTML>
35450 <HEAD>
35451 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></TITLE>
35452 </HEAD>
35453 <BODY>
35454 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-public-cert-directory"--></H1>
35457 If the option
35458 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35459 is set then this option will have no effect.
35461 Normally, Public Certificates for use with S/MIME will be stored in the directory
35462 which is the value of this option.
35463 Those certificates will be stored in PEM format, one certificate per file.
35464 The name of the file for the certificate corresponding to
35466 <CENTER><SAMP>emailaddress</SAMP></CENTER>
35468 should be
35470 <CENTER><SAMP>emailaddress.crt</SAMP></CENTER>
35472 For example, a file for user@example.com would be in the file
35474 <CENTER><SAMP>user@example.com.crt</SAMP></CENTER>
35476 in this directory.
35478 Use the Setup/SMIME screen to modify this variable.
35480 Typically, the public certificates that you have will come from S/MIME signed
35481 messages that are sent to you.
35482 Alpine will extract the public certificate from the signed message and store
35483 it in the certificates directory.
35484 These PEM format public certificates look something like:
35485 <PRE>
35486 -----BEGIN CERTIFICATE-----
35487 MIIFvTCCBKWgAwIBAgIQD4fYFHVI8T20yN4nus097DANBgkqhkiG9w0BAQUFADCB
35488 rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug
35489 Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho
35491 2b9KGqDyMWW/rjNnmpjzjT2ObGM7lRA8lke4FLOLajhrz4ogO3b4DFfAAM1VSZH8
35492 D6sOwOLJZkLY8FRsfk63K+2EMzA2+qAzMKupgeTLqXIf
35493 -----END CERTIFICATE-----
35494 </PRE>
35496 <UL>   
35497 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35498 </UL><P>
35500 <UL>   
35501 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35502 </UL><P>
35503 &lt;End of help on this topic&gt;
35504 </BODY>
35505 </HTML>
35506 ====== h_config_smime_pubcertcon =====
35507 <HTML>
35508 <HEAD>
35509 <TITLE>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></TITLE>
35510 </HEAD>
35511 <BODY>
35512 <H1>OPTION: <!--#echo var="VAR_smime-public-cert-container"--></H1>
35515 If this option is set it will be used instead of
35516 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35518 This option gives you a way to store certificates remotely on an IMAP server
35519 instead of storing the certificates one per file locally.
35520 In order to do that you just give this option a remote folder name for a folder
35521 which does not yet exist.
35522 The name is similar to the name you might use for a remote configuration file.
35523 A remote folder name might look something like:
35525 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/publiccerts</SAMP></CENTER>
35528 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35529 about the syntax of folder names.
35531 Use the Setup/SMIME screen to modify this variable.
35533 <UL>   
35534 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35535 </UL><P>
35537 <UL>   
35538 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35539 </UL><P>
35540 &lt;End of help on this topic&gt;
35541 </BODY>
35542 </HTML>
35543 ====== h_config_smime_privkeydir =====
35544 <HTML>
35545 <HEAD>
35546 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></TITLE>
35547 </HEAD>
35548 <BODY>
35549 <H1>OPTION: <!--#echo var="VAR_smime-private-key-directory"--></H1>
35552 In order to sign outgoing S/MIME messages you will need a
35553 personal digital ID certificate.
35554 You will usually get such a certificate from a certificate authority such as
35555 Thawte or CAcert.
35556 (In order to encrypt outgoing messages you don't need a personal digital ID, you
35557 need the public certificate of the recipient instead.)
35558 If the option
35559 <A HREF="h_config_smime_privkeycon"><!--#echo var="VAR_smime-private-key-container"--></A>
35560 is set then this option will have no effect.
35562 Normally, Private Keys for use with S/MIME will be stored in the directory
35563 which is the value of this option.
35564 Those certificates will be stored in PEM format, one certificate per file.
35565 The name of the file for the certificate corresponding to your
35567 <CENTER><SAMP>emailaddress</SAMP></CENTER>
35569 should be
35571 <CENTER><SAMP>emailaddress.key</SAMP></CENTER>
35573 For example, if your address is user@example.com the name of the file would be
35575 <CENTER><SAMP>user@example.com.key</SAMP></CENTER>
35577 in this directory.
35579 Use the Setup/SMIME screen to modify this variable.
35581 Typically, the private key that you have will come from a Certificate
35582 Authority.
35583 The private key should be stored in a PEM format file that
35584 looks something like:
35585 <PRE>
35586 -----BEGIN RSA PRIVATE KEY-----
35587 Proc-Type: 4,ENCRYPTED
35588 DEK-Info: DES-EDE3-CBC,2CBD328FD84CF5C6
35590 YBEXYLgLU9NJoc1V+vJ6UvcF08RX54S6jXsmgL0b5HGkudG6fhnmHkH7+UCvM5NI
35591 SXO/F8iuZDfs1VGG0NyitkFZ0Zn2vfaGovBvm15gx24b2xnZDLRB7/bNZkurnK5k
35592 VjAjZ2xXn2hFp2GJwqRdmxYNqsKGu52B99oti5HUWuZ2GFRaWjn5hYOqeApZE2uA
35594 oSRqfI51UdSRt0tmGhHeTvybUVrHm9eKft8TTGf+qSBqzSc55CsmoVbRzw4Nfhix
35595 m+4TJybNGNfAgOctSkEyY/OCb49fRRQTCBZVIhzLGGmpYmkO55HbIA==
35596 -----END RSA PRIVATE KEY-----
35597 </PRE>
35599 <UL>   
35600 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35601 </UL><P>
35603 <UL>   
35604 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35605 </UL><P>
35606 &lt;End of help on this topic&gt;
35607 </BODY>
35608 </HTML>
35609 ====== h_config_smime_privkeycon =====
35610 <HTML>
35611 <HEAD>
35612 <TITLE>OPTION: <!--#echo var="VAR_smime-private-key-container"--></TITLE>
35613 </HEAD>
35614 <BODY>
35615 <H1>OPTION: <!--#echo var="VAR_smime-private-key-container"--></H1>
35618 If this option is set it will be used instead of
35619 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35621 This option gives you a way to store keys remotely on an IMAP server
35622 instead of storing the keys one per file locally.
35623 In order to do that you just give this option a remote folder name for a folder
35624 which does not yet exist.
35625 The name is similar to the name you might use for a remote configuration file.
35626 A remote folder name might look something like:
35628 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/privatekeys</SAMP></CENTER>
35631 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35632 about the syntax of folder names.
35634 Use the Setup/SMIME screen to modify this variable.
35636 <UL>   
35637 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35638 </UL><P>
35640 <UL>   
35641 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35642 </UL><P>
35643 &lt;End of help on this topic&gt;
35644 </BODY>
35645 </HTML>
35646 ====== h_config_smime_cacertdir =====
35647 <HTML>
35648 <HEAD>
35649 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></TITLE>
35650 </HEAD>
35651 <BODY>
35652 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-directory"--></H1>
35655 If the option
35656 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>
35657 is set then this option will have no effect.
35659 CACert is a shorthand name for certification authority certificate.
35660 Normally Alpine will use the CACerts that are located in the standard system
35661 location for CACerts.
35662 It may be the case that one of your correspondents has a Digital ID which has
35663 been signed by a certificate authority that is not in the regular set of system certificate
35664 authorities.
35665 You may supplement the system list by adding further certificates of your own.
35666 These should  be stored in the directory
35667 which is the value of this option.
35668 The certificates will be stored in PEM format, one certificate per file.
35669 The names of the files can be anything ending in &quot;.crt&quot;.
35671 Use the Setup/SMIME screen to modify this variable.
35673 These PEM format CA certificates look very similar to your public
35674 certificates for particular email addresses
35675 (<A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>).
35677 <UL>   
35678 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35679 </UL><P>
35681 <UL>   
35682 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35683 </UL><P>
35684 &lt;End of help on this topic&gt;
35685 </BODY>
35686 </HTML>
35687 ====== h_config_smime_cacertcon =====
35688 <HTML>
35689 <HEAD>
35690 <TITLE>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></TITLE>
35691 </HEAD>
35692 <BODY>
35693 <H1>S/MIME OPTION: <!--#echo var="VAR_smime-cacert-container"--></H1>
35696 If this option is set it will be used instead of
35697 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
35699 This option gives you a way to store certificates remotely on an IMAP server
35700 instead of storing the certificates one per file locally.
35701 In order to do that you just give this option a remote folder name for a folder
35702 which does not yet exist.
35703 The name is similar to the name you might use for a remote configuration file.
35704 A remote folder name might look something like:
35706 <CENTER><SAMP>{myimaphost.myschool.k12.wa.us}mail/cacerts</SAMP></CENTER>
35709 <A HREF="h_valid_folder_names">Valid Folder Names</A> for more information
35710 about the syntax of folder names.
35712 Use the Setup/SMIME screen to modify this variable.
35714 <UL>   
35715 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35716 </UL><P>
35718 <UL>   
35719 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35720 </UL><P>
35721 &lt;End of help on this topic&gt;
35722 </BODY>
35723 </HTML>
35724 ========== h_config_smime_sign_by_default ==========
35725 <HTML>
35726 <HEAD>
35727 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></TITLE>
35728 </HEAD>
35729 <BODY>
35730 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-sign-by-default"--></H1>
35733 This feature only has an effect if your version of Alpine includes
35734 support for S/MIME.
35735 It affects Alpine's behavior when you send a message.
35736 If this option is set, the &quot;Sign&quot; option will default to ON when sending messages.
35738 Only the default value is affected.
35739 In any case, you may still toggle the Signing option on or off before sending
35740 with the &quot;G Sign&quot; command (provided you have a personal digital ID
35741 certificate).
35743 <UL>   
35744 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35745 </UL><P>
35748 <UL>   
35749 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35750 </UL><P>
35751 &lt;End of help on this topic&gt;
35752 </BODY>
35753 </HTML>
35754 ========== h_config_smime_use_cert_store ==========
35755 <HTML>
35756 <HEAD>
35757 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></TITLE>
35758 </HEAD>
35759 <BODY>
35760 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-use-store-only"--></H1>
35763 This feature only has an effect if your version of Alpine includes
35764 support for S/MIME.
35765 It affects Alpine's behavior when you validate a message, and should
35766 not be disabled, unless you are performing a test.
35768 There are two important aspects of validation: validation of the message
35769 (that is, the message was not modified after it was sent) 
35770 as well as validation of the identity of the sender. This option has to 
35771 do with the latter. 
35773 In order to validate that the message came from the sender in the message
35774 and not an impersonator, Alpine can 
35775 either use the certificates that come in the message, or the ones that 
35776 you have personally stored. If this feature is enabled (the default) then 
35777 Alpine will use certificates that you have already saved in your store 
35778 and not those that come in the message to validate the sender of the 
35779 message. In particular, the first time that you receive a signed message
35780 from a sender, and their certificate does not validate against your
35781 store, then you will be asked if you wish to save such certificate. If
35782 you do not wish to save the certificate, then Alpine will fail to validate
35783 the signature of the message. Otherwise, Alpine will proceed to validate
35784 the signature of the message. This behavior helps you prevent against impersonation, because 
35785 it is assumed that you trust the certificates that you have saved, and 
35786 might not trust those that came with the message that you are validating.
35788 <UL>   
35789 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35790 </UL><P>
35793 <UL>   
35794 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35795 </UL><P>
35796 &lt;End of help on this topic&gt;
35797 </BODY>
35798 </HTML>
35799 ========== h_config_smime_pubcerts_in_keychain ==========
35800 <HTML>
35801 <HEAD>
35802 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></TITLE>
35803 </HEAD>
35804 <BODY>
35805 <H1>S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></H1>
35808 If this feature is set the Mac OS X default keychain will be used as the place
35809 to store public certificates instead of a
35810 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35811 or a
35812 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35814 <UL>   
35815 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35816 </UL><P>
35818 <UL>   
35819 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35820 </UL><P>
35821 &lt;End of help on this topic&gt;
35822 </BODY>
35823 </HTML>
35824 ========== h_config_smime_dont_do_smime ==========
35825 <HTML>
35826 <HEAD>
35827 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></TITLE>
35828 </HEAD>
35829 <BODY>
35830 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-dont-do-smime"--></H1>
35833 Setting this feature turns off all of Alpine's S/MIME support.
35834 You might want to set this if you are having trouble due to the S/MIME support.
35836 <UL>   
35837 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35838 </UL><P>
35841 <UL>   
35842 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35843 </UL><P>
35844 &lt;End of help on this topic&gt;
35845 </BODY>
35846 </HTML>
35847 ========== h_config_smime_encrypt_by_default ==========
35848 <HTML>
35849 <HEAD>
35850 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></TITLE>
35851 </HEAD>
35852 <BODY>
35853 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-encrypt-by-default"--></H1>
35856 This feature only has an effect if your version of Alpine includes
35857 support for S/MIME.
35858 It affects Alpine's behavior when you send a message.
35859 If this option is set, the &quot;Encrypt&quot; option will default to ON when sending messages.
35861 Only the default value is affected.
35862 In any case, you may still toggle the Encrypt option on or off before sending
35863 with the &quot;E Encrypt&quot; command (provided you have a the public digital ID
35864 for the recipient).
35866 <UL>   
35867 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35868 </UL><P>
35871 <UL>   
35872 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35873 </UL><P>
35874 &lt;End of help on this topic&gt;
35875 </BODY>
35876 </HTML>
35877 ========== h_config_smime_remember_passphrase ==========
35878 <HTML>
35879 <HEAD>
35880 <TITLE>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></TITLE>
35881 </HEAD>
35882 <BODY>
35883 <H1>S/MIME FEATURE: <!--#echo var="FEAT_smime-remember-passphrase"--></H1>
35886 This feature only has an effect if your version of Alpine includes
35887 support for S/MIME.
35888 If this option is set, you will only have to enter your passphrase for your private key
35889 once during an Alpine session.
35891 <UL>   
35892 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35893 </UL><P>
35896 <UL>   
35897 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35898 </UL><P>
35899 &lt;End of help on this topic&gt;
35900 </BODY>
35901 </HTML>
35902 ====== h_config_smime_transfer_pub_to_con =====
35903 <HTML>
35904 <HEAD>
35905 <TITLE>S/MIME: Transfer Public Certs to Container</TITLE>
35906 </HEAD>
35907 <BODY>
35908 <H1>S/MIME: Transfer Public Certs to Container</H1>
35911 The Transfer command will copy the public certificates in your configured
35912 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>
35913 to the container in your configured
35914 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>.
35915 This might be useful if you decide to switch from using a cert directory to a cert
35916 container.
35918 Warning: Any previous contents in the container will be lost.
35920 <UL>   
35921 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35922 </UL><P>
35924 <UL>   
35925 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35926 </UL><P>
35927 &lt;End of help on this topic&gt;
35928 </BODY>
35929 </HTML>
35930 ====== h_config_smime_transfer_pub_to_dir =====
35931 <HTML>
35932 <HEAD>
35933 <TITLE>S/MIME: Transfer Public Certs to Directory</TITLE>
35934 </HEAD>
35935 <BODY>
35936 <H1>S/MIME: Transfer Public Certs to Directory</H1>
35939 The Transfer command will copy the public certificates in your configured
35940 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
35941 to the directory in your configured
35942 <A HREF="h_config_smime_pubcertdir"><!--#echo var="VAR_smime-public-cert-directory"--></A>.
35943 This might be useful if you decide to switch from using a cert container to a cert
35944 directory.
35946 <UL>   
35947 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
35948 </UL><P>
35950 <UL>   
35951 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
35952 </UL><P>
35953 &lt;End of help on this topic&gt;
35954 </BODY>
35955 </HTML>
35956 ====== h_config_smime_transfer_priv_to_con =====
35957 <HTML>
35958 <HEAD>
35959 <TITLE>S/MIME: Transfer Private Keys to Container</TITLE>
35960 </HEAD>
35961 <BODY>
35962 <H1>S/MIME: Transfer Private Keys to Container</H1>
35965 The Transfer command will copy the private keys in your configured
35966 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35967 to the container in your configured
35968 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35969 This might be useful if you decide to switch from using a key directory to a key
35970 container.
35972 Warning: Any previous contents in the container will be lost.
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_transfer_priv_to_dir =====
35985 <HTML>
35986 <HEAD>
35987 <TITLE>S/MIME: Transfer Private Keys to Directory</TITLE>
35988 </HEAD>
35989 <BODY>
35990 <H1>S/MIME: Transfer Private Keys to Directory</H1>
35993 The Transfer command will copy the private keys in your configured
35994 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-container"--></A>.
35995 to the directory in your configured
35996 <A HREF="h_config_smime_privkeydir"><!--#echo var="VAR_smime-private-key-directory"--></A>.
35997 This might be useful if you decide to switch from using a key container to a key
35998 directory.
36000 <UL>   
36001 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36002 </UL><P>
36004 <UL>   
36005 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36006 </UL><P>
36007 &lt;End of help on this topic&gt;
36008 </BODY>
36009 </HTML>
36010 ====== h_config_smime_transfer_cacert_to_con =====
36011 <HTML>
36012 <HEAD>
36013 <TITLE>S/MIME: Transfer CA Certs to Container</TITLE>
36014 </HEAD>
36015 <BODY>
36016 <H1>S/MIME: Transfer CA Certs to Container</H1>
36019 The Transfer command will copy the CA certificates in your configured
36020 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>
36021 to the container in your configured
36022 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
36023 This might be useful if you decide to switch from using a CA cert directory to a CA cert
36024 container.
36026 Warning: Any previous contents in the container will be lost.
36028 <UL>   
36029 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36030 </UL><P>
36032 <UL>   
36033 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36034 </UL><P>
36035 &lt;End of help on this topic&gt;
36036 </BODY>
36037 </HTML>
36038 ====== h_config_smime_transfer_cacert_to_dir =====
36039 <HTML>
36040 <HEAD>
36041 <TITLE>S/MIME: Transfer CA Certs to Directory</TITLE>
36042 </HEAD>
36043 <BODY>
36044 <H1>S/MIME: Transfer CA Certs to Directory</H1>
36047 The Transfer command will copy the CA certificates in your configured
36048 <A HREF="h_config_smime_cacertcon"><!--#echo var="VAR_smime-cacert-container"--></A>.
36049 to the directory in your configured
36050 <A HREF="h_config_smime_cacertdir"><!--#echo var="VAR_smime-cacert-directory"--></A>.
36051 This might be useful if you decide to switch from using a CA cert container to a CA cert
36052 directory.
36054 <UL>   
36055 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36056 </UL><P>
36058 <UL>   
36059 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36060 </UL><P>
36061 &lt;End of help on this topic&gt;
36062 </BODY>
36063 </HTML>
36064 ====== h_config_smime_transfer_pubcon_to_key =====
36065 <HTML>
36066 <HEAD>
36067 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
36068 </HEAD>
36069 <BODY>
36070 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
36072 Mac OS X Alpine only.
36074 The Transfer command will copy the public certificates in your configured
36075 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
36076 to your default Mac OS X Keychain.
36077 This might be useful if you decide to switch from using a cert container to using
36078 the Keychain to store your public certs, which you may do by using the
36079 feature
36080 <A HREF="h_config_smime_pubcerts_in_keychain">S/MIME FEATURE: <!--#echo var="FEAT_publiccerts-in-keychain"--></A>.
36082 <UL>   
36083 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36084 </UL><P>
36086 <UL>   
36087 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36088 </UL><P>
36089 &lt;End of help on this topic&gt;
36090 </BODY>
36091 </HTML>
36092 ====== h_config_smime_transfer_pubkey_to_con =====
36093 <HTML>
36094 <HEAD>
36095 <TITLE>S/MIME: Transfer Public Certs to Keychain</TITLE>
36096 </HEAD>
36097 <BODY>
36098 <H1>S/MIME: Transfer Public Certs to Keychain</H1>
36101 The Transfer command will copy the public certificates in your configured
36102 <A HREF="h_config_smime_pubcertcon"><!--#echo var="VAR_smime-public-cert-container"--></A>
36103 to your default Mac OS X Keychain.
36104 This might be useful if you decide to switch from using a cert container to using
36105 the Keychain to store your public certs.
36107 <UL>   
36108 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36109 </UL><P>
36111 <UL>   
36112 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36113 </UL><P>
36114 &lt;End of help on this topic&gt;
36115 </BODY>
36116 </HTML>
36117 ====== h_config_smime_public_certificates =====
36118 <HTML>
36119 <HEAD>
36120 <TITLE>S/MIME: Manage Public Certificates</TITLE>
36121 </HEAD>
36122 <BODY>
36123 <H1>S/MIME: Manage Public Certificates</H1>
36126 This menu item allows you to manage your public certificates, this
36127 may include your own public certificate, but it normally includes
36128 certificates of people you correspond with. These certificates are
36129 saved by Alpine automatically when they are found in signed messages
36130 that you receive. This interface allows you to manage them, by
36131 giving you the option to delete them, or trust them (in the case
36132 of self-signed certificates).
36135 Please note that Alpine will not validate a message that was sent to you
36136 using a self-signed certificate, unless you decide to trust that certificate.
36137 Internally, a certificate is trusted by copying it to the
36138 <A HREF="h_config_smime_certificate_authorities">Certificate Authorities</A> 
36139 collection. If you decide that you want to stop trusting a self-signed
36140 certificate, you must delete such certificate from such collection.
36142 The <B>I</B> Import command available in this screen allows you to 
36143 import a command to this collection.
36145 <UL>   
36146 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36147 </UL><P>
36149 <UL>   
36150 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36151 </UL><P>
36152 &lt;End of help on this topic&gt;
36153 </BODY>
36154 </HTML>
36155 ====== h_config_smime_private_keys =====
36156 <HTML>
36157 <HEAD>
36158 <TITLE>S/MIME: Manage Private Keys</TITLE>
36159 </HEAD>
36160 <BODY>
36161 <H1>S/MIME: Manage Private Keys</H1>
36164 This option allows you to manage your private key. Normally a person has only
36165 one key, in the same way that a person only has one valid passport, or ID card,
36166 at any given time. This option allows you to manage private keys. You can
36167 delete them or import them. Additionally, you can view information
36168 about your public certificate, such as the issuer and the dates of validity
36169 of such certificate, among others.
36172 If you have more than one e-mail address for which you want to use the 
36173 same private key, you must add all those addresses to the private key at 
36174 the moment that the key is generated. When you receive a signed message using 
36175 a key generated for several e-mail addresses, Alpine will save a 
36176 certificate for each e-mail address included in such certificate.
36178 The <B>I</B> Import command available in this screen allows you to 
36179 import a command to this collection.
36181 <UL>   
36182 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36183 </UL><P>
36185 <UL>   
36186 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36187 </UL><P>
36188 &lt;End of help on this topic&gt;
36189 </BODY>
36190 </HTML>
36191 ====== h_config_smime_certificate_authorities =====
36192 <HTML>
36193 <HEAD>
36194 <TITLE>S/MIME: Manage Certificate Authorities</TITLE>
36195 </HEAD>
36196 <BODY>
36197 <H1>S/MIME: Manage Certificate Authorities</H1>
36200 This collection contains certificates that are needed to validate the 
36201 certificate of another person, and therefore contains certificates that 
36202 you trust. Typically a certificate is signed by another entity, called a 
36203 certificate authority. This option allows you to manage which certificates 
36204 you trust, allowing you to import them and to delete them or view information
36205 about each certificate, such as the issuer and the dates of validity
36206 of such certificate.
36208 The <B>I</B> Import command available in this screen allows you to 
36209 import a command to this collection.
36211 <UL>   
36212 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36213 </UL><P>
36215 <UL>   
36216 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36217 </UL><P>
36218 &lt;End of help on this topic&gt;
36219 </BODY>
36220 </HTML>
36221 ====== h_config_smime_password_file_certificates =====
36222 <HTML>
36223 <HEAD>
36224 <TITLE>S/MIME: Manage Password File Certificates</TITLE>
36225 </HEAD>
36226 <BODY>
36227 <H1>S/MIME: Manage Password File Certificates</H1>
36230 This option allows you to manage the certificates that are used to
36231 encrypt and decrypt your password file. This is useful in case you
36232 want to change the certificates used to encrypt your password file.
36234 Depending on the version of Alpine that you used for the first time
36235 to set this up, you might have had to enter a password to enter this
36236 screen. In the case that you did not enter a password to enter this
36237 screen, you should know two things that are important:
36238 <UL>
36239 <LI> If anyone takes control of your computer (for example, if you 
36240 left it unattended) then that person can add a password to your
36241 password file and make it unreadable to you in the future.
36242 <LI> If anyone can access your computer (this includes remote access)
36243 then that person can steal your password file and decrypt it without
36244 your help. This gives access to that person to the same services you
36245 have access and such person can use your name to access that service.
36246 In particular, that person can try to hack into your service provider
36247 with your name on it, or that person could try to send spam with
36248 your name.
36249 </UL>
36250 <P> Needless to say, this is not advisable. You should keep your
36251 password file protected. In order to do so, all you need to do is use
36252 the &quot;Create Key&quot; command to create a key. Once you do this,
36253 Alpine will use that key, encrypted with the password used to create that
36254 key, to protect your password file.
36256 In this screen you can import a new key to encrypt your password file, 
36257 and read cryptographic information on your current key.
36259 To import a new key press &quot;RETURN&quot; and enter the location of
36260 the new key. You will be asked to enter the password of the new key. If
36261 this part of the process is successful, Alpine will search for the 
36262 certificate that matches that key. If your key is named 
36263 &quot;your_email@address.com.key&quot;, then Alpine will look for your
36264 certificate in the same directory in the file named
36265 &quot;your_email@address.com.crt&quot;, otherwise it will look for it
36266 as part of your key (that is, it will look to see if your certificate
36267 is in the file &quot;your_email@address.com.key&quot;), if all of this
36268 fails, Alpine will ask you to enter the location of the certificate
36269 that matches the key you unlocked. If a certificate is found, it will be 
36270 used, and in this case, the password file will be read, decrypted with the 
36271 old key and encrypted with the new key. Once this is done, the new key and 
36272 certificates are saved, and the old keys are permanently deleted.
36274 Alpine does not create a backup of your password file, or your old keys
36275 that will be replaced. If you need to keep old copies, you will have to do
36276 this operation outside Alpine.
36278 Observe that you can use this screen to remove the password for the key.
36279 As explained earlier, this is not advisable, but you can always restore the
36280 password to encrypt your password file by creating a new key.
36282 Be safe and keep your password file encrypted with a password.
36283 <UL>   
36284 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36285 </UL><P>
36287 <UL>   
36288 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36289 </UL><P>
36290 &lt;End of help on this topic&gt;
36291 </BODY>
36292 </HTML>
36293 ====== h_certificate_information =====
36294 <HTML>
36295 <HEAD>
36296 <TITLE>S/MIME: Certificate Information Screen</TITLE>
36297 </HEAD>
36298 <BODY>
36299 <H1>S/MIME: Certificate Information Screen</H1>
36302 The CERTIFICATE INFORMATION screen shows you information contained in a certificate
36303 such as its owner, e-mail address, issuer, and interval of validity, 
36304 among others.
36306 In the case of public certificates, this screen shows you if there was a
36307 failure when attempting to validate such message. If the certificate is
36308 self-signed, then the <B>T</B> Trust command will be available, which
36309 you can use to trust such certificate and make Alpine not fail validating 
36310 signatures signed with such certificate.
36312 You can also mark a certificate deleted, with the <B>D</B> command, or 
36313 remove the deleted mark with the <B>U</B> undelete command.
36315 In the case of your private key, Alpine shows you the information
36316 from your public key. Additionally, Alpine allows you to see public
36317 and private information about your key, with the <B>B</B> and
36318 <B>R</B> commands respectively.
36319 <UL>   
36320 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36321 </UL><P>
36323 <UL>   
36324 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36325 </UL><P>
36326 &lt;End of help on this topic&gt;
36327 </BODY>
36328 </HTML>
36329 ====== h_config_smime_manage_public_menu =====
36330 <HTML>
36331 <HEAD>
36332 <TITLE>S/MIME: Menu of Commands to Manage Public Certificates</TITLE>
36333 </HEAD>
36334 <BODY>
36335 <H1>S/MIME: Commands that Manage Public Certificates</H1>
36338 This screen allows you to manage your public certificates. 
36340 The format of this screen is as follows. There are five fields: The 
36341 leftmost field is normally empty, but it could contain the letter 
36342 &quot;D&quot; to indicate that that certificate has been marked for 
36343 deletion. The next field is the e-mail address of the owner of the 
36344 certificate, shown in its entirety. The third and fourth field are the 
36345 first and last day validity for that certificate, respectively. The date
36346 is displayed in the user's locale unless the option 
36347 <A HREF="h_config_disable_index_locale_dates"><!--#echo var="FEAT_disable-index-locale-dates"--></A>
36348 is set. In this case, the month, day and year are represented by two
36349 digits, and the format used is mm/dd/yy. Finally, the fifth 
36350 field is what can be displayed of the MD5 hash of the certificate. You can 
36351 use any of the last three fields to distinguish between two certificates 
36352 for the same owner.
36354 Available commands in this screen and a short description of what they 
36355 do follows.
36356 <UL>
36357 <LI> <B>I</B> Imports a public certificate to this collection.
36358 <LI> <B>V</B> View information about a certificate such as the name of the person the
36359 certificate was issued to, its dates of validity, and validity status.
36360 <LI> <B>D</B> Marks a certificate deleted.
36361 <LI> <B>U</B> Removes the deletion mark on a certificate.
36362 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
36363 <LI> <B>T</B> This command is only available for self-signed certificates, and allows you to
36364 trust a certificate by copying it to the collection of trusted certificates.
36365 </UL>
36367 All commands provide feedback to let you know about their success or failure.
36369 <UL>   
36370 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36371 </UL><P>
36373 <UL>   
36374 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36375 </UL><P>
36376 &lt;End of help on this topic&gt;
36377 </BODY>
36378 </HTML>
36379 ====== h_config_smime_manage_private_menu =====
36380 <HTML>
36381 <HEAD>
36382 <TITLE>S/MIME: Menu of Commands to Manage Private Keys</TITLE>
36383 </HEAD>
36384 <BODY>
36385 <H1>S/MIME: Commands that Manage Private Keys</H1>
36388 This screen allows you to manage your private key.
36390 The format of this screen is as follows. There are five fields: The 
36391 leftmost field is normally empty, but it could contain the letter 
36392 &quot;D&quot; to indicate that that certificate has been marked for 
36393 deletion. The next field is the e-mail address of the owner of the 
36394 certificate, shown in its entirety. The third field is the first day of 
36395 validity for that certificate; the fourth field in the last day that that 
36396 certificate is valid, and the fifth field is what can be displayed of the 
36397 MD5 hash of the public certificate corresponding to this private key. You 
36398 can use any of the last three fields to distinguish between two 
36399 certificates for the same owner.
36401 Available commands and a short description of what they do follows.
36402 <UL>
36403 <LI> <B>I</B> Imports a new public key to this collection.
36404 <LI> <B>V</B> View information about the public certificate corresponding to this
36405 key.
36406 <LI> <B>D</B> Marks a key to be deleted.
36407 <LI> <B>U</B> Removes the deletion mark on a key.
36408 <LI> <B>X</B> Removes all keys marked deleted permanently (cannot be undone).
36409 Note that expunging a private key does not remove the public key, which must
36410 be removed separately.
36411 </UL>
36413 All commands provide feedback to let you know about their success or failure.
36415 <UL>   
36416 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36417 </UL><P>
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_smime_manage_cacerts_menu =====
36426 <HTML>
36427 <HEAD>
36428 <TITLE>S/MIME: Menu of Commands to Manage Certificate Authorities</TITLE>
36429 </HEAD>
36430 <BODY>
36431 <H1>S/MIME: Commands that Manage Certificate Authorities</H1>
36434 This screen allows you to manage your collection of certificates that you
36435 trust. 
36437 The format of this screen is as follows. There are five fields: The 
36438 leftmost field is normally empty, but it could contain the letter 
36439 &quot;D&quot; to indicate that that certificate has been marked for 
36440 deletion. The next field is the e-mail address of the owner of the 
36441 certificate, shown in its entirety. The third field is the first day of 
36442 validity for that certificate; the fourth field in the last day that that 
36443 certificate is valid, and the fifth field is what can be displayed of the 
36444 MD5 hash of the certificate. You can use any of the last three fields to 
36445 distinguish between two certificates for the same owner.
36447 Available commands and a short description of what they do follows.
36448 <UL>
36449 <LI> <B>I</B> Imports a trusted certificate to this collection. This is
36450 done by reading the certificate and validating it. Once a certificate
36451 is found to be valid, it is saved, adding the extension &quot;.crt&quot;
36452 to the certificate, if necessary.
36453 <LI> <B>V</B> View information about this certificate, such as its issuer 
36454 and validity dates.
36455 <LI> <B>D</B> Marks a certificate to be deleted.
36456 <LI> <B>U</B> Removes the deletion mark on a certificate.
36457 <LI> <B>X</B> Removes all certificates marked deleted permanently (cannot be undone).
36458 </UL>
36460 All commands provide feedback to let you know about their success or failure.
36462 <UL>
36463 <LI><A HREF="h_mainhelp_smime">General S/MIME help</A>
36464 </UL><P>
36466 <UL>   
36467 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36468 </UL><P>
36469 &lt;End of help on this topic&gt;
36470 </BODY>
36471 </HTML>
36472 ====== h_config_lame_list_mode =====
36473 <HTML>
36474 <HEAD>
36475 <TITLE>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></TITLE>
36476 </HEAD>
36477 <BODY>
36478 <H1>FEATURE: <!--#echo var="FEAT_enable-lame-list-mode"--></H1>
36480 This feature modifies the method Alpine uses to ask your IMAP
36481 server for folder names to display in the FOLDER LIST screen.
36482 It is intended to compensate for a small set of IMAP servers that
36483 are programmed to ignore a part of the request, and thus respond
36484 to Alpine's query with nonsensical results.
36487 If you find that Alpine is erroneously displaying blank folder lists,
36488 try enabling this feature.
36491 NOTE: Enabling this feature has consequences for the Goto and Save
36492 commands.  Many servers allow access to folders outside the area
36493 reserved for your personal folders via some reserved character,
36494 typically '#' (sharp), '~' (tilde) or '/' (slash).  This mechanism
36495 allows, at the Goto and Save prompts, quick access to folders
36496 outside your personal folder collection without requiring a specific
36497 collection definition.  This behavior will generally not be available
36498 when this feature is enabled.
36501 <UL>   
36502 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36503 </UL><P>
36504 &lt;End of help on this topic&gt;
36505 </BODY>
36506 </HTML>
36507 ====== h_config_enable_mulnewsrcs =====
36508 <HTML>
36509 <HEAD>
36510 <TITLE>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></TITLE>
36511 </HEAD>
36512 <BODY>
36513 <H1>FEATURE: <!--#echo var="FEAT_enable-multiple-newsrcs"--></H1>
36515 This feature makes it so Alpine can use multiple newsrcs based on
36516 the news server being connected to, which allows for separate lists
36517 of subscribed-to newsgroups. When this feature is not set, there is only
36518 one list of newsgroups.
36520 Under this feature, the name of a newsrc is based on the news server.
36521 For example, if your <a href="h_config_newsrc_path"><!--#echo var="VAR_newsrc-path"--></a>
36522 is set to &quot;.newsrc&quot;, and the news server you are connecting to is
36523 news.example.com, then the newsrc to be used is .newsrc-news.example.com.
36524 Setting this feature for the first time will allow for the option of using
36525 your old newsrc the next time you read news.
36527 If this feature is set, then the feature
36528 <A HREF="h_config_mulnews_as_typed"><!--#echo var="FEAT_mult-newsrc-hostnames-as-typed"--></A>
36529 also may affect the name of the newsrc file that is used.
36531 <UL>   
36532 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36533 </UL><P>
36534 &lt;End of help on this topic&gt;
36535 </BODY>
36536 </HTML>
36537 ======= h_ab_export_vcard =======
36538 <HTML>
36539 <HEAD>
36540 <TITLE>Address Book Export Format</TITLE>
36541 </HEAD>
36542 <BODY>
36543 <H1>Address Book Export Format</H1>
36545 You are exporting address book data from Alpine to a file outside of Alpine.
36546 You are being asked to choose the format of the export.
36547 Here are the choices:
36549 <DL>
36550 <DT><EM>A</EM>ddress List</DT>
36551 <DD>
36552 The addresses from the address book entries you are saving
36553 from will be saved one address per line.
36554 Address book lists (those with more than one address) will have
36555 all of their addresses saved separately.
36556 </DD>
36558 <DT><EM>V</EM>Card</DT>
36559 <DD>
36560 The entries will be saved in
36561 <A HREF="h_whatis_vcard">vCard</A> format.
36562 </DD>
36564 <DT><EM>T</EM>ab Separated</DT>
36565 <DD>
36566 The entries will be saved in tab-separated columns.
36567 There will be just 4 columns of data that correspond to Alpine's
36568 Nickname field, Full Name field, Address field, and Comment field.
36569 It might prove useful to Select only the Simple, non-List address book
36570 entries before Saving.
36571 </DD>
36573 <DT><EM>^C</EM> Cancel</DT>
36574 <DD>
36575 Cancel out of the Save.
36576 </DD>
36578 </DL>
36582 &lt;End of help on this topic&gt;
36583 </BODY>
36584 </HTML>
36585 ====== h_config_predict_nntp_server =====
36586 <HTML>
36587 <HEAD>
36588 <TITLE>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></TITLE>
36589 </HEAD>
36590 <BODY>
36591 <H1>FEATURE: <!--#echo var="FEAT_predict-nntp-server"--></H1>
36593 This feature allows Alpine to assume that the open NNTP server at the
36594 time of composition is the NNTP server to which the message should be
36595 posted.  This is especially recommended when there are multiple News
36596 collections.  If this feature is not set, Alpine will try to post to the first server in
36597 the <a href="h_config_nntp_server"><!--#echo var="VAR_nntp-server"--></a> variable.  Setting
36598 this feature also negates the need to add News collection servers to
36599 the <!--#echo var="VAR_nntp-server"--> variable.
36601 This feature can be especially handy when used in conjunction with
36602 <a href="h_config_enable_mulnewsrcs"><!--#echo var="FEAT_enable-multiple-newsrcs"--></a>.
36604 <UL>   
36605 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36606 </UL><P>
36607 &lt;End of help on this topic&gt;
36608 </BODY>
36609 </HTML>
36610 ====== h_config_nntp_search_uses_overview =====
36611 <HTML>
36612 <HEAD>
36613 <TITLE>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></TITLE>
36614 </HEAD>
36615 <BODY>
36616 <H1>FEATURE: <!--#echo var="FEAT_nntp-search-uses-overview"--></H1>
36618 This feature should probably be turned on unless it causes trouble.
36619 The results of the NNTP overview command (XOVER) may be used to help
36620 with some searches in news groups.
36621 It should result in quicker response time.
36622 Turning this feature on apparently causes search results which are
36623 different from what you would get with the feature turned off on some
36624 servers.
36626 <UL>   
36627 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36628 </UL><P>
36629 &lt;End of help on this topic&gt;
36630 </BODY>
36631 </HTML>
36632 ====== h_config_thread_sorts_by_arrival =====
36633 <HTML>
36634 <HEAD>
36635 <TITLE>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></TITLE>
36636 </HEAD>
36637 <BODY>
36638 <H1>FEATURE: <!--#echo var="FEAT_thread-sorts-by-arrival"--></H1>
36640 This feature affects how a threading sort arranges threads.  The default way
36641 to arrange threads is by the date of the earliest message in the thread.
36642 This feature arranges threads by the last message to arrive in a thread.
36644 This feature causes old threads that get recent messages to sort to the bottom,
36645 where previously a message arrival to a thread would not rearrange the order of
36646 that thread.
36648 <UL>   
36649 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36650 </UL><P>
36651 &lt;End of help on this topic&gt;
36652 </BODY>
36653 </HTML>
36654 ====== h_config_textplain_int =====
36655 <HTML>
36656 <HEAD>
36657 <TITLE>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></TITLE>
36658 </HEAD>
36659 <BODY>
36660 <H1>FEATURE: <!--#echo var="FEAT_show-plain-text-internally"--></H1>
36662 This feature modifies the method Alpine uses to display Text/Plain
36663 MIME attachments from the Attachment Index screen.  Normally, the
36664 &quot;View&quot; command searches for any externally defined (usually
36665 via the
36666 &quot;<A HREF="h_config_mailcap_path">Mailcap</A>&quot; file) viewer,
36667 and displays the selected text within that viewer.
36670 Enabling this feature causes Alpine to ignore any external viewer
36671 settings and always display text with Alpine's internal viewer.
36674 <UL>   
36675 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36676 </UL><P>
36677 &lt;End of help on this topic&gt;
36678 </BODY>
36679 </HTML>
36680 ====== h_config_wp_columns =====
36681 <HTML>
36682 <HEAD>
36683 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></TITLE>
36684 </HEAD>
36685 <BODY>
36686 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-columns"--></H1>
36688 Web Alpine only.
36690 This configuration setting specifies the number of horizontal characters
36691 used to format various WebAlpine pages.  Smaller values will tend to reduce
36692 the amount of horizontal scrolling required to view pages within narrow
36693 browsers, such as those found on PDAs, and larger values will tend to 
36694 spread more information across the page.
36697 The Message List page uses the width to determine how many characters
36698 to assign each field.  Note, a smaller value may result in a disproportionate
36699 amount of blank space between fields on each line.  Similarly, a large
36700 value may result in cramped fields or horizontal scrolling.
36703 The Message View page uses this value to determine when to wrap lines
36704 in displayed message text.  Note, a smaller value may result in jagged
36705 right margins or confusing quoting.  A larger value may cause lines of text to
36706 run beyond the browser's right edge, requiring horizontal scrolling.
36709 <UL>   
36710 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36711 </UL><P>
36712 &lt;End of help on this topic&gt;
36713 </BODY>
36714 </HTML>
36715 ====== h_config_wp_state =====
36716 <HTML>
36717 <HEAD>
36718 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></TITLE>
36719 </HEAD>
36720 <BODY>
36721 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-state"--></H1>
36723 Web Alpine only.
36725 Various aspects of cross-session state.
36728 <UL>   
36729 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36730 </UL><P>
36731 &lt;End of help on this topic&gt;
36732 </BODY>
36733 </HTML>
36734 ====== h_config_wp_aggstate =====
36735 <HTML>
36736 <HEAD>
36737 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></TITLE>
36738 </HEAD>
36739 <BODY>
36740 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-aggstate"--></H1>
36742 Web Alpine only.
36744 Aggregate operations tab state.
36747 <UL>   
36748 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36749 </UL><P>
36750 &lt;End of help on this topic&gt;
36751 </BODY>
36752 </HTML>
36753 ====== h_config_wp_indexlines =====
36754 <HTML>
36755 <HEAD>
36756 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></TITLE>
36757 </HEAD>
36758 <BODY>
36759 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexlines"--></H1>
36761 Web Alpine only.
36763 Number of index lines in table.
36766 <UL>   
36767 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36768 </UL><P>
36769 &lt;End of help on this topic&gt;
36770 </BODY>
36771 </HTML>
36772 ====== h_config_wp_indexheight =====
36773 <HTML>
36774 <HEAD>
36775 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></TITLE>
36776 </HEAD>
36777 <BODY>
36778 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_wp-indexheight"--></H1>
36780 Web Alpine only.
36782 Index table row height.
36785 <UL>   
36786 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36787 </UL><P>
36788 &lt;End of help on this topic&gt;
36789 </BODY>
36790 </HTML>
36791 ====== h_config_rss_news =====
36792 <HTML>
36793 <HEAD>
36794 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss_news"--></TITLE>
36795 </HEAD>
36796 <BODY>
36797 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-news"--></H1>
36799 Web Alpine only.
36801 RSS News feed.
36804 <UL>   
36805 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36806 </UL><P>
36807 &lt;End of help on this topic&gt;
36808 </BODY>
36809 </HTML>
36810 ====== h_config_rss_weather =====
36811 <HTML>
36812 <HEAD>
36813 <TITLE>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></TITLE>
36814 </HEAD>
36815 <BODY>
36816 <H1>WEB ALPINE OPTION: <!--#echo var="VAR_rss-weather"--></H1>
36818 Web Alpine only.
36820 RSS Weather feed.
36823 <UL>   
36824 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36825 </UL><P>
36826 &lt;End of help on this topic&gt;
36827 </BODY>
36828 </HTML>
36829 ====== h_config_send_confirms_only_expanded =====
36830 <HTML>
36831 <HEAD>
36832 <TITLE>FEATURE: send-confirms-only-expanded</TITLE>
36833 </HEAD>
36834 <BODY>
36835 <H1>FEATURE: send-confirms-only-expanded (Web Alpine Only)</H1>
36837 This Web Alpine option specifies whether or not a Send confirmations
36838 happens when a composed message is readied for sending or not.  The
36839 default behavior is to not confirm that the nicknames were expanded to
36840 the intended addresses.
36843 <UL>   
36844 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36845 </UL><P>
36846 &lt;End of help on this topic&gt;
36847 </BODY>
36848 </HTML>
36849 ====== h_config_enable_jump_command =====
36850 <HTML>
36851 <HEAD>
36852 <TITLE>FEATURE: enable-jump-command</TITLE>
36853 </HEAD>
36854 <BODY>
36855 <H1>FEATURE: enable-jump-command (Web Alpine Only)</H1>
36857 This Web Alpine option specifies whether or not a Jump command is
36858 offered in the Message List and Message View pages.  The command is
36859 implemented as an input field in the left column of the List and View
36860 screens. 
36863 When enabled and a number is entered in the input field while the
36864 Message List is displayed, the Message List is reframed with the
36865 specified message.  While viewing a message, the message associated
36866 with the specified message number is displayed.
36869 <UL>   
36870 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36871 </UL><P>
36872 &lt;End of help on this topic&gt;
36873 </BODY>
36874 </HTML>
36875 ====== h_config_enable_newmail_sound =====
36876 <HTML>
36877 <HEAD>
36878 <TITLE>FEATURE: enable-newmail-sound</TITLE>
36879 </HEAD>
36880 <BODY>
36881 <H1>FEATURE: enable-newmail-sound (Web Alpine Only)</H1>
36883 This Web Alpine option specifies whether or not a sound file is sent
36884 to the web browser along with the newmail notification message.
36888 <UL>   
36889 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36890 </UL><P>
36891 &lt;End of help on this topic&gt;
36892 </BODY>
36893 </HTML>
36894 ====== h_config_render_html_internally =====
36895 <HTML>
36896 <HEAD>
36897 <TITLE>FEATURE: render-html-internally</TITLE>
36898 </HEAD>
36899 <BODY>
36900 <H1>FEATURE: render-html-internally (Web Alpine Only)</H1>
36902 By default, Web Alpine will pass cleansed HTML text you receive in messages 
36903 to the browser for display (rendering).  This feature causes Web Alpine to convert 
36904 the HTML text into plain text in the same way Unix and PC-Alpine do.
36908 <UL>   
36909 <LI><A HREF="h_finding_help">Finding more information and requesting help</A>
36910 </UL><P>
36911 &lt;End of help on this topic&gt;
36912 </BODY>
36913 </HTML>
36914 ====== h_config_role_undo =====
36915 Yes, remember changes and exit back to list of roles; No, discard changes
36916 made in this screen; ^C, cancel exit and stay in this config screen.
36917 ====== h_exit_editor =====
36918 S, save changes and exit from the editor; D, do not save changes but
36919 do exit from the editor; or ^C, cancel exit and stay in the editor.
36920 ====== h_config_undo =====
36921 Yes, save changes and exit; No, exit without saving any changes made since
36922 entering this CONFIGURATION screen; ^C, cancel exit and stay in config screen.
36923 ====== h_os_index_whereis =====
36924 Enter ^V or ^Y to go immediately to the last or first message in the index.
36925 Or, enter the match string followed by RETURN.
36926 ====== h_os_index_whereis_agg =====
36927 Enter ^V or ^Y to go immediately to the last or first message in the index,
36928 Or, enter the match string followed by RETURN (or ^X to select all matches).
36929 =========== h_oe_add_full ==================
36930 Type the full name of the person being added and press the RETURN key.
36931 Press ^C to cancel addition.
36932 =========== h_oe_add_nick ==================
36933 Type a short nickname and press RETURN.  A nickname is a short easy-to-
36934 remember word, name or initials like "joe", or "wcfields."  ^C to cancel.
36935 ========== h_oe_add_addr ================
36936 Type the e-mail address and press RETURN.
36937 Press ^C to cancel addition.
36938 ========== h_oe_crlst_full ==============
36939 Type a long name or description for the list that you are creating and
36940 press RETURN.  Press ^C to cancel creation of list.
36941 =========== h_oe_crlst_nick =============
36942 Type a nickname (short, easy-to-remember name or single word) for the list
36943 you are creating and press RETURN.  Press ^C to cancel.
36944 ========== h_oe_crlst_addr ==============
36945 Type an e-mail address, or a nickname already in the address book that you
36946 want to be part of this list and press RETURN.
36947 ========== h_oe_adlst_addr =============
36948 Type an e-mail address or a nickname already in the address book that you
36949 want to add to this list and press RETURN.
36950 ========== h_oe_editab_nick ============
36951 Change the nickname using the arrow keys and delete key.  Press RETURN
36952 when done.  Press ^C to cancel editing and leave the nickname as it was.
36953 ========== h_oe_editab_full ============
36954 Change the full name using the arrow keys and delete key.  Press RETURN
36955 when done.  Press ^C to cancel editing and leave the full name as it was.
36956 ========== h_oe_editab_addr ============
36957 Change the address using the arrow keys and delete key.  Press RETURN
36958 when done.  Press ^C to cancel editing and leave the address as it was.
36959 ========== h_oe_editab_fcc ============
36960 Change the fcc using the arrow keys and delete key.  Press RETURN when
36961 done.  Press ^C to cancel editing and leave the fcc as it was.
36962 ========== h_oe_editab_comment ============
36963 Change the comment field using the arrow keys and delete key.  Press RETURN
36964 when done.  Press ^C to cancel editing and leave the comment as it was.
36965 ====== h_ab_forward =====
36966 Yes, expand nicknames and qualify local names with your current domain name;
36967 No, leave nicknames and local names as is;  ^C, cancel.
36968 ========== h_ab_export ==========
36969 Type the name of a file to write the addresses into and
36970 press RETURN.  You may also specify an absolute path.  Use ^C to cancel.
36971 ========== h_ab_edit_a_field ==========
36972 Edit any of the fields of the currently selected entry by typing one of the
36973 letters at the bottom of the screen.  Press ^C to cancel edit.
36974 ====== h_ab_del_data_revert =====
36975 Press B to completely delete addrbook and revert to default, C to delete config
36976 and revert while leaving data, or D to only delete data (make it empty).
36977 ====== h_ab_del_data_modify =====
36978 Press B to completely delete addrbook, C to delete configuration while leaving
36979 data, or D to delete data (make it empty) but leave config. ^C to cancel.
36980 ====== h_ab_del_config_modify =====
36981 Yes, remove this address book from my configuration.
36982 No, make no changes now.
36983 ====== h_ab_del_config_revert =====
36984 Yes, remove this address book from my config and revert to default.
36985 No, make no changes now.
36986 ====== h_ab_del_default =====
36987 Yes, remove this default address book from my configuration.
36988 No, make no changes now.
36989 ====== h_ab_really_delete =====
36990 Yes, delete the actual contents of the address book, not just the 
36991 configuration.  No, don't delete the data after all, cancel and start over.
36992 ====== h_ab_del_ignore =====
36993 Press I to ignore all the default address books for this category.  Press R to
36994 remove this one address book and add the others to your personal list.
36995 ====== h_ab_del_dir_ignore =====
36996 Press I to ignore all the default directory servers for this category.
36997 Press R to remove this one server and add the others to your personal list.
36998 ====== h_ab_copy_dups =====
36999 Yes, overwrite the existing entry.
37000 No, skip duplicates but save the rest. Press ^C to cancel.
37001 ====== h_confirm_cancel =====
37002 Type C to Confirm that you want to abandon the message you are composing.
37003 Type N or ^C to cancel out of the cancel and keep composing.
37004 ====== h_ab_text_or_vcard =====
37005 Text, start composer with displayed text already included.
37006 VCard, start composer with address book entry attached as a vCard. ^C cancels.
37007 ====== h_ab_backup_or_ldap =====
37008 Backup, copy email address from entry and allow editing of it.
37009 LDAP, copy LDAP search criteria, do not allow editing of it. ^C cancels.
37010 ====== h_ldap_text_or_vcard =====
37011 Text: export displayed text for selected entry. Address: export only the
37012 email address. VCard: export entry in vCard format. ^C cancels.
37013 ====== h_ab_save_exp =====
37014 Save, save entry or entries to an address book.
37015 Export, save to file outside of pine. ^C cancels save.
37016 ====== h_ab_add =====
37017 A, add a brand new entry to this address book.
37018 E, edit the entry that is currently highlighted. ^C to cancel.
37019 ====== h_ab_shuf =====
37020 U, swap order of highlighted address book and the one above it.
37021 D, swap order of highlighted address book and the one below it. ^C to cancel.
37022 ====== h_ab_shuf_up =====
37023 U, swap order of highlighted address book and the one above it.
37024 Press ^C to cancel.
37025 ====== h_ab_shuf_down =====
37026 D, swap order of highlighted address book and the one below it.
37027 Press ^C to cancel.
37028 ====== h_folder_prop =====
37029 Count is # of messages in the folder, Unseen means messages that have not
37030 been read, New means messages that were Recently added to the folder.
37031 ====== h_role_shuf =====
37032 U, swap order of highlighted rule and the one above it.
37033 D, swap order of highlighted rule and the one below it. ^C to cancel.
37034 ====== h_role_shuf_up =====
37035 U, swap order of highlighted rule and the one above it.
37036 Press ^C to cancel.
37037 ====== h_role_shuf_down =====
37038 D, swap order of highlighted rule and the one below it.
37039 Press ^C to cancel.
37040 ====== h_incoming_shuf =====
37041 B, swap order of highlighted directory and the one before it.
37042 F, swap order of highlighted directory and the one after it. ^C to cancel.
37043 ====== h_incoming_shuf_up =====
37044 B, swap order of highlighted directory and the one before it.
37045 Press ^C to cancel.
37046 ====== h_incoming_shuf_down =====
37047 F, swap order of highlighted directory and the one after it.
37048 Press ^C to cancel.
37049 ====== h_dir_shuf =====
37050 U, swap order of highlighted directory and the one above it.
37051 D, swap order of highlighted directory and the one below it. ^C to cancel.
37052 ====== h_dir_shuf_up =====
37053 U, swap order of highlighted directory and the one above it.
37054 Press ^C to cancel.
37055 ====== h_dir_shuf_down =====
37056 D, swap order of highlighted directory and the one below it.
37057 Press ^C to cancel.
37058 ====== h_hdrcolor_shuf =====
37059 U, swap order of highlighted Header Color and the one above it.
37060 D, swap order of highlighted Header Color and the one below it. ^C to cancel.
37061 ====== h_hdrcolor_shuf_up =====
37062 U, swap order of highlighted Header Color and the one above it.
37063 Press ^C to cancel.
37064 ====== h_hdrcolor_shuf_down =====
37065 D, swap order of highlighted Header Color and the one below it.
37066 Press ^C to cancel.
37067 ========== h_oe_editab_al ============
37068 Change the address using the arrow keys and delete key.  Press RETURN
37069 when done.  Press ^C to cancel editing and leave the address as it was.
37070 ========== h_dir_comp_search ===============
37071 Type a string to look for just like you would in the composer. Your configured
37072 rules for the servers with the implicit flag set will be used.
37073 ========== h_oe_searchab ===============
37074 Type the word or name you want to search for and press RETURN.  If you press
37075 RETURN without entering anything the word in [] will be searched for.
37076 ========== h_oe_chooseabook ==========
37077 Choose the address book you want to save the new entry in.
37078 Use ^N or ^P to change address books.  ^C to cancel.
37079 ========== h_oe_takeaddr ==========
37080 Edit the e-mail address using the arrow and delete keys.  Press RETURN
37081 when done.  Press ^C to cancel adding this entry to the address book.
37082 ========== h_oe_take_replace ==========
37083 Press R to replace the old entry with this new data.  You will still have
37084 another chance to cancel.  N to enter another nickname.  ^C to cancel now.
37085 ========== h_oe_take_replace_or_add ==========
37086 Press R to replace the old entry.  Press A to add the selected addresses to
37087 the old existing list.  N to enter another nickname. ^C to cancel now.
37088 ========== h_oe_takename ==========
37089 Edit the full name to be correct using the arrow and delete keys.  Press RETURN
37090 when done.  Press ^C to cancel adding this entry to the address book.
37091 ========== h_oe_takenick ==========
37092 Type a nickname (short easy-to-remember name, initials or single word) for this
37093 entry in the address book and press RETURN.  Press ^C to cancel addition.
37094 ========== h_oe_jump ==========
37095 Type the message number you want to jump to and press RETURN.  The word "end"
37096 represents the last message. Press ^C to cancel jumping to another message.
37097 ========== h_oe_jump_thd ==========
37098 Type the thread number you want to jump to and press RETURN.  The word "end"
37099 represents the last thread. Press ^C to cancel jumping to another thread.
37100 ========== h_oe_debuglevel ==========
37101 Higher number shows more debugging details.
37102 Press ^C if you want to cancel the change.
37103 ========== h_oe_broach ==========
37104 Type the name of the folder you want to open and press RETURN.  Press ^P/^N
37105 to go to the previous/next collections in the list.  Press ^C to cancel goto.
37106 ========== h_oe_foldsearch ==========
37107 Type the text you want to search for in foldernames and press RETURN.  If you
37108 press RETURN without entering anything, any text in [] will be searched for.
37109 ========== h_oe_foldrename ==========
37110 Change the old name of the folder to the new name using the arrow and
37111 delete keys and press RETURN.  Press ^C to cancel rename.
37112 ========== h_oe_login ==========
37113 Enter your login name for the host you are opening the mailbox on.  Just press
37114 RETURN to use your login from this host as is, or edit it with delete key.
37115 ========== h_oe_passwd ==========
37116 Type your password for the host and login shown as part of the prompt.
37117 Press ^C to cancel opening folder.
37118 ========== h_oe_choosep ==========
37119 Enter the number associated with the printer you want to select.  Press ^C to
37120 cancel the printer selection.  The current selection is highlighted.
37121 ========== h_oe_customp ==========
37122 Type the name of the Unix print command and press RETURN.  Press ^C to
37123 cancel the printer selection.
37124 ========== h_oe_searchview ==========
37125 Type the word or name you want to search for and press RETURN.  If you press
37126 RETURN without entering anything the word in [] will be searched for.
37127 ========== h_oe_keylock ==========
37128 The keyboard is in use and locked by another user.  Only that user can
37129 unlock this keyboard by typing the password.
37130 ========== h_wt_expire ==========
37131 At the beginning of each month Alpine offers to rename your current sent-mail
37132 folder to one named for the month so you have a sent-mail folder for each month
37133 ========== h_wt_delete_old ==========
37134 It is the beginning of the month, and we need to conserve disk
37135 space.  Please delete any sent-mail that you do not need.
37136 ========== h_select_sort ==========
37137 Select the order for sorting the index by typing the capitalized letter.
37138 Arrival is by arrival in your mailbox; Date is by time/day message was sent.
37139 ========== h_no_F_arg ============
37140 Enter name of file to be opened.
37142 ========== h_sticky_personal_name ==========
37143 Type in your name as you want it to appear on outgoing email.  This entry
37144 will be saved into your Alpine configuration file.
37145 ========== h_sticky_inbox ============
37146 INBOX syntax is usually {complete.machine.name}INBOX
37147 This entry will be saved in your Alpine configuration file.
37148 ========== h_sticky_smtp ============
37149 The name of the computer on your campus that relays your outgoing email
37150 to the Internet.  This entry will be saved in your Alpine configuration file.
37151 ========== h_sticky_user_id ==========
37152 The username or login-id part of your email address.  This entry will be
37153 saved in your Alpine configuration file.
37154 ========== h_sticky_domain ==========
37155 The domain part of your email address, NOT the name of your PC.  This
37156 entry will be saved in your Alpine configuration file.
37157 ========== h_bounce =========
37158 Enter the address or nickname of the intended recipient.  Alpine will resend
37159 the message, which will retain the original author's From: address.
37160 ========== h_incoming_add_folder_nickname =========
37161 Enter an (optional) nickname that will be used in lieu of the actual
37162 host and folder names in the FOLDER LIST display.
37163 ========== h_anon_forward ==========
37164 Enter the address of your intended recipient, or ^C to cancel.
37165 Example: jsmith@somewhere.edu
37166 ========== h_news_subscribe ==========
37167 Enter the name of the newsgroup to which you wish to subscribe,
37168 or ^C to cancel.  Example: comp.mail.pine
37169 ========== h_pipe_msg ==========
37170 Enter the name of the Unix command to which you wish to send this
37171 message, or ^C to cancel.
37172 ========== h_pipe_attach ==========
37173 Enter the name of the Unix command to which you wish to send this
37174 attachment, or ^C to cancel.
37175 ========== h_select_by_num ==========
37176 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
37177 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
37178 ========== h_select_by_gm_content ==========
37179 Enter your search key in the same way that you would enter a search
37180 key in the web interface for Gmail.
37181 ========== h_select_by_thrdnum ==========
37182 Enter a list of message numbers (or number ranges), or ^C to cancel. "end" 
37183 is the last message. "." is the current message. Example: 1-.,7-9,11,19,35-end
37184 ========== h_select_txt_from ==========
37185 Messages with From: headers containing the entered string will be selected.
37186 ^C to cancel. ^G again to see original options.
37187 ========== h_select_txt_not_from ==========
37188 Messages without From: headers containing the entered string will be selected.
37189 ^C to cancel. ^G again to see original options.
37190 ========== h_select_txt_to ==========
37191 Messages with To: headers containing the entered string will be selected.
37192 ^C to cancel. ^G again to see original options.
37193 ========== h_select_txt_not_to ==========
37194 Messages without To: headers containing the entered string will be selected.
37195 ^C to cancel. ^G again to see original options.
37196 ========== h_select_txt_cc ==========
37197 Messages with Cc: headers containing the entered string will be selected.
37198 ^C to cancel. ^G again to see original options.
37199 ========== h_select_txt_not_cc ==========
37200 Messages without Cc: headers containing the entered string will be selected.
37201 ^C to cancel. ^G again to see original options.
37202 ========== h_select_txt_subj ==========
37203 Messages with Subject: headers containing the entered string will be selected.
37204 ^C to cancel.  ^X enters Subject: line of current message.
37205 ========== h_select_txt_not_subj ==========
37206 Messages without Subject headers containing the entered string will be selected.
37207 ^C to cancel.  ^X enters Subject: line of current message.
37208 ========== h_select_txt_all ==========
37209 All messages containing the entered string will be selected.  Headers and body,
37210 but not encoded attachments, will be compared.  Enter ^C to cancel.
37211 ========== h_select_txt_not_all ==========
37212 All messages that don't contain the entered string will be selected.  Headers
37213 and body, but not encoded attachments, will be compared.  Enter ^C to cancel.
37214 ========== h_select_txt_body ==========
37215 All messages containing the entered string will be selected. Body text, but
37216 not headers or encoded attachments, will be compared. ^C to cancel.
37217 ========== h_select_txt_not_body ==========
37218 All messages that don't contain the entered string will be selected. Body
37219 text, but not headers or encoded attachments, will be compared. ^C to cancel.
37220 ========== h_select_txt_recip ==========
37221 Messages with Cc: or To: headers containing the entered string will be selected.
37222 ^C to cancel. ^G again to see original options.
37223 ========== h_select_txt_not_recip ==========
37224 Messages without Cc: or To: headers containing the string will be selected.
37225 ^C to cancel. ^G again to see original options.
37226 ========== h_select_txt_partic ==========
37227 Messages with Cc, To, or From headers containing the string will be selected.
37228 ^C to cancel. ^G again to see original options.
37229 ========== h_select_txt_not_partic ==========
37230 Messages without Cc, To, or From headers containing the string will be selected.
37231 ^C to cancel. ^G again to see original options.
37232 ========== h_select_date ==========
37233 If typed, date may be in DD-MMM-YYYY format (04-Jul-2006) or in ISO format
37234 (2006-07-04). ^P/^N also changes default date. ^X enters date of current msg.
37235 ========== h_attach_index_whereis ==========
37236 Enter some text that appears in the Attachment Index entry for the desired
37237 attachment.  The first attachment containing that text will be highlighted.
37238 ========== h_kb_lock ==========
37239 Keystrokes entered here (up to a RETURN) comprise a password that must
37240 be entered again later in order to unlock the keyboard.
37241 ========== h_compose_default ==========
37242 N, compose a new message. R, set a role.
37243 ^C to cancel.
37244 ========== h_untranslatable ==========
37245 Send using UTF-8 character set; Send but replace untranslatable characters
37246 with question marks; return to the composer; or cancel message altogether.
37247 ========== h_compose_intrptd ==========
37248 N, compose a new msg. I, continue interrupted msg. R, set a role.
37249 ^C to cancel.
37250 ========== h_compose_postponed ==========
37251 N, compose a new message. P, continue postponed msg. R, set a role.
37252 ^C to cancel.
37253 ========== h_compose_intrptd_postponed ==========
37254 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
37255 R, set a role. ^C to cancel.
37256 ========== h_compose_form ==========
37257 N, compose a new message. F, use form letter. R, set a role.
37258 ^C to cancel.
37259 ========== h_compose_intrptd_form ==========
37260 N, compose a new msg. I, continue interrupted msg. F, use form letter.
37261 R, set a role. ^C to cancel.
37262 ========== h_compose_postponed_form ==========
37263 N, compose a new message. P, continue postponed msg. F, use form letter.
37264 R, set a role. ^C to cancel.
37265 ========== h_compose_intrptd_postponed_form ==========
37266 N, compose a new msg. I, continue interrupted msg. P, continue postponed msg.
37267 F, use form letter. R, set a role. ^C to cancel.
37268 ========== h_config_context_del_except ==========
37269 If you delete the last exceptional collection you can only add it back by
37270 manually editing the exceptions config file.
37271 ========== h_config_whereis ==========
37272 To move quickly to a particular line, enter a search string or
37273 ^C to cancel.
37274 ========== h_config_edit_scorei ==========
37275 Enter interval in the form (min,max). -INF and INF may be used to represent
37276 -infinity and infinity. ^C to cancel change. RETURN to accept change.
37277 ========== h_config_add ==========
37278 Enter desired value; use normal editing keys to modify (e.g. ^K, ^D).  Just
37279 pressing RETURN sets the Empty Value (this turns off any global default).
37280 ========== h_config_add_custom_color ==========
37281 Enter a header fieldname. For example, "subject" or "from".
37283 ========== h_config_add_pat_hdr ==========
37284 Enter a header fieldname. For example, "reply-to" or "organization" or
37285 any fieldname you want that isn't included already.
37286 ========== h_config_print_opt_choice ==========
37287 You may edit either the initialization string (characters printed before
37288 printing starts) or the trailer string.  Choose one or ^C to cancel.
37289 ========== h_config_print_init ==========
37290 Enter a C-style string for this.  You may use common backslash escapes like
37291 \\n for newline, \\ooo for octal character, and \\xhh for hex character.
37292 ========== h_config_change ==========
37293 Edit the existing value using arrow keys, ^K to delete entire entry, ^D to
37294 delete current (highlighted) character, etc.  Enter ^C to cancel change.
37295 ========== h_config_replace_add ==========
37296 Replace ignores the current default, Add places the current default in your
37297 editing buffer as if you had typed it in.
37298 ========== h_config_insert_after ==========
37299 Enter a nickname for this print command.  (InsertBefore puts the new item
37300 before the current line, InsertAfter puts it after the current line.)
37301 ========== h_config_print_cmd ==========
37302 Enter command to be executed for the printer.  Use normal editing keys
37303 to modify, ^C to cancel, carriage return to accept current value.
37304 ========== h_config_role_del ==========
37305 Answering Yes will remove this rule completely from your rules list.
37306 ========== h_config_role_addfile ==========
37307 Type the name of a file to add to your configuration. You don't need to
37308 use a file, you may add rules directly (with Add) without using a file.
37309 ========== h_config_role_delfile ==========
37310 Answering Yes will remove this rule file completely from your rules list.
37311 The rules data file itself will not be removed.
37312 ========== h_config_print_del ==========
37313 Answering Yes will remove this printer completely from your printer list.
37314 ========== h_config_print_name_cmd ==========
37315 You may edit the Nickname of this printer, the Command to be executed when
37316 printing, or change the Options associated with this printer.
37317 ========== h_send_check_fcc ==========
37318 Yes, send message without an Fcc.
37319 No, return to composer.
37320 ========== h_send_check_subj ==========
37321 Yes, send message without a Subject.
37322 No, return to composer.
37323 ========== h_send_check_to_cc ==========
37324 Yes, send message without a To address, or a Cc address, or a Newsgroup.
37325 No, return to composer.
37326 ========== h_send_fcc_only ==========
37327 Yes, copy message to Fcc only and send to NO recipients.
37328 No, return to composer.
37329 ========== h_send_prompt ==========
37330 Yes, send the message.
37331 No or ^C, return to composer.
37332 ========== h_send_prompt_flowed ==========
37333 Yes, send the message.  No or ^C, return to composer.
37334 What's Flowed? See Do Not Send Flowed Text in config screen.
37335 ========== h_send_prompt_dsn ==========
37336 Yes, send the message.  No or ^C, return to composer.
37337 What's DSNOpts? See Enable Delivery Status Notification in config screen.
37338 ========== h_send_prompt_dsn_flowed ==========
37339 Yes, send the message.  No or ^C, return to composer. What's DSNOpts? See
37340 Enable Delivery Status Notification. What's Flowed? See Do Not Send Flowed Text.
37341 ========== h_role_confirm ==========
37342 Yes, use displayed role. No, compose without a role.
37343 ^C, cancel the message. ^T, select a role from your other eligible roles.
37344 ========== h_norole_confirm ==========
37345 Return, compose without a role.
37346 ^C, cancel the message. ^T, select a role from your eligible roles.
37347 ========== h_custom_print ==========
37348 Enter a Unix command that accepts its data on standard input.
37349 Alpine will display any information the command sends to standard output.
37350 ========== h_convert_abooks_and_sigs ==========
37351 You will be given the opportunity to convert address books and signature files
37352 to remote configurations.
37353 ========== h_convert_abooks ==========
37354 You will be given the opportunity to convert address books to remote
37355 configurations.
37356 ========== h_flag_keyword ==========
37357 Enter the name of the keyword you want to add for this folder.
37358 No spaces, parentheses, braces, percents or asterisks are allowed.
37359 ========== h_select_keyword ==========
37360 Enter the keyword you want to match, or use ^T to select a keyword from a list
37361 of possible keywords for this folder. Use ! to look for non-matches instead.
37362 ========== h_type_keyword ==========
37363 Enter the keyword you want to add. You may add a nickname in the next step.
37364 No spaces, parentheses, braces, percents or asterisks are allowed.
37365 ========== h_type_keyword_nickname ==========
37366 Enter an optional nickname for the keyword you want to add.
37367 Type Carriage return to use the keyword name instead of a nickname.
37368 ========== h_convert_sigs ==========
37369 You will be given the opportunity to convert signature files to remote
37370 configurations.
37371 ========== h_convert_abook ==========
37372 Yes is fairly safe. You will be ADDing a remote address book that is a copy
37373 of the current address book. The current abook won't be removed automatically.
37374 ========== h_convert_sig ==========
37375 Answering Yes copies the contents of the signature file into your Alpine
37376 configuration file. After that, the contents of the file will not be used.
37377 ========== h_save_addman ==========
37378 Enter the simple name of the folder you want to add. Carriage return to
37379 accept what you have typed so far. ^C to get back to SELECT FOLDER screen.
37380 ========== h_reopen_folder ==========
37381 Yes reopens the folder, as if you were starting over. This uncovers new mail.
37382 No leaves the folder index as it was without discovering new mail.
37383 ========== h_convert_pinerc_server ==========
37384 This is the name of the host (computer) where the remote Alpine configuration
37385 will be stored. This should be an IMAP server that you have permission to use.
37386 ========== h_convert_pinerc_folder ==========
37387 Enter the correct remote folder name. This folder is special and should
37388 contain only configuration data. It shouldn't contain other mail messages.
37389 ========== h_role_compose ==========
37390 Compose a New message, Reply to current message, Forward current message, or
37391 Bounce message. Then you will be asked to choose one of your Roles to be used.
37392 ========== h_role_aggregate ==========
37393 Compose a reply, or forward, or bounce the selected messages. Then you 
37394 will be asked to choose one of your Roles to be used for this operation.
37395 ========== h_save_size_changed ==========
37396 The reported size of a message is not the same as the actual size. Answer Yes
37397 to continue and hope for the best or No to Cancel the entire Save.
37398 ========== h_select_by_larger_size ==========
37399 Enter a number or ^C to cancel. All messages greater than this many characters
37400 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37401 ========== h_select_by_smaller_size ==========
37402 Enter a number or ^C to cancel. All messages less than this many characters
37403 in size will be selected. Examples: 2176, 1.53K (1530), or 3M (3000000).
37404 ========== h_preserve_field ==========
37405 Use 'p' to toggle between preserving or not preserving the original To:
37406 and Cc: fields of the message. Enter ^C to cancel message.